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

body {
	font-family: 'Inter', sans-serif;
	background: #0f172a;
	color: #e5e7eb;
	line-height: 1.6;
}

.site-header {
	text-align: center;
	padding: 40px 20px;
}

.site-header h1 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 10px;
}

.site-header p {
	color: #94a3b8;
}

.container {
	max-width: 1000px;
	margin: auto;
	padding: 20px;
}

.games-grid {
	display: grid;
	grid-template-columns: repeat(3, 280px);
	justify-content: center;
	gap: 50px;
}

.game-card {
	background: #1e293b;
	padding: 20px;
	border-radius: 15px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.4);
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	overflow: hidden;
}

.game-card:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.game-card h2 {
	margin-bottom: 10px;
	font-size: 1.2rem;
}

.game-card p {
	font-size: 0.9rem;
	margin-bottom: 15px;
	color: #94a3b8;
}

.game-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 10px;
	transition: transform 0.3s ease;
}

.game-card:hover img {
	transform: scale(1.1);
}

.game-card {
    opacity: 0;
    transform: translateY(20px);
}

.game-card.show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.play-button {
	display: inline-block;
	padding: 8px 14px;
	background: #6366f1;
	color: white;
	border-radius: 8px;
	text-decoration: none;
	font-size: 0.9rem;
}

.play-button:hover {
	background: #4f46e5;
}

.site-footer {
	text-align: center;
	padding: 30px 20px;
	font-size: 0.85rem;
	color: #64748b;
}