.jeux-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

.jeux-logo {
    height: 50px;
    margin-bottom: 40px;
}

.jeux-logo h1 {
    font-size: 3em;
    color: #0ff;
    text-shadow: 0 0 5px #0ff, 0 0 10px #0ff;
    animation: glow 2s infinite;
}

/* Grille responsive */
.jeux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

/* Carte de jeu */
.jeu-card {
    background: #111;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 15px #0ff;
    transition: none;
}

/*
.jeu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 35px #0ff, 0 0 60px #0ff inset;
}
*/

.jeu-icone {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.jeu-titre {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0ff;
    text-shadow: 0 0 3px #0ff;
}

/* Bouton néon */
.btn-neon {
    padding: 10px 20px;
    font-weight: bold;
    color: #0ff;
    border: 2px solid #0ff;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    box-shadow: 0 0 10px #0ff;
    transition: 0.3s;
}

.btn-neon:hover {
    box-shadow: 0 0 30px #0ff, 0 0 50px #0ff inset;
    transform: scale(1.05);
}

@keyframes glow {
    0% { text-shadow: 0 0 5px #0ff; }
    50% { text-shadow: 0 0 20px #0ff; }
    100% { text-shadow: 0 0 5px #0ff; }
}
