body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 100vh;
    color: #fff;
}

.container {
    max-width: 500px;
    margin: 40px auto;
    padding: 24px;
    background: rgba(0,0,0,0.6);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    text-align: center;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px #0008;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: #cfd8dc;
}

.games {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.game-card {
    background: linear-gradient(120deg, #ffb347 0%, #ffcc33 100%);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    padding: 24px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
}

.game-card:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.game-card h2 {
    margin: 0;
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
    letter-spacing: 1px;
}

@media (min-width: 600px) {
    .games {
        flex-direction: row;
        justify-content: center;
    }
    .game-card {
        width: 150px;
    }
}
