* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* Sayfanın dışına taşmayı ve kaydırmayı kesin olarak engelliyoruz */
html, body {
	width: 100%;
	height: 100%;
	max-width: 100vw;
	max-height: 100vh;
	overflow: hidden !important; 
	position: fixed;
}

body {
	background: linear-gradient(rgba(20, 26, 35, 0.65), rgba(20, 26, 35, 0.65)),
				url("../img/minecraft.jpg") no-repeat center center;
	background-size: cover;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px;
}

a {
	text-decoration: none;
}

.container {
	width: 100%;
	max-width: 1000px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

/* --- MOBİL (Varsayılan) --- */
.logo {
	margin-bottom: 20px;
	width: 100%;
}

.logo img {
	width: 75%;
	max-width: 280px;
	height: auto;
	animation: logo 5s ease-in-out infinite;
}

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

.items {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 20px;
	width: 100%;
	margin-bottom: 20px;
}

.item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 130px;
}

.item div {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.img {
	width: 70px;
	height: auto;
	object-fit: contain;
	transition: transform 0.2s ease;
	margin-bottom: 6px;
}

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

.title {
	font-weight: 700;
	font-size: 13px;
	color: #ffffff;
	line-height: 1.3;
}

.playercount {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	background-color: rgba(170, 0, 250, 0.85);
	color: white;
	border-radius: 6px;
	font-size: 13px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.playercount p {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 6px;
}

.playercount > p > span.ip {
	font-weight: bold;
	padding: 3px 6px;
	border-radius: 4px;
	background: rgba(68, 0, 70, 0.8);
}

/* --- MASAÜSTÜ & TABLET (768px ve üzeri) --- */
@media (min-width: 768px) {
	.logo {
		margin-bottom: 28px;
	}

	.logo img {
		max-width: 470px; /* Orijinal logo boyutu */
	}

	.items {
		gap: 90px; /* İkonlar arası mesafeyi açtık */
		margin-bottom: 30px;
		padding: 20px 0;
	}

	.item {
		width: 220px; /* İkon alanını genişlettik */
	}

	.img {
		width: 150px; /* Mağaza logoları belirgin şekilde büyüdü */
		margin-bottom: 12px;
	}

	.title {
		font-size: 20px; /* Mağaza başlıkları büyütüldü */
	}

	.playercount {
		font-size: 17px;
		padding: 12px 26px;
	}

	.playercount > p > span.ip {
		padding: 4px 10px;
	}
}