/* === VARIABLES & THEME GLOBAL === */
:root {
    --deep-ocean: #0a192f; --mid-ocean: #172a45; --gold-accent: #d4af37; 
    --marble-white: #f4f1e8; --text-dark: #e0e0e0;
    --color-bde: #1e3799; --color-bds: #c0392b; --color-bda: #27ae60;
    --zone-a: #78e08f; --zone-b: #e67e22; --zone-c: #95a5a6; --zone-d: #3498db;
    --font-roman: 'Cinzel', serif; --font-body: 'Roboto', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    background: url('background.png') no-repeat center center fixed; 
    background-size: cover;
    color: var(--marble-white); font-family: var(--font-body); padding-bottom: 80px; 
}

h1, h2, h3, h4, .btn-roman, nav li { font-family: var(--font-roman); text-transform: uppercase; }
h2 { color: var(--gold-accent); text-align: center; margin-bottom: 20px; text-shadow: 2px 2px 5px rgba(0,0,0,0.8); }
h3 { margin-top: 20px; color: var(--gold-accent); } 

/* HEADER */
header {
    background: rgba(10, 25, 47, 0.95); border-bottom: 3px solid var(--gold-accent);
    padding: 10px 20px; display: flex; justify-content: space-between; align-items: center;
    position: sticky; top: 0; z-index: 1000; box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
header h1 { color: var(--gold-accent); font-size: 1.8rem; }
nav ul { display: flex; list-style: none; gap: 15px; }
nav li { cursor: pointer; padding: 5px; transition: 0.3s; border-bottom: 2px solid transparent; font-size: 0.9em; }
nav li:hover, nav li.active-nav { color: var(--gold-accent); border-bottom-color: var(--gold-accent); }
.header-socials { display: flex; gap: 10px; }
.header-icon { height: 30px; border-radius: 5px; transition: transform 0.2s; }
.header-icon:hover { transform: scale(1.1); }
.highlight-link { color: var(--color-bds) !important; font-weight: bold; }

/* BLOCS GENERIQUES */
main { padding: 20px; max-width: 1200px; margin: 0 auto; }
.hidden { display: none !important; }
.active-section { animation: fadeIn 0.5s; }
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }
.marble-block {
    background: rgba(23, 42, 69, 0.85); color: var(--text-dark);
    padding: 20px; margin-bottom: 20px; border-radius: 8px; border: 2px solid var(--gold-accent);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5); backdrop-filter: blur(5px);
}
.btn-roman { background: var(--mid-ocean); color: var(--gold-accent); border: 2px solid var(--gold-accent); padding: 10px 20px; cursor: pointer; margin: 5px; transition: 0.3s; }
.btn-roman:hover { background: var(--gold-accent); color: var(--deep-ocean); }
.btn-sos { background: var(--color-bds); color: white; border-color: white; }

/* ACCUEIL - LOGO AGRANDI */
.main-logo-img { 
    display: block; 
    width: 350px; /* Agrandit le logo */
    margin: 0 auto 15px; 
}
.glow-effect { filter: drop-shadow(0 0 10px var(--gold-accent)); } 
.bureaux-grid { display: flex; justify-content: space-around; gap: 10px; margin-top: 15px; }
.bureau-card { background: rgba(23, 42, 69, 0.9); border: 2px solid var(--gold-accent); padding: 15px; width: 30%; text-align: center; cursor: pointer; border-radius: 8px; }
.bureau-card:hover { transform: translateY(-5px); background: var(--gold-accent); color: var(--deep-ocean); }
.home-actions { text-align: center; margin: 20px 0; }

/* =========================================================================
   DETAIL BUREAU & EQUIPE
   ========================================================================= */
