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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.main-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInDown 0.6s;
}

.main-header h1 {
    color: white;
    font-size: 3.5em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3em;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Game Card */
.game-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.6s;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.game-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.game-card h2 {
    color: #667eea;
    font-size: 2em;
    margin-bottom: 15px;
    text-align: center;
}

.game-card p {
    color: #555;
    font-size: 1.1em;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}

.game-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-top: auto;
}

.stat {
    color: #48bb78;
    font-weight: 600;
    font-size: 0.95em;
}

/* Coming Soon Card */
.coming-soon {
    opacity: 0.7;
    cursor: default;
    border: 2px dashed #ddd;
}

.coming-soon:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.coming-soon h2 {
    color: #999;
}

.coming-soon p {
    color: #999;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 60px;
    padding: 20px;
    color: white;
    font-size: 1.1em;
    animation: fadeInUp 0.8s;
}

.footer p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-header h1 {
        font-size: 2.5em;
    }

    .tagline {
        font-size: 1.1em;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .game-card {
        padding: 30px;
    }

    .game-card h2 {
        font-size: 1.8em;
    }

    .footer {
        font-size: 1em;
        margin-top: 40px;
    }
}
