.cms-id-19 #main .page-content {background: transparent; padding: unset;}
/* Scope global */
.glokflix{ color:#e5e5e5; background:#0b0b0b; }

/* Intro G */
.glokflix-intro{ position:fixed; inset:0; background:#000; display:grid; place-items:center; z-index:50; }
.glokflix-intro[hidden]{ display:none !important; }
.glokflix-intro__center{ text-align:center; }
.glokflix-intro__logo{ width:min(40vw,240px); height:auto; transform:scale(0.96); transition:transform 2s ease; }
.glokflix-intro.play .glokflix-intro__logo{ transform:scale(8) rotate(.2deg); filter:contrast(1.1) saturate(1.15); }
.glokflix-intro__skip{ margin-top:1rem; background:transparent; color:#fff; border:none; padding:.6rem 1rem; font-weight:700; cursor:pointer; }

/* Header */
.glokflix-header{ display:flex; align-items:center; gap:1rem; padding:1rem 0; }
.glokflix-badge{ height:28px; width:auto; }
.glokflix-nav{ margin-left:auto; display:flex; gap:1rem; opacity:.6; }
.glokflix-nav .is-disabled{ cursor:default; }

/* Rangées */
.glokflix-row{ margin:1.2rem 0 2rem; }
.glokflix-row__title{ font-weight:800; letter-spacing:.02em; margin:0 0 .5rem; }
.glokflix-row__scroller{
  --gap: .8rem;
  display:grid; gap:var(--gap);
  grid-auto-flow:column; grid-auto-columns:minmax(160px, 220px);
  overflow-x:auto; padding-bottom:.2rem; scroll-snap-type:x mandatory;
}
.glokflix-row__scroller > *{ scroll-snap-align:start; }

/* Carte (poster 600x900) */
.glokflix-card{ position:relative; min-width:0; }
.glokflix-card__figure{ margin:0; overflow:hidden; }
.glokflix-card__figure img{ display:block; width:100%; height:auto; transform:scale(1); transition:transform .18s cubic-bezier(.2,.6,.2,1); }
.glokflix-card:hover .glokflix-card__figure img{ transform:scale(1.04); }
.glokflix-card__caption{ display:block; margin-top:.5rem; }
.glokflix-card__title{ display:block; font-weight:700; line-height:1.2; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.glokflix-card__summary{ display:block; opacity:.85; font-size:.95rem; line-height:1.3; max-height:3.0em; overflow:hidden; }
.glokflix-card__open{ position:absolute; inset:0; border:0; background:transparent; cursor:pointer; }

/* Continue Watching */
.glokflix-continue [role="list"]{ grid-auto-columns:minmax(220px, 360px); }

/* ————— GLOKFLIX MODAL LAYOUT ————— */

/* valeur par défaut pour l’offset sous le header */
.glokflix{ --gf-safe-top: 0px; }

/* OVERLAY : scrollable, décalé sous le header */
.glokflix-modal{
  position: fixed;
  inset: 0;
  padding-top: var(--gf-safe-top, 0px);
  display: flex;
  align-items: flex-start;       /* on plaque le panneau en haut, pas centré */
  justify-content: flex-start;
  overflow: auto;                /* si le panneau est plus grand que le viewport */
  -webkit-overflow-scrolling: touch;
  background: rgba(0,0,0,.55);   /* léger voile au-dessus de la page */
  z-index: 500;                  /* laisse ton menu au-dessus si tu veux */
}

/* BACKDROP : plein écran, image SANS rognage */
.glokflix-modal__backdrop{
  position: fixed;
  inset: 0;
  z-index: -1;                   /* derrière le panel */
}
.glokflix-modal__backdrop::before{
  content:"";
  position:absolute; inset:0;
  background: var(--bg) center center / contain no-repeat #000; /* <= CONTAIN */
  opacity: .95;
}
.glokflix-modal__backdrop::after{
  content:"";
  position:absolute; inset:0;
  /* dégradé gauche → droite pour lisibilité du texte */
  background: linear-gradient(90deg,
              rgba(0,0,0,.80) 0%,
              rgba(0,0,0,.60) 32%,
              rgba(0,0,0,.30) 58%,
              rgba(0,0,0,0) 100%);
}

/* PANEL : collé en haut à gauche avec une marge confortable */
.glokflix-modal__panel{
  position: relative;
  max-width: min(720px, 52vw);
  margin: 24px 0 6vh 5vw;        /* top/right/bottom/left */
  background: transparent;
  color: #ddd;
}

/* bouton fermer */
.glokflix-modal__close{
  position: absolute;
  top: 8px; right: 8px;
  z-index: 2;
}

/* ———— MOBILE (<768px) : vignette AU-DESSUS, 100% largeur ———— */
@media (max-width: 767.98px){
  .glokflix-modal{
    background: #000;            /* panneau sur fond noir plein */
    padding-top: var(--gf-safe-top, 0px);
  }
  .glokflix-modal__backdrop{
    position: static;            /* il “rentre” dans le flux du panel */
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;         /* 800x533 ≈ 3:2 */
    margin: 0;
    z-index: 0;
  }
  .glokflix-modal__backdrop::before{
    background: var(--bg) center center / contain no-repeat #000; /* 100% largeur sans rognage */
    opacity: 1;
  }
  .glokflix-modal__backdrop::after{ display: none; } /* pas de voile */
  .glokflix-modal__panel{
    max-width: 100%;
    width: 100%;
    margin: 0;                   /* pas de marge */
    padding: 1rem 1rem 2rem;
    background: #000;            /* panneau noir sous le texte */
  }
  .glokflix-modal__close{
    position: sticky;            /* le X reste visible en haut du panel mobile */
    top: calc(var(--gf-safe-top, 0px) + .5rem);
  }
}

/* petits ajustements responsives côté desktop/tablette */
@media (max-width: 1199.98px){
  .glokflix-modal__panel{ max-width: min(720px, 60vw); margin-left: 4vw; }
}
@media (max-width: 991.98px){
  .glokflix-modal__panel{ max-width: min(720px, 70vw); margin-left: 3vw; }
}


/* Actions */
.glokflix-actions{ display:flex; flex-wrap:wrap; gap:.6rem; margin-top:.8rem; }
.btn-ghost{ background:transparent; border:1px solid rgba(255,255,255,.25); color:#fff; padding:.4rem .6rem; cursor:pointer; }
.btn-primary{ background:#e50914; border:0; color:#fff; padding:.5rem .9rem; font-weight:700; cursor:pointer; }
.btn-secondary{ background:#2a2a2a; border:0; color:#fff; padding:.5rem .9rem; cursor:pointer; }

/* Mobile */
@media (max-width: 767.98px){
  .glokflix-row__scroller{ grid-auto-columns: 60vw; }
  .glokflix-modal__panel{
    max-width: none; margin:0; padding:1rem;
    background: linear-gradient(180deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 40%, rgba(0,0,0,0) 80%);
  }
  .glokflix-long{ max-height:58vh; }
}
.glokflix-intro{
  position:fixed; inset:0;
  background:#000;
  display:grid; place-items:center;
  z-index: 9999;            /* au-dessus de tout */
}
.glokflix-intro__center{ pointer-events:auto; }
/* valeur par défaut */
.glokflix{ --gf-safe-top: 0px; }

/* la modale se décale sous le header + respecte le notch iOS */
.glokflix-modal{
  position: fixed;
  inset: 0;
  padding-top: calc(var(--gf-safe-top, 0px) + env(safe-area-inset-top, 0px));
  /* z-index : laisse ton header au-dessus, sinon baisse cette valeur */
  z-index: 500;
}

/* on garde tes marges habituelles pour le panneau */
.glokflix-modal__panel{
  margin: min(8vh, 5rem) 5vw 5vh;
}
@media (max-width: 767.98px){
  .glokflix-modal__panel{ margin: 1rem 1rem 4vh; }
}
/* ——— base ——— */
.glokflix{ --gf-safe-top: 0px;
    padding: 0 15px;
}

/* overlay : occupe l’écran, scrollable, mais décalé sous le header */
.glokflix-modal{
  position: fixed;
  inset: 0;
  padding-top: calc(var(--gf-safe-top, 0px) + 8px); /* marge sous menu */
  display: flex;
  align-items: flex-start;       /* panneau collé en haut */
  justify-content: flex-start;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(0,0,0,.55);
  z-index: 500;
}

/* BACKDROP en plein écran derrière, SANS rognage */
.glokflix-modal__backdrop{
  position: fixed;
  inset: 0;
  z-index: -1;
}
.glokflix-modal__backdrop::before{
  content:"";
  position:absolute; inset:0;
  background: var(--bg) center center / contain no-repeat #000; /* pas de crop */
  opacity: .95;
}
.glokflix-modal__backdrop::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg,
              rgba(0,0,0,.85) 0%,
              rgba(0,0,0,.60) 34%,
              rgba(0,0,0,.28) 60%,
              rgba(0,0,0,0) 100%);
}

/* panneau texte */
.glokflix-modal__panel{
  position: relative;
  max-width: min(720px, 52vw);
  margin: 24px 0 6vh 5vw;
  background: transparent;
  color: #ddd;
}

/* bouton fermer */
.glokflix-modal__close{ position:absolute; top:8px; right:8px; z-index:2; }

/* ——— MOBILE : pile verticale (vignette puis panel) ——— */
@media (max-width: 767.98px){
  .glokflix-modal{
    display: block;                         /* <== plus de flex */
    background: #000;                       /* fond noir sous le contenu */
    padding-top: unset;
    overflow: auto;
  }
  .glokflix-modal__backdrop{
    position: static;                       /* entre dans le flux */
    width: 100%;
    height: auto;
    aspect-ratio: 800 / 533;                /* 3:2 */
    z-index: 0;
  }
  .glokflix-modal__backdrop::before{
    background: var(--bg) center center / contain no-repeat #000;
    opacity: 1;                             /* pas de voile par-dessus l’image */
  }
  .glokflix-modal__backdrop::after{ display:none; }

  .glokflix-modal__panel{
    max-width: 100%;
    width: 100%;
    margin: 0;                              /* panel juste en dessous */
    padding: 1rem 1rem 2rem;
    background: #000;                       /* panneau noir “Netflix mobile” */
  }

  .glokflix-modal__close{
    position: sticky;
    top: calc(var(--gf-safe-top, 0px) + .5rem);
  }
}

/* tablettes : un peu plus large */
@media (max-width: 1199.98px){ .glokflix-modal__panel{ max-width:min(720px,60vw); margin-left:4vw; } }
@media (max-width: 991.98px){  .glokflix-modal__panel{ max-width:min(720px,70vw); margin-left:3vw; } }
/* z-index fort pour passer devant le header */
.glokflix-modal {
  position: fixed;
  inset: 0;
  z-index: 10020;
}

/* BACKDROP (desktop) */
.glokflix-modal__backdrop {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.85) 0 40%, rgba(0,0,0,.45) 70%, rgba(0,0,0,.35) 100%),
    var(--bg) center / cover no-repeat;
  pointer-events: auto; /* clic pour fermer */
}

/* PANEL (desktop) : calé sous le header via var --gf-safe-top */
.glokflix-modal__panel {
  position: relative;
  max-width: min(720px, 60vw);
  margin: calc(var(--gf-safe-top, 80px) + 2rem) 3vw 5vw 4vw; /* top left tuned */
  color: #ddd;
  background: transparent;
}

/* Bouton close */
.glokflix-modal__close {
  position: absolute;
  top: calc(-1rem - 8px);
  right: -8px;
  width: 36px; height: 36px;
  border: 0; border-radius: 6px;
  background: rgba(0,0,0,.6);
  color: #eee; cursor: pointer;
}

/* ---------- MOBILE < 768px ---------- */
@media (max-width: 767.98px) {
  /* fond : la vignette en "bloc" au-dessus, ratio paysage */
  .glokflix-modal__backdrop {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    padding-top: 56.25vw; /* 16:9 */
    background:
      var(--bg) center / cover no-repeat;
  }
  /* panneau : sous l’image, fond noir, largeur totale */
  .glokflix-modal__panel {
    position: relative;
    max-width: none;
    width: 100%;
    margin: 1rem 0 4rem 0; /* on ne dépend plus du header */
    padding: 1rem 1rem 2rem;
    background: rgba(0,0,0,.85);
  }
  .glokflix-modal__close {
    top: .5rem; right: .5rem;
    background: rgba(0,0,0,.7);
  }
}

/* micro-filets pour séparer visuellement sur fond sombre */
.glokflix-meta, .glokflix-tags, .glokflix-actions { margin-top: .75rem; }
.glokflix-tags li { display:inline-block; margin:.2rem .4rem .2rem 0; padding:.2rem .5rem; color: #ebebeb; background:rgba(255,255,255,.08); border-radius:4px; font-size:.9rem; }
.btn-primary{ background:#ebebeb; color:#060006; border:0; padding:.6rem .9rem; border-radius:4px; }
.btn-secondary, .btn-ghost{ background:rgba(255,255,255,.1); color:#eee; border:0; padding:.6rem .9rem; border-radius:4px; }
.glokflix-actions > * { margin:.3rem .4rem .3rem 0; }

/* Bloquer le scroll de la page quand la modale est ouverte */
html.modal-open, body.modal-open { overflow: hidden; height: 100%; }
body.modal-open { position: fixed; width: 100%; } /* iOS-friendly */

/* La modale devient le seul conteneur scrollable */
.glokflix-modal{
  overflow: auto;                /* UN SEUL scroll ici */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;  /* empêche le scroll de "traverser" vers derrière */
  touch-action: pan-y;           /* gestes verticaux uniquement */
}

/* Le panneau lui-même NE scrolle pas : il se laisse porter par .glokflix-modal */
.glokflix-modal__panel{ overflow: visible; }

/* Mobile : même règle (on scrolle la modale, pas le panel) */
@media (max-width: 767.98px){
  .glokflix-modal{
    overflow: auto;
    overscroll-behavior: contain;
    touch-action: pan-y;
  }
  .glokflix-modal__panel{ overflow: visible; }
}
/* ===== Desktop : panel fixe en bas, hauteur auto (fit-content) ===== */
@media (min-width: 768px){
  /* l’overlay reste le seul scroll ; la page derrière est déjà lockée par le JS */
  .glokflix-modal{
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-top: calc(var(--gf-safe-top, 0px) + 16px); /* décalage sous ton header */
    background: rgba(0,0,0,.55);
  }

  .glokflix-modal__backdrop{
    position: fixed; inset: 0; z-index: -1;
  }

  .glokflix-modal__panel{
    position: fixed;
    /* pas de top ⇒ le bloc remonte tout seul à sa taille naturelle */
    left: 4vw;
    right: auto;
    bottom: 0;
    width: auto;
    max-width: min(720px, 60vw);

    /* hauteur naturelle ; fit-content si dispo */
    height: auto;
    height: fit-content;

    margin: 0 0 24px 0; /* petit air en bas */
    padding: 1rem 1rem 1.25rem;
    background: transparent;
    color: #ddd;

    /* pas de scroll interne du panel */
    overflow: visible;
  }

  .glokflix-modal__close{
    position: absolute;
    top: 8px; right: 8px;
  }
}

.glokflix p {color: white;}

/* Masquer les résumés sous les posters (cartes) */
.glokflix-card__summary {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important; clip: rect(0,0,0,0) !important;
  white-space: nowrap !important; border: 0 !important;
}

/* Ajuste un chouilla l’espacement sous l’affiche + titre seulement */
.glokflix-card__caption {
  margin-top: .55rem;
  margin-bottom: .55rem;
}
/* petit logo en haut à gauche des posters (600x900) */
.glokflix-card__figure{ position:relative; }
.glokflix-card__figure.glokflix-originals::after{
  content:"";
  position:absolute; top:.5rem; left:.5rem;
  width:28px; height:28px;
  background: url("/img/glokflix/GLOKFLIX-originals.png") center/contain no-repeat;
  opacity:.9; filter:drop-shadow(0 1px 1px rgba(0,0,0,.5));
  pointer-events:none;
}
/*Réctification de mise en page sur la modale*/
.glokflix-modal__title {font-size: x-large;} 
.age-restriction {
	display: inline-block;
    margin: .2rem .4rem .2rem 0;
    padding: .2rem .5rem;
    color: #ebebeb;
    background: rgba(255, 255, 255, .08);
    border-radius: 4px;
    font-size: .9rem;
}
.meta-icons.hd-border {
	border: 1px solid #ebebeb;
    color: #ebebeb;
    padding: 2px;
    font-size: 0.8rem;
}
.btn-primary .lecture {
    position: relative;
    bottom: 3px;
}
.btn-primary .material-symbols-outlined {
    position: relative;
	top: 2px;
}
.glokflix-card__figure img.top-dix {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    width: 34px;
    height: auto;
    opacity: 90%;
}
.glokflix-meta .material-symbols-outlined {
    color: #ebebeb;
    position: relative;
    top: 7px;
    padding-left: 4px;
}
/*Logo play sur intro état normal */
.glokflix-intro__center .material-symbols-outlined{
  font-size:10rem;
  display:block;
  position:absolute;
  top:50%; left:50%;
  transform:translate(-40%,-40%) scale(1);
  transition:opacity .2s ease, transform .2s ease;
}

/* quand l’intro “joue” -> on fade l’icône et on la rétrécit */
.glokflix-intro.play .material-symbols-outlined{
  opacity:0;
  transform:translate(-40%,-40%) scale(.6);
  pointer-events:none; /* par sécurité */
}
.glokflix-intro__skip{
  background:transparent;
  border:0;
  padding:0;
  outline:0;
  box-shadow:none;
  -webkit-tap-highlight-color: transparent; /* mobile */
}
.glokflix-intro__skip:focus:not(:focus-visible){ outline:0; }
.glokflix-intro__skip::-moz-focus-inner{ border:0; } /* Firefox */

/* Kill the bullets on the poster rows */
.glokflix .glokflix-row__scroller{
  list-style: none;
  margin: 0;
  padding: 0;
}
.glokflix .glokflix-row__scroller > li{
  list-style: none;
}
.glokflix .glokflix-row__scroller > li::marker{
  content: none; /* ceinture et bretelles */
}

/* affichage material symbols au chargement */
.material-symbols-outlined { visibility: hidden; }

/* on révèle quand les polices sont prêtes */
.icons-ready .material-symbols-outlined { visibility: visible; }

/* pas d’anneau sur clic souris (garde l’accessibilité clavier) */
.glokflix-intro__skip:focus:not(:focus-visible){ outline: none; }
