        /* ── Barre de filtres genre ───────────────────────────────────────── */
        .films-filters {
            background: #111;
            border-bottom: 1px solid #2a2a2a;
            padding: 12px 32px;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .films-filters .label-genre {
            color: #888;
            font-size: 11px;
            letter-spacing: .12em;
            text-transform: uppercase;
            margin-right: 6px;
        }
        .btn-genre {
            background: transparent;
            border: 1px solid #333;
            color: #ccc;
            font-size: 12px;
            padding: 5px 14px;
            cursor: pointer;
            letter-spacing: .06em;
            transition: border-color .2s, color .2s;
            text-decoration: none;
            display: inline-block;
        }
        .btn-genre:hover  { border-color: #c8a96e; color: #c8a96e; }
        .btn-genre.actif  { border-color: #c8a96e; color: #c8a96e; background: rgba(200,169,110,.08); }

        /* ── Onglets ─────────────────────────────────────────────────────── */
        .films-tabs {
            background: #0d0d0d;
            border-bottom: 1px solid #222;
            padding: 0 32px;
            display: flex;
            gap: 0;
        }
        .tab-btn {
            background: none;
            border: none;
            border-bottom: 3px solid transparent;
            color: #777;
            font-size: 12px;
            letter-spacing: .1em;
            text-transform: uppercase;
            padding: 16px 24px 13px;
            cursor: pointer;
            transition: color .2s, border-color .2s;
            white-space: nowrap;
        }
        .tab-btn:hover  { color: #ccc; }
        .tab-btn.actif  { color: #c8a96e; border-bottom-color: #c8a96e; }
        .tab-badge {
            display: inline-block;
            background: #222;
            color: #888;
            font-size: 10px;
            padding: 1px 6px;
            margin-left: 6px;
            vertical-align: middle;
        }
        .tab-btn.actif .tab-badge { background: rgba(200,169,110,.15); color: #c8a96e; }

        /* ── Contenu principal + sidebar ─────────────────────────────────── */
        .films-page {
            display: flex;
            gap: 0;
            min-height: 80vh;
        }
        .films-main {
            flex: 1;
            padding: 32px;
            min-width: 0;
        }
        .films-sidebar {
            width: 320px;
            flex-shrink: 0;
            border-left: 1px solid #1e1e1e;
            padding: 28px 24px;
            background: #0a0a0a;
        }

        /* ── Panneau onglet ──────────────────────────────────────────────── */
        .tab-panel { display: none; }
        .tab-panel.actif { display: block; }

        /* ── Cartes "Cette semaine" ──────────────────────────────────────── */
        .carte-semaine {
            display: flex;
            gap: 24px;
            background: #111;
            border: 1px solid #1e1e1e;
            margin-bottom: 20px;
            transition: border-color .2s;
        }
        .carte-semaine:hover { border-color: #333; }
        .carte-semaine .affiche-wrap {
            flex-shrink: 0;
            width: 130px;
        }
        .carte-semaine .affiche-wrap img {
            width: 130px;
            height: 195px;
            object-fit: cover;
            display: block;
        }
        .carte-semaine .affiche-wrap .no-affiche {
            width: 130px;
            height: 195px;
            background: #1a1a1a;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #444;
            font-size: 11px;
        }
        .carte-semaine .infos {
            flex: 1;
            padding: 18px 20px 18px 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .carte-semaine .titre-film {
            font-size: 16px;
            font-weight: 600;
            color: #e8e0d0;
            letter-spacing: .04em;
            text-decoration: none;
        }
        .carte-semaine .titre-film:hover { color: #c8a96e; }
        .carte-semaine .meta-film {
            font-size: 11px;
            color: #777;
            letter-spacing: .06em;
        }
        .carte-semaine .meta-film span { margin-right: 14px; }
        .carte-semaine .synopsis {
            font-size: 13px;
            color: #aaa;
            line-height: 1.65;
            flex: 1;
            /* 4 lignes max */
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .carte-semaine .artistes {
            font-size: 11px;
            color: #666;
            letter-spacing: .04em;
        }
        .carte-semaine .artistes strong { color: #888; }


        /* ── Grille 4 cols (exclusivités / continuation) ─────────────────── */
        .grille-films {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 14px;
        }
        .carte-grille {
            background: #111;
            border: 1px solid #1e1e1e;
            transition: border-color .2s;
        }
        .carte-grille:hover { border-color: #333; }
        .carte-grille a { text-decoration: none; }
        .carte-grille .affiche-grille {
            width: 100%;
            aspect-ratio: 2/3;
            object-fit: cover;
            display: block;
            background: #1a1a1a;
        }
        .carte-grille .no-affiche-grille {
            width: 100%;
            aspect-ratio: 2/3;
            background: #1a1a1a;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            font-size: 11px;
        }
        .carte-grille .infos-grille {
            padding: 10px 12px 14px;
        }
        .carte-grille .titre-grille {
            font-size: 13px;
            font-weight: 600;
            color: #e0d8c8;
            letter-spacing: .03em;
            line-height: 1.3;
            margin-bottom: 5px;
            display: block;
        }
        .carte-grille .titre-grille:hover { color: #c8a96e; }
        .carte-grille .real-grille {
            font-size: 11px;
            color: #777;
            margin-bottom: 3px;
        }

        .carte-grille .date-grille {
            font-size: 10px;
            color: #c8a96e;
            opacity: .6;
            margin-top: 4px;
        }

        /* ── Bloc Box Office ─────────────────────────────────────────────── */
        .bloc-boxoffice h3 {
            font-size: 11px;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: #c8a96e;
            margin: 0 0 16px;
            padding-bottom: 10px;
            border-bottom: 1px solid #222;
        }
        .bo-item {
            border-bottom: 1px solid #1a1a1a;
            padding: 10px 0;
        }
        .bo-item:last-child { border-bottom: none; }
        .bo-item a {
            color: #ccc;
            font-size: 12px;
            text-decoration: none;
            line-height: 1.4;
            display: block;
        }
        .bo-item a:hover { color: #c8a96e; }
        .bo-item .bo-date {
            font-size: 10px;
            color: #555;
            margin-top: 3px;
        }
        .bo-item .bo-desc {
            font-size: 11px;
            color: #666;
            margin-top: 4px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .bo-source {
            font-size: 10px;
            color: #444;
            margin-top: 14px;
            text-align: right;
        }
        .bo-source a { color: #555; text-decoration: none; }
        .bo-source a:hover { color: #888; }

        /* ── Sidebar sticky ──────────────────────────────────────────────── */
        .films-sidebar-inner {
            position: sticky;
            top: 20px;
        }

        /* ── Titre section ───────────────────────────────────────────────── */
        .section-titre {
            font-size: 11px;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: #555;
            margin: 0 0 22px;
        }

        /* ── Vide ────────────────────────────────────────────────────────── */
        .vide-msg {
            color: #444;
            font-size: 13px;
            padding: 40px 0;
            text-align: center;
        }