/* Couleurs neon / dark theme */
body {
    background: radial-gradient(circle at top center, #14143c 0%, #0e0e2f 60%);
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}
.navbar {
    background-color: #0b0b1f;
}
.logo {
    height: 60px;
}
.game-card {
    background: #111133;
    border: 2px solid #00ffff;
    border-radius: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.game-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00ffff;
}
.game-logo {
    max-height: 100px;
}
.choose-game {
    margin-top: 100px;
    text-align: center;
}
.seo-text {
    color: #cccccc;
    margin-top: 40px;
    text-align: left;
    line-height: 1.6;
}

.footer {
    background-color: #0b0b1f;
}