/* ——— SECTION TITRES ——— */

.galerie-header {
    text-align: center;
    margin-bottom: 30px;
}

.galerie-header h2 {
    font-size: 2rem;
    color: #c7d0ff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.section-subtitle {
    font-size: 1rem;
    opacity: 0.7;
    margin-top: 5px;
    color: #e4e4e4;
}

/* ——— GRILLE DES JEUX ——— */

.jeux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

/* ——— CARTE DE JEU ——— */

.jeu-card {
    background: rgba(12, 14, 20, 0.85);
    border: 1px solid #2a2d36;
    border-radius: 6px;
    overflow: hidden;
    transition: 0.25s ease;
    position: relative;
}

.jeu-card:hover {
    border-color: #ff3b3b;
    box-shadow: 0 0 20px rgba(255, 59, 59, 0.25);
}

/* ——— IMAGE ——— */

.jeu-img-container {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.jeu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ——— BADGE ——— */

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff3b3b;
    color: #05060a;
    padding: 5px 10px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 3px;
    font-weight: bold;
}

/* ——— DESCRIPTION ——— */

.jeu-description {
    padding: 20px;
}

.jeu-description h3 {
    font-size: 1.2rem;
    color: #c7d0ff;
    margin-bottom: 8px;
}

.jeu-description p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.85;
    margin-bottom: 15px;
}

/* ——— STATS ——— */

.jeu-stats-mini {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.jeu-stats-mini span {
    cursor: pointer;
    color: #ff3b3b;
    font-size: 1rem;
    transition: 0.2s ease;
}

.jeu-stats-mini span:hover {
    transform: scale(1.15);
    color: #ff6b6b;
}

.jeu-stats-mini small {
    margin-left: 5px;
    font-size: 0.85rem;
    color: #e4e4e4;
}

/* ——— BOUTON ——— */

.jeu-bouton {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background: #ff3b3b;
    color: #05060a;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.25s ease;
}

.jeu-bouton:hover {
    background: #ff6b6b;
    box-shadow: 0 0 15px rgba(255, 59, 59, 0.4);
}

.jeu-bouton.disabled {
    background: #3a3d48;
    color: #888;
    cursor: not-allowed;
    box-shadow: none;
}

/* ——— RESPONSIVE ——— */

@media (max-width: 768px) {
    .jeu-img-container {
        height: 150px;
    }
}
/* ——— Sous-titre de section (Jeux narratifs) ——— */

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #c7d0ff;
    opacity: 0.8;
    margin-top: 10px;
    margin-bottom: 30px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
