/* General Styles */
* {
	box-sizing: border-box;
	z-index: 1;
}

body {
	background: linear-gradient(rgba(16, 20, 26,0.65),rgba(16, 20, 26, 0.65)),
			url("../img/banner.png") no-repeat center center fixed;
	background-size: cover;
	font-family: "Open Sans", Helvetica;
	margin: 0;
	position: relative;
}

html, body {
	width: 100vw;
	min-height: 100vh;
	overflow-x: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

a {
	text-decoration: none;
}

p {
	margin: 0;
	padding: 3px;
}

/* Container and Logo */
.container {
	text-align: center;
}

.logo img {
	width: 225px;
	animation: logo 5s ease-in-out infinite;
}

@keyframes logo {
	0% { transform: scale(1); }
	50% { transform: scale(1.07); }
	100% { transform: scale(1); }
}

/* Updated Player Count Button */
.playercount {
	display: inline-block;
	margin: 20px 15px 15px 15px;
	padding: 10px 20px;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	font-size: 1.2em;
	color: white;
	text-align: center;
	border-radius: 10px;
	line-height: 27px;
	backdrop-filter: blur(5px);
	transition: all 0.3s ease-in-out;
}

.playercount:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1.05);
}

#ip {
	cursor: pointer;
	font-weight: bold;
	color: #0fc7d1;
	text-shadow: 0 0 10px rgba(15, 199, 209, 0.8);
}

/* Items and Hover Effects */
.items {
	display: flex;
	justify-content: space-around;
	flex-basis: 100px;
	padding: 18px 0 10px 0;
}

.item img {
	transition: all 0.2s ease;
	margin-bottom: 7px;
}

.item img:hover {
	transform: scale(1.1);
}

.img {
	width: 80%;
}

.title {
	font-weight: bold;
	font-size: 17px;
	color: white;
}

.subtitle {
	color: #cfcfcf;
	font-size: 12px;
}

.title, .subtitle {
	margin: 0;
	padding: 0;
}

/* Responsive Design */
@media(min-width: 400px) {
	.logo img { width: 280px; }
	.playercount { margin-top: 30px; padding: 5px; }
	.playercount > p > span { padding: 2px 7px; }
}

@media(min-width: 1250px) {
	.title { font-size: 24px; }
	.subtitle { font-size: 15px; }
	.logo img { width: 470px; }
	.logo { margin-bottom: 23px; }
	.img { width: 100%; }
	.items { padding: 30px 0 20px 0; }
	.playercount { font-size: 1.22em; padding: 10px; }
	.extrapad { padding: 0 42.5px; }
	.playercount > p > span { padding: 4px 7px; }
}

@media(min-width: 1000px) {
	.items { justify-content: center; }
	.item:not(:first-child) { margin-left: 90px; }
}
