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

body {
    background-color: #0f0f0f;
    color: #e8e8e8;
    font-family: 'DM Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

header {
    text-align: center;
}

h1 {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: #e8e8e8;
    letter-spacing: 4px;
    line-height: 1.4;
}

h1 span {
    color: #7c3aed;
}

.subtitle {
    margin-top: 1rem;
    color: #666;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.games {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding: 0 2rem;
}

.game-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 1.2rem 2rem;
    text-decoration: none;
    color: #e8e8e8;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.game-card:hover {
    border-color: #7c3aed;
    background: #1f1a2e;
    transform: translateY(-3px);
}

.game-card .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7c3aed;
}

.coming-soon {
    color: #333;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

footer {
    color: #333;
    font-size: 0.75rem;
    letter-spacing: 1px;
}
