@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');

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

body {
    font-family: 'Space Mono', monospace;
    background: #1a1a2e;
    color: #fff;
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

.logo {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 0.9rem;
    color: #ffd23f;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.game-card {
    background: #16213e;
    border: 2px solid #0f3460;
    border-radius: 0.75rem;
    padding: 2rem;
    transition: transform 0.2s ease;
}

.game-card:hover {
    transform: translateY(-4px);
}

.game-card.featured {
    border-color: #ff6b35;
}

.game-card.about {
    border-color: #ffd23f;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.game-card.featured h2 {
    color: #ff6b35;
}

.plays {
    color: #ffd23f;
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
}

.description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.play-btn, .audio-btn {
    background: #3d84f7;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.play-btn:hover, .audio-btn:hover {
    background: #5a9aff;
    transform: scale(1.05);
}

.play-btn:active, .audio-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
    }

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