.detail-content.large-view { padding: 30px; text-align: center; }
.bureau-photo-container-large { width: 100%; height: auto; min-height: 300px; border: 4px solid var(--gold-accent); margin: 20px 0; overflow: hidden; }
.full-bureau-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.bureau-team-grid {
    display: flex;
    justify-content: center; /* Centre les éléments */
    flex-wrap: wrap; /* Permet le retour à la ligne */
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.team-member {
    text-align: center;
    width: 30%; /* 3 membres par ligne */
    min-width: 250px; /* Taille min pour mobile */
    margin-bottom: 20px;
}

.member-img {
    width: 100%; /* Prend toute la largeur de son conteneur */
    height: 300px; /* Hauteur fixe rectangle */
    object-fit: cover;
    border-radius: 5px; /* Coins légèrement arrondis */
    border: 3px solid var(--gold-accent);
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}

.member-img:hover {
    transform: scale(1.02);
}

.member-role {
    font-family: var(--font-roman);
    color: var(--gold-accent);
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 5px;
    text-transform: uppercase;
}

/* WEL */


/* === STYLES SPÉCIFIQUES WEL === */

.wel-menu-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.menu-card {
    flex: 1;
    min-width: 300px;
    text-align: center; /* Centré pour le titre */
}

.menu-card h3 {
    border-bottom: none; /* On enlève la ligne sous le titre seul */
    margin-bottom: 5px;
}

/* Style de l'horaire */
.delivery-time {
    color: var(--color-bda); /* Vert (ou une autre couleur vive) */
    font-weight: bold;
    font-family: var(--font-roman);
    font-size: 1.1em;
    margin-bottom: 10px;
    border: 1px solid var(--color-bda);
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(0,0,0,0.3);
}

.menu-subtitle {
    font-size: 0.9em;
    color: var(--gold-accent);
    font-style: italic;
    font-family: var(--font-roman);
    margin-bottom: 15px;
    text-decoration: underline;
}

/* Listes */
.menu-list { list-style: none; padding: 0; text-align: left; }
.menu-list li {
    margin-bottom: 12px;
    line-height: 1.4;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 5px;
}
.dish { font-weight: bold; color: white; display: block; }
.myth-name { color: #bbb; font-style: italic; font-size: 0.85em; }
.dish_price {    color: var(--color-bda); /* Vert (ou une autre couleur vive) */
    font-weight: bold;
    font-family: var(--font-roman);
    font-size: 1.1em;}


/* Grille Packs */
.wel-packs-grid { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 30px; }
.pack-card { flex: 1; min-width: 250px; background: rgba(23, 42, 69, 0.95); border-color: #aaa; }
.pack-card h4 { text-align: center; color: var(--gold-accent); margin-bottom: 15px; text-transform: uppercase; font-family: var(--font-roman); }
.menu-list.small li { margin-bottom: 8px; font-size: 0.9em; }

/* Responsive */
@media (max-width: 768px) {
    .wel-menu-grid, .wel-packs-grid { flex-direction: column; }
    .menu-card, .pack-card { width: 100%; }
}


/* CARTE ADHERENT */
.card-flip-container { perspective: 1000px; width: 600px; height: 390px; margin: 30px auto; cursor: pointer; }
.card-flipper { transition: 0.8s; transform-style: preserve-3d; position: relative; width: 100%; height: 100%; }
.card-flip-container:hover .card-flipper { transform: rotateY(180deg); }
.card-front, .card-back { backface-visibility: hidden; position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 15px; box-shadow: 0 10px 20px rgba(0,0,0,0.5); border: 2px solid var(--gold-accent); }
.card-front img, .card-back img { width: 100%; height: 100%; object-fit: cover; border-radius: 13px; }
.card-back { transform: rotateY(180deg); }
.sponsors-list ul { list-style: none; padding-left: 0; }
.sponsors-list li { margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid rgba(212, 175, 55, 0.3); display: flex; flex-direction: column; }
.sponsor-name { font-weight: bold; color: var(--gold-accent); font-size: 1.1em; }
.sponsor-perk { font-style: italic; font-size: 0.9em; color: #ccc; }

/* WEL & DEFIS */
.high-res-map { width: 100%; max-width: 800px; border: 3px solid var(--gold-accent); border-radius: 8px; display: block; margin: 0 auto 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.wel-days-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px; margin-bottom: 15px; }
.wel-days-nav button { background: var(--mid-ocean); color: white; border: 1px solid var(--gold-accent); padding: 8px; cursor: pointer; flex-grow: 1; }
.wel-days-nav button:hover { background: var(--gold-accent); color: var(--mid-ocean); }
.wel-display { text-align: center; }
.challenges-list li { background: rgba(23, 42, 69, 0.9); border: 1px solid var(--gold-accent); margin-bottom: 15px; padding: 15px 15px 15px 45px; border-radius: 8px; position: relative; cursor: pointer; }
.points-bubble { position: absolute; top: -10px; left: -10px; width: 40px; height: 40px; border-radius: 50%; color: white; font-weight: bold; display: flex; align-items: center; justify-content: center; border: 2px solid white; box-shadow: 2px 2px 5px rgba(0,0,0,0.3); }
.desc-text { margin-top: 10px; padding-top: 10px; border-top: 1px dashed #ccc; font-style: italic; color: #aaa; }
.zone-blue { color: #87CEEB; } 
.zone-dark { color: #888; } 
.zone-orange { color: #FFA500; } 
.zone-green { color: #90EE90; }



/* === LOTS / RÉCOMPENSES === */
.prizes-container {
    text-align: center; /* Centre l'image et le titre */
}

.prizes-img {
    width: 100%;             /* Prend toute la largeur disponible du bloc */
    max-width: 800px;        /* Empêche l'image d'être trop géante sur PC */
    height: auto;            /* Garde les proportions */
    border-radius: 8px;      /* Arrondit les coins */
    border: 2px solid var(--gold-accent); /* Bordure dorée du thème */
    box-shadow: 0 5px 15px rgba(0,0,0,0.5); /* Ombre portée pour le relief */
    margin-top: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/* MAP LEAFLET */
#map-container { height: 400px; width: 100%; border: 3px solid var(--gold-accent); border-radius: 8px; }

/* STYLE SPÉCIFIQUE SOS */
.sos-main-container { background: url('sos_flyer.jpg') no-repeat center center; background-size: cover; border: 4px solid var(--gold-accent); border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.8); overflow: hidden; min-height: 800px; position: relative; max-width: 1200px; margin: 0 auto; }
.sos-overlay { background: rgba(10, 25, 47, 0.85); width: 100%; height: 100%; padding: 30px; backdrop-filter: blur(3px); }
.sos-content-grid { display: flex; gap: 40px; margin-top: 20px; }
.sos-col-left { flex: 1; } .sos-col-right { flex: 1; display: flex; flex-direction: column; align-items: center; }
.roman-title { font-size: 1.5em; text-align: center; border-bottom: 2px solid var(--gold-accent); display: inline-block; width: 100%; margin-bottom: 20px; color: var(--gold-accent); }
.sos-full-list { list-style: none; padding: 0; max-height: 700px; overflow-y: auto; }
.sos-full-list li { font-family: var(--font-roman); font-size: 1.1em; padding: 12px 15px; margin-bottom: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(212, 175, 55, 0.3); border-radius: 4px; cursor: pointer; transition: all 0.2s ease; display: flex; align-items: center; }
.sos-full-list li:before { content: "🔱"; margin-right: 10px; font-size: 0.8em; color: var(--gold-accent); }
.sos-full-list li:hover { background: var(--gold-accent); color: var(--deep-ocean); transform: translateX(10px); }
.sos-map-frame { width: 100%; max-width: 400px; border: 3px solid var(--gold-accent); border-radius: 8px; overflow: hidden; margin-bottom: 20px; } .sos-map-image { width: 100%; display: block; }
.sos-contacts-box { background: rgba(0,0,0,0.6); border: 2px solid var(--gold-accent); padding: 20px; border-radius: 8px; width: 100%; max-width: 400px; text-align: center; }
.contact-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; padding-bottom: 5px; border-bottom: 1px dashed rgba(255,255,255,0.2); }
.zone-id { font-weight: bold; font-family: var(--font-roman); font-size: 1.2em; }
.zone-blue { color: #87CEEB; } .zone-dark { color: #888; } .zone-orange { color: #FFA500; } .zone-green { color: #90EE90; }
.phone-num { font-family: 'Roboto', monospace; font-size: 1.1em; letter-spacing: 1px; }
.modal-box { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2000; width: 80%; max-width: 400px; text-align: center; border: 4px solid var(--gold-accent); box-shadow: 0 0 50px rgba(0,0,0,0.8); background: rgba(23,42,69, 0.95); }

/* CALENDRIER GRILLE ROMAINE */
.roman-calendar-container { border: 4px solid var(--gold-accent); border-radius: 8px; background: rgba(23, 42, 69, 0.85); padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); margin-top: 20px; }
.roman-week-header { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; font-weight: bold; color: var(--gold-accent); padding-bottom: 10px; border-bottom: 2px solid var(--gold-accent); margin-bottom: 10px; font-family: var(--font-roman); }
.roman-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; }
.roman-day { min-height: 120px; background: rgba(255,255,255,0.05); border: 1px solid rgba(212, 175, 55, 0.3); border-radius: 4px; padding: 5px; position: relative; transition: background 0.3s; }
.roman-day:hover { background: rgba(255,255,255,0.1); }
.roman-date { display: block; text-align: right; font-family: var(--font-roman); font-size: 1.2em; color: var(--gold-accent); margin-bottom: 5px; font-weight: bold; }
.event-card-roman { display: flex; flex-direction: column; border: 1px solid var(--gold-accent); border-radius: 4px; cursor: pointer; overflow: hidden; height: 70px; position: relative; transition: transform 0.2s; background-size: cover; background-position: center; }
.event-card-roman:hover { transform: scale(1.05); border: 2px solid white; z-index: 5; }
.ecr-title-overlay { background: rgba(0,0,0,0.6); color: white; font-weight: bold; text-align: center; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 0.7em; text-shadow: 1px 1px 2px black; font-family: var(--font-roman); }
.text-bde { color: #3498db; } .text-bds { color: #e74c3c; } .text-bda { color: #2ecc71; } 
.calendar-legend { text-align: center; margin-bottom: 15px; }
.legend-item { display: inline-block; padding: 5px 15px; margin: 0 5px; border: 1px solid var(--gold-accent); border-radius: 15px; font-size: 0.8em; font-weight:bold; }
.legend-item.bde { color: #3498db; border-color: #3498db; } .legend-item.bds { color: #e74c3c; border-color: #e74c3c; } .legend-item.bda { color: #2ecc71; border-color: #2ecc71; }
#event-details-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2000; width: 80%; max-width: 400px; text-align: center; border: 4px solid var(--gold-accent); }

@media (max-width: 768px) {
    header { flex-direction: column; } .bureaux-grid { flex-direction: column; } .bureau-card { width: 100%; }
    .sos-content-grid { flex-direction: column; } .sos-col-right { order: -1; margin-bottom: 20px; }
    .roman-day { min-height: 80px; font-size: 0.8em; } .roman-date { font-size: 0.9em; }
    .team-member { width: 100%; margin-bottom: 20px; }
}


/* Ajout pour les cartes Leaflet */
.map-style {
    height: 500px;
    width: 100%;
    border: 3px solid var(--gold-accent);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* Le reste du CSS pour SOS, Calendrier, etc. ne change pas */
/* Assure-toi juste que .sos-map-frame a une hauteur définie pour que la carte s'affiche */
.sos-map-frame { 
    width: 100%; 
    max-width: 400px; 
    height: 300px; /* IMPORTANT : Il faut une hauteur fixe pour Leaflet */
    border: 3px solid var(--gold-accent); 
    border-radius: 8px; 
    overflow: hidden; 
    margin-bottom: 20px; 
}

/* === SECTION PÔLES === */
.poles-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    padding-bottom: 30px;
}

.pole-card {
    background: rgba(23, 42, 69, 0.9);
    border: 2px solid var(--gold-accent);
    border-radius: 8px;
    width: 140px; /* Taille fixe pour une belle grille */
    padding: 15px 5px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pole-card:hover {
    transform: translateY(-5px);
    background: var(--mid-ocean);
    border-color: white;
}

.pole-icon {
    font-size: 3em; /* Emoji en gros */
    display: block;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

.pole-name {
    font-family: var(--font-roman);
    color: var(--gold-accent);
    font-weight: bold;
    font-size: 0.9em;
    text-transform: uppercase;
    word-wrap: break-word;
}

/* Ajustement Mobile */
@media (max-width: 768px) {
    .pole-card {
        width: 45%; /* 2 par ligne sur mobile */
    }
}

/* === LEADERBOARD STYLISÉ === */

/* Conteneur principal avec scroll si la liste est longue */
.leaderboard-list {
    max-height: 500px;
    overflow-y: auto;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2); /* Fond sombre léger */
    border-radius: 8px;
    scrollbar-width: thin; /* Scrollbar fine pour Firefox */
    scrollbar-color: var(--gold-accent) transparent;
}

/* En-tête discret */
.leaderboard-header {
    display: flex;
    justify-content: space-between;
    padding: 5px 15px;
    font-size: 0.8em;
    color: #888;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 10px;
}

/* Une ligne de joueur */
.leaderboard-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(23, 42, 69, 0.95); /* Bleu nuit profond */
    border: 1px solid rgba(212, 175, 55, 0.3); /* Bordure or subtile */
    margin-bottom: 8px;
    padding: 12px 15px;
    border-radius: 6px;
    transition: transform 0.2s, background 0.2s;
}

.leaderboard-row:hover {
    transform: scale(1.02);
    background: rgba(30, 55, 153, 0.3); /* Effet survol */
    border-color: var(--gold-accent);
}

/* Effet spécial pour le PREMIER (lueur dorée) */
.gold-glow {
    border: 2px solid #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    background: linear-gradient(90deg, rgba(23,42,69,1) 0%, rgba(50,40,10,1) 100%);
}

/* Colonne Rang (Médaille) */
.rank {
    width: 40px;
    font-size: 1.5em;
    text-align: center;
    font-weight: bold;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.5));
}
.rank-other {
    font-family: var(--font-roman);
    color: #666;
    font-size: 1.2em;
}

/* Colonne Nom */
.player-name {
    flex-grow: 1;
    padding-left: 15px;
    font-family: var(--font-body);
    font-weight: bold;
    color: var(--marble-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Colonne Score */
.player-score {
    font-family: var(--font-roman);
    color: var(--gold-accent);
    font-weight: bold;
    font-size: 1.2em;
    min-width: 80px;
    text-align: right;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

/* DÉFIS (MODIFIÉ) */
.challenges-list { margin-top: 20px; }
#challenges-full-list { list-style: none; padding: 0; }
.challenge-item {
    background: rgba(23, 42, 69, 0.9);
    border: 1px solid var(--gold-accent);
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    flex-direction: column;
}
.challenge-item:hover {
     background: var(--mid-ocean); /* Un bleu légèrement plus clair mais solide */
    border-color: white;          /* On change la bordure en blanc pour l'effet "activé" */
    transform: translateX(5px);
}
.challenge-header { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.challenge-points {
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9em;
    min-width: 70px;
    text-align: center;
    border: 1px solid white;
    margin-right: 15px;
    flex-shrink: 0;
}
/* Couleurs des points */
.pts-grey { background-color: #7f8c8d; }
.pts-gold { background-color: #f1c40f; color: #2c3e50; }
.pts-red { background-color: #c0392b; }
.pts-pink { background-color: #ff69b4; }

.challenge-name { font-family: var(--font-roman); font-size: 1.1em; color: var(--gold-accent); flex-grow: 1; text-align: left; }

.challenge-desc {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    font-style: italic;
    color: var(--gold-accent); /* Jaune doré demandé */
    font-size: 0.95em;
    line-height: 1.4;
    text-align: left;
}

/* LEADERBOARD */
.leaderboard-container { overflow: hidden; border-radius: 8px; border: 2px solid var(--gold-accent); background: white; }
.leaderboard-container iframe { display: block; width: 100%; }


/* === PAGE CONSEILS CINÉMATOGRAPHIQUES === */

.cine-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.cine-card {
    width: 300px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none; /* Pour le lien */
    color: var(--text-dark);
}

/* Effet de survol global */
.cine-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
    border-color: white;
}

/* Cadre de l'image */
.poster-frame {
    width: 100%;
    height: 400px; /* Hauteur fixe pour alignement */
    overflow: hidden;
    border: 2px solid var(--gold-accent);
    border-radius: 4px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.poster-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Remplit le cadre sans déformer l'image */
    transition: transform 0.5s ease;
}

.cine-card:hover .poster-frame img {
    transform: scale(1.1); /* Zoom léger sur l'image au survol */
}

/* Infos du film */
.cine-info {
    text-align: center;
}

.cine-info h4 {
    color: var(--gold-accent);
    font-family: var(--font-roman);
    font-size: 1.4em;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px black;
}

.director {
    font-style: italic;
    color: #ccc;
    font-size: 0.95em;
}

/* Spécifique au lien (3ème poster) pour montrer qu'il est cliquable */
.cine-link {
    cursor: pointer;
    position: relative;
}

.cine-link:hover .cine-info h4 {
    color: #ff6b6b; /* Changement de couleur au survol pour le lien */
}