/* =========================================================
   YOUR EXISTING GLOBAL.CSS CONTENT STARTS HERE
   (PASTE YOUR ENTIRE current working global.css)
   ========================================================= */

/* ... your full global css ... */

/* =========================================================
   XXX SEX CLIPS INDEX (yesterday feed)
   Paste at VERY BOTTOM of global.css
   ========================================================= */

.index-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

.index-title{
  font-size: 2.4rem;
  font-weight: 900;
  color: #c8102e;
  text-align: center;
  margin: 18px 0 26px;
}

.index-empty{
  color: #9a9a9a;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 14px 16px;
  border-radius: 12px;
  margin: 12px 0;
}

.movie-block{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  padding: 18px;
  margin: 0 0 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
}

@media (max-width: 900px){
  .movie-block{
    grid-template-columns: 1fr;
  }
}

.movie-title{
  margin: 0 0 10px;
  font-size: 1.6rem;
  font-weight: 900;
}
.movie-title a{
  color: #c8102e;
  text-decoration: none;
}
.movie-title a:hover{
  color: #fff;
  text-decoration: underline;
}

/* cover flip (works with your existing cover-flip / cover-back) */
.movie-cover-link{ display:block; }
.movie-left .cover-flip{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: #0f0f0f;
  box-shadow: 0 18px 36px rgba(0,0,0,0.65);
}
.movie-left .cover-flip img{
  width: 100%;
  display: block;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}
.movie-left .cover-back{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
}
.movie-left .cover-flip:hover .cover-back{
  opacity: 1;
}

/* scene list */
.scene-lines{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scene-line{
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.10);
  text-decoration: none;
  color: #d8d8d8;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.scene-line:hover{
  transform: translateY(-2px);
  border-color: rgba(200,16,46,0.45);
  background: rgba(200,16,46,0.12);
  color: #fff;
}

.scene-thumb{
  width: 56px;
  height: 84px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12);
  background: #111;
  flex-shrink: 0;
}

.scene-text{
  line-height: 1.25;
  font-size: 0.98rem;
}

/* =========================================================
   GLOBAL HOTFIX — XXX SEX CLIPS
   - black background
   - readable text in scene cards/boxes
   - centered header/banner image
   Paste at VERY BOTTOM of global.css
   ========================================================= */

/* 1) Force black page background everywhere */
html, body {
  background: #000 !important;
  color: #e6e6e6;
}

/* 2) Center the header image (index banner) without stretching */
.index-hero{
  width: 100%;
  overflow: hidden;
  text-align: center;          /* centers inline/inline-block children */
  background: #000;
}

.index-banner{
  display: inline-block;       /* allows centering via text-align */
  width: auto;                 /* DO NOT force stretch */
  max-width: 100%;             /* never overflow the screen */
  height: auto;
}

/* If your banner is huge and you want it visually “hero-ish”, uncomment:
.index-banner{ max-height: 320px; object-fit: contain; }
*/

/* 3) Make “cards/boxes” readable (scene lines + any similar blocks) */
.movie-block,
.scene-line,
.desc-box,
.meta-strip span,
.scene-row,
.thumb-wrapper,
.movie-card,
.cat-card{
  background: rgba(255,255,255,0.04) !important;
  border-color: rgba(255,255,255,0.12) !important;
  color: #f0f0f0 !important;
}

/* Scene list text inside cards */
.scene-line,
.scene-text{
  color: #f0f0f0 !important;
}

/* Links inside those boxes: red by default, white on hover */
.movie-block a,
.scene-line a,
.desc-box a,
.meta-strip a,
.scene-row a,
.movie-card a,
.cat-card a{
  color: #c8102e;
  text-decoration: none;
}
.movie-block a:hover,
.scene-line:hover,
.scene-line:hover .scene-text,
.desc-box a:hover,
.meta-strip a:hover,
.scene-row a:hover,
.movie-card a:hover,
.cat-card a:hover{
  color: #ffffff !important;
  text-decoration: underline;
}

/* Title readability */
.index-title,
.movie-title a,
.movie-title,
.movie-title-main,
.section-title{
  color: #c8102e !important;
}

/* If your hover backgrounds are “grey/pink” and washing out text, force text to white on hover */
.scene-line:hover{
  background: rgba(200,16,46,0.14) !important;
  border-color: rgba(200,16,46,0.45) !important;
  color: #fff !important;
}
.scene-line:hover *{
  color: #fff !important;
}

/* =========================================================
   GLOBAL NAV BAR UPGRADE
   ========================================================= */

.nav-strip{
  width: 100%;
  display: flex;
  justify-content: center;     /* center horizontally */
  align-items: center;
  gap: 1.25rem;
  padding: 1.2rem 1rem;
  background: #0d0d0d;
  border-bottom: 1px solid #1f1f1f;
  flex-wrap: wrap;
}

.nav-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.6rem;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 999px;
  background: #161616;
  border: 1px solid #2a2a2a;
  color: #c8102e;
  text-decoration: none;
  transition: all .2s ease;
}

.nav-btn:hover{
  background: #c8102e;
  border-color: #c8102e;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(200,16,46,0.35);
}

/* active state (optional future use) */
.nav-btn.active{
  background: #c8102e;
  color: #fff;
  border-color: #c8102e;
}

/* =========================================================
   SUB-INDEX (Genres & Sex Acts A–Z) SKIN
   ========================================================= */

/* Page background safety */
body {
  background: #000;
}

/* Hero header center fix (banner) */
.index-hero {
  width: 100%;
  text-align: center;
  background: #000;
}
.index-banner {
  max-width: 100%;
  height: auto;
  display: inline-block;
  margin: 0 auto;
}

/* Container */
.cat-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px 48px;
}

/* Title */
.cat-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 900;
  color: #c8102e;
  margin-bottom: 2.2rem;
  text-shadow: 0 0 12px rgba(200,16,46,0.35);
}

/* Grid of letter cards */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

/* Letter card */
.cat-card {
  background: linear-gradient(145deg, #0f0f0f, #070707);
  border: 1px solid #1f1f1f;
  border-radius: 14px;
  padding: 12px 14px 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.7);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.cat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,16,46,.55);
  box-shadow: 0 18px 36px rgba(200,16,46,0.25);
}

/* Letter header */
.cat-card summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 900;
  color: #c8102e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.cat-card summary::-webkit-details-marker {
  display: none;
}

.cat-card summary::after {
  content: "▾";
  font-size: 1.2rem;
  opacity: 0.7;
  margin-left: 8px;
}

.cat-card details[open] summary::after {
  content: "▴";
}

/* Count */
.count {
  color: #aaa;
  font-size: 0.95rem;
  font-weight: 700;
  margin-left: 8px;
}

/* Pages list */
.pages {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Page links */
.page-link {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: #141414;
  border: 1px solid #2a2a2a;
  color: #e0e0e0;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}

.page-link:hover {
  background: #c8102e;
  color: #ffffff;
  border-color: #c8102e;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(200,16,46,0.35);
}

/* Mobile tighten */
@media (max-width: 600px) {
  .cat-title {
    font-size: 2.2rem;
  }
  .cat-card summary {
    font-size: 1.4rem;
  }
}


/* =========================================================
   XXX SEX CLIPS – SUB-INDEX + GENRE LISTING SKIN
   Targets:
   - sub-index A–Z page: .cat-wrap .cat-grid .cat-card details/summary .page-link
   - genre listing pages: .movie-grid .movie-card .info h3 .year
   - shared header/nav: .index-hero .index-banner .nav-strip .nav-btn
   Paste at VERY BOTTOM of global.css
   ========================================================= */

/* ---------- GLOBAL PAGE FEEL ---------- */
body{
  background:#000;                 /* true black */
  color:#e6e6e6;
}

/* ---------- HEADER BANNER (CENTERED) ---------- */
.index-hero{
  width:100%;
  display:flex;
  justify-content:center;
  background:#000;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.index-banner{
  display:block;
  width:100%;
  max-width:1200px;                /* keep it centered & not stretched */
  height:auto;
}

/* ---------- NAV BAR (CENTERED, CLEAN, RESPONSIVE) ---------- */
.nav-strip{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  padding:14px 12px;
  background:#0b0b0b;
  border-bottom:1px solid rgba(255,255,255,0.08);
  flex-wrap:wrap;
}

.nav-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:9999px;
  background:#101010;
  border:1px solid rgba(255,255,255,0.14);
  color:#c8102e;                   /* red text */
  font-weight:800;
  text-decoration:none;
  transition:background .18s ease, transform .18s ease, border-color .18s ease, color .18s ease;
}
.nav-btn:hover{
  background:#c8102e;              /* red hover */
  border-color:#c8102e;
  color:#fff;                      /* white hover text */
  transform:translateY(-2px);
}
.nav-btn:active{ transform:translateY(0); }

/* ---------- PAGE WRAPPER ---------- */
.cat-wrap,
.container.mx-auto.px-4.py-12.max-w-7xl{
  max-width:1200px;
  margin:0 auto;
  padding:26px 16px 46px;
}

/* ---------- TITLES ---------- */
.cat-title,
.text-5xl{
  font-size:2.6rem;
  line-height:1.12;
  font-weight:900;
  color:#c8102e;
  text-align:center;
  margin:18px 0 26px;
}

@media (max-width:700px){
  .cat-title, .text-5xl{ font-size:2.0rem; }
}

/* ---------- A–Z GRID (sub-index landing) ---------- */
.cat-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:16px;
}

.cat-card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:16px;
  padding:14px 14px 12px;
}

.cat-card details{
  width:100%;
}

.cat-card summary{
  cursor:pointer;
  list-style:none;
  font-size:1.35rem;
  font-weight:900;
  color:#c8102e;
  padding:10px 10px;
  border-radius:12px;
  background:rgba(0,0,0,0.35);
  border:1px solid rgba(255,255,255,0.10);
  user-select:none;
}

/* hide default marker */
.cat-card summary::-webkit-details-marker{ display:none; }
.cat-card summary::after{
  content:"▾";
  float:right;
  opacity:.85;
  color:#cfcfcf;
}
.cat-card details[open] summary::after{ content:"▴"; }

.count{
  color:#bdbdbd;
  font-weight:800;
  margin-left:8px;
}

/* ---------- LINKS INSIDE EACH LETTER ---------- */
.pages{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding:6px 2px 2px;
}

.page-link{
  display:inline-block;
  padding:9px 12px;
  border-radius:9999px;
  background:#101010;
  border:1px solid rgba(255,255,255,0.14);
  color:#e6e6e6;                   /* readable on dark pill */
  font-weight:800;
  font-size:.95rem;
  text-decoration:none;
  transition:background .18s ease, border-color .18s ease, transform .18s ease, color .18s ease;
}
.page-link:hover{
  background:rgba(200,16,46,0.18);
  border-color:rgba(200,16,46,0.55);
  color:#fff;
  transform:translateY(-1px);
}

/* ---------- GENRE LISTING GRID (movie cards) ---------- */
.movie-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(190px, 1fr));
  gap:18px;
  align-items:start;
}

.movie-card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:14px;
  overflow:hidden;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.movie-card:hover{
  transform:translateY(-6px);
  border-color:rgba(200,16,46,0.55);
  box-shadow:0 18px 34px rgba(200,16,46,0.18);
}

.movie-card img{
  width:100%;
  display:block;
  aspect-ratio:2/3;
  object-fit:cover;
  background:#0b0b0b;
}

.movie-card .info{
  padding:12px 12px 14px;
}

.movie-card h3{
  margin:0 0 8px;
  font-size:1.05rem;
  line-height:1.2;
  font-weight:900;
}
.movie-card h3 a{
  color:#c8102e;
  text-decoration:none;
}
.movie-card h3 a:hover{
  color:#fff;
  text-decoration:underline;
}

.movie-card .year{
  color:#bdbdbd;
  font-weight:700;
  font-size:.92rem;
}


/* =========================================================
   DROP-IN: SCENE GENRE INDEX (gallery listing pages)
   Matches YOUR HTML EXACTLY
   ========================================================= */

/* Page background */
body{
  background:#000;
  color:#e6e6e6;
}

/* ===== Header banner centered ===== */
.index-hero{
  width:100%;
  display:flex;
  justify-content:center;
  background:#000;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.index-banner{
  display:block;
  width:100%;
  max-width:1200px;
  height:auto;
}

/* ===== Nav bar centered ===== */
.nav-strip{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  padding:14px 12px;
  background:#0b0b0b;
  border-bottom:1px solid rgba(255,255,255,0.08);
  flex-wrap:wrap;
}

.nav-strip .nav-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:9999px;
  background:#101010;
  border:1px solid rgba(255,255,255,0.14);
  color:#c8102e;
  font-weight:800;
  text-decoration:none;
  transition:all .18s ease;
}
.nav-strip .nav-btn:hover{
  background:#c8102e;
  border-color:#c8102e;
  color:#fff;
  transform:translateY(-2px);
}

/* ===== Scene index wrapper ===== */
.scene-index-wrap{
  max-width:1100px;
  margin:0 auto;
  padding:26px 16px 46px;
}

/* Title */
.scene-index-title{
  font-size:2.4rem;
  font-weight:900;
  color:#c8102e;
  text-align:center;
  margin:16px 0 26px;
}

/* ===== Scene rows ===== */
.scene-row{
  display:grid;
  grid-template-columns: 88px 1fr;
  gap:16px;
  align-items:center;
  padding:14px 14px;
  margin-bottom:12px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:14px;
  text-decoration:none;
  color:#ddd;
  transition:transform .16s ease, border-color .16s ease, background .16s ease;
}

.scene-row:hover{
  transform:translateY(-2px);
  background:rgba(200,16,46,0.12);
  border-color:rgba(200,16,46,0.45);
  color:#fff;
}

/* Thumbnail */
.scene-row-thumb{
  width:88px;
  height:132px;
  object-fit:cover;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.12);
  background:#111;
}

/* Text block */
.scene-row-info{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.scene-row-title{
  font-size:1.05rem;
  font-weight:800;
  line-height:1.25;
}

.scene-row-stars{
  font-size:.92rem;
  color:#bdbdbd;
}

/* CTA */
.scene-row-cta{
  margin-top:6px;
  display:inline-block;
  font-size:.9rem;
  font-weight:900;
  color:#c8102e;
}
.scene-row:hover .scene-row-cta{
  color:#fff;
}


/* =========================================================
   SCENE GALLERY — SKIN PATCH (gallery-scene.php)
   Paste at VERY BOTTOM of global.css
   ========================================================= */

/* Ensure base vibe for this page */
body{
  background:#000;
  color:#e6e6e6;
}

/* Header image centered + clean */
.index-hero{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  background:#000;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.index-banner{
  width:100%;
  max-width:1200px;
  height:auto;
  display:block;
}

/* Nav bar: centered, consistent */
.nav-strip{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  padding:14px 12px;
  background:#0b0b0b;
  border-bottom:1px solid rgba(255,255,255,0.08);
  flex-wrap:wrap;
}
.nav-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:999px;
  background:#111;
  border:1px solid rgba(255,255,255,0.12);
  color:#c8102e;
  font-weight:800;
  text-decoration:none;
  transition:transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.nav-btn:hover{
  background:#c8102e;
  color:#fff;
  border-color:rgba(200,16,46,0.6);
  transform:translateY(-2px);
}

/* === Main scene layout === */
.scene-hero{
  max-width:1180px;
  margin:0 auto;
  padding:28px 16px 44px;
  display:grid;
  grid-template-columns: 340px 1fr;
  gap:28px;
  align-items:start;
}

@media (max-width: 980px){
  .scene-hero{
    grid-template-columns: 1fr;
    gap:18px;
  }
}

/* Title (your template uses utility-like classes) */
.text-4xl{
  font-size:2.2rem;
  line-height:1.15;
  letter-spacing:-0.3px;
}
.font-black{ font-weight:900; }
.text-red-600{ color:#c8102e; }
.mb-8{ margin-bottom:18px; }

/* === Cover flip block (reuse your existing classes) === */
.scene-cover{
  width:100%;
  max-width:340px;
}
@media (max-width: 980px){
  .scene-cover{ max-width:260px; }
}

.scene-cover .cover-flip{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  background:#070707;
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:0 18px 44px rgba(0,0,0,0.75);
}

.scene-cover .cover-flip img{
  width:100%;
  display:block;
  aspect-ratio:2/3;
  object-fit:cover;
}

.scene-cover .cover-back{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .35s ease;
}

.scene-cover .cover-flip:hover .cover-back{
  opacity:1;
}

/* === Thumbs grid: true thumbs (5x5 desktop vibe, responsive down) === */
.thumbs-grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:10px;
  align-items:start;
}

@media (max-width: 1180px){
  .thumbs-grid{ grid-template-columns:repeat(4, minmax(0,1fr)); }
}
@media (max-width: 900px){
  .thumbs-grid{ grid-template-columns:repeat(3, minmax(0,1fr)); }
}
@media (max-width: 520px){
  .thumbs-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}

/* thumb tile */
.thumb-wrapper{
  border-radius:12px;
  overflow:hidden;
  background:#060606;
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:0 10px 20px rgba(0,0,0,0.6);
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.thumb-wrapper:hover{
  transform:translateY(-4px);
  border-color:rgba(200,16,46,0.55);
  box-shadow:0 18px 34px rgba(200,16,46,0.18);
}

/* Actual image thumb */
.thumb{
  width:100%;
  display:block;
  aspect-ratio: 2 / 3;
  object-fit:cover;
  cursor:pointer;
  filter:saturate(1.05) contrast(1.05);
}

/* === CTA buttons === */
.scene-cta{
  margin-top:20px;
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-start;
  gap:12px;
}

@media (max-width: 980px){
  .scene-cta{ justify-content:center; }
}

.scene-cta a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 18px;
  min-width:160px;
  border-radius:999px;
  background:#111;
  border:1px solid rgba(255,255,255,0.12);
  color:#c8102e;
  font-weight:900;
  text-decoration:none;
  transition:transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.scene-cta a:hover{
  background:#c8102e;
  color:#fff;
  border-color:rgba(200,16,46,0.6);
  transform:translateY(-2px);
  box-shadow:0 16px 28px rgba(200,16,46,0.22);
}

/* === Lightbox === */
.scene-lightbox{
  position:fixed;
  inset:0;
  display:none;
  place-items:center;
  background:rgba(0,0,0,0.92);
  z-index:9999;
  padding:18px;
}
.scene-lightbox.active{
  display:grid;
}

.scene-lightbox img{
  max-width:min(1100px, 96vw);
  max-height:90vh;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:0 22px 70px rgba(0,0,0,0.85);
}

.scene-lightbox .close{
  position:absolute;
  top:14px;
  right:18px;
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#111;
  border:1px solid rgba(255,255,255,0.12);
  color:#fff;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  user-select:none;
  transition:transform .15s ease, background .2s ease, border-color .2s ease;
}
.scene-lightbox .close:hover{
  background:#c8102e;
  border-color:rgba(200,16,46,0.6);
  transform:scale(1.06);
}

/* =========================================================
   XXX SEX CLIPS – MOVIE PAGE SKIN (gallery-movie.php)
   Paste at VERY BOTTOM of global.css
   ========================================================= */

/* page base */
body{
  background:#000;
  color:#e6e6e6;
}

/* center + constrain hero banner */
.index-hero{
  display:flex;
  justify-content:center;
  background:#000;
}
.index-banner{
  display:block;
  max-width:1200px;
  width:100%;
  height:auto;
}

/* container tighten */
.container{
  max-width:1200px;
  margin:0 auto;
  padding:24px 16px 44px;
}

/* title */
.movie-title-main{
  margin:18px 0 22px;
  text-align:center;
  font-weight:900;
  font-size:2.4rem;
  color:#c8102e;
  letter-spacing:.2px;
}

/* hero layout */
.movie-hero{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:26px;
  align-items:start;
  margin-bottom:26px;
}

@media (max-width: 980px){
  .movie-hero{
    grid-template-columns: 1fr;
  }
}

/* cover column (slightly smaller than before) */
.cover-column{
  max-width:320px;
}

@media (max-width:980px){
  .cover-column{
    max-width:420px;
    margin:0 auto;
  }
}

/* cover flip */
.cover-flip{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.10);
  background:#0b0b0b;
  box-shadow:0 18px 38px rgba(0,0,0,0.7);
}
.cover-flip img{
  width:100%;
  display:block;
  aspect-ratio: 2 / 3;
  object-fit:cover;
}
.cover-back{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .35s ease;
}
.cover-flip:hover .cover-back{ opacity:1; }

/* CTA buttons under cover */
.theater-buttons{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:14px;
}

.btn-theater{
  display:block;
  width:100%;
  text-align:center;
  padding:12px 14px;
  border-radius:999px;
  font-weight:900;
  letter-spacing:.2px;
  text-decoration:none;
  background:#111;
  border:1px solid rgba(255,255,255,0.12);
  color:#c8102e;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn-theater:hover{
  transform: translateY(-2px);
  background:#c8102e;
  color:#fff;
  border-color: rgba(200,16,46,0.55);
}

/* meta strip */
.meta-strip{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:14px;
}
.meta-strip span{
  padding:10px 12px;
  border-radius:12px;
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.10);
  color:#e6e6e6;
  font-weight:800;
}

/* description */
.hidden{ display:none !important; }

.desc-box{
  margin-top:10px;
  border-radius:14px;
  padding:14px 14px;
  background: rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.10);
  color:#e6e6e6;
}
.desc-toggle{
  margin-top:10px;
  display:inline-block;
  cursor:pointer;
  font-weight:900;
  color:#fff;
  text-decoration:none;
}
.desc-toggle:hover{
  color:#c8102e;
  text-decoration:underline;
}

/* section headers */
.section-title{
  margin:26px 0 12px;
  font-size:1.6rem;
  font-weight:900;
  color:#c8102e;
}

/* tags */
.tag-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.tag-list a{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.10);
  color:#e6e6e6;
  text-decoration:none;
  font-weight:800;
  transition: background .18s ease, border-color .18s ease, transform .18s ease, color .18s ease;
}
.tag-list a:hover{
  background: rgba(200,16,46,0.14);
  border-color: rgba(200,16,46,0.45);
  color:#fff;
  transform: translateY(-1px);
}

/* scenes list: make it look like a modern grid of links */
.scene-list{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
}
@media (max-width: 720px){
  .scene-list{ grid-template-columns: 1fr; }
}

.scene-row{
  padding:12px 14px;
  border-radius:14px;
  background: rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.10);
  color:#cfcfcf;
}
.scene-row a{
  color:#fff;
  font-weight:900;
  text-decoration:none;
}
.scene-row:hover{
  border-color: rgba(200,16,46,0.45);
  background: rgba(200,16,46,0.10);
}
.scene-row a:hover{
  color:#c8102e;
  text-decoration:underline;
}

/* =========================================================
   STAR PROFILE PAGE PATCH (gallery-star)
   Paste at VERY BOTTOM of global.css
   ========================================================= */

/* page title (name above everything) */
.star-page-title{
  max-width: 1200px;
  margin: 18px auto 18px;
  padding: 0 16px;
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  color: #c8102e;
  text-shadow: 0 0 12px rgba(200,16,46,0.25);
}

/* main hero layout */
.star-hero{
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 16px 22px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 28px;
  align-items: start;
}

/* responsive stack */
@media (max-width: 980px){
  .star-hero{
    grid-template-columns: 1fr;
  }
  .star-page-title{
    font-size: 2.2rem;
  }
}

/* bigger profile photo */
.profile-wrapper{
  width: 100%;
}
.profile-photo{
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 22px 44px rgba(0,0,0,0.70);
  background: #0f0f0f;
}

/* if no photo */
.no-photo-placeholder{
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 28px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: #bbb;
  text-align: center;
}

/* details column */
.star-details{
  min-width: 0;
}

/* stats grid (dark cards, readable) */
.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

@media (max-width: 980px){
  .stats-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.stat-item{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 12px 12px;
  color: #e6e6e6;
}

.stat-item span:first-child{
  display: block;
  font-size: 0.85rem;
  color: #b8b8b8;
  margin-bottom: 4px;
  letter-spacing: 0.2px;
}

.stat-item span:last-child{
  display: block;
  font-weight: 800;
  color: #fff;
}

/* bio */
.bio-section{
  margin-top: 16px;
  padding: 16px 16px;
  border-radius: 14px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.10);
  color: #e6e6e6;
  line-height: 1.55;
}

/* keep your movies section spacing looking intentional */
.movies-section{
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px 46px;
}

/* ===================== GLOBAL BASE ===================== */

html, body {
  background: #0b0614 !important;
  color: #e9ddff;
}

/* ===================== HEADER ===================== */

.index-hero{
  background: radial-gradient(circle at top, #1b0f2e, #0b0614);
  border-bottom: 1px solid rgba(178,107,255,0.25);
}

.index-banner{
  filter: drop-shadow(0 0 20px rgba(178,107,255,0.25));
}

/* ===================== TITLES ===================== */

.index-title,
.movie-title,
.movie-title-main,
.section-title,
.cat-title,
.star-page-title{
  color: #b26bff !important;
  text-shadow: 0 0 12px rgba(178,107,255,0.35);
}

/* ===================== NAV BAR ===================== */

.nav-strip{
  background: linear-gradient(180deg, #140a22, #0b0614);
  border-bottom: 1px solid rgba(178,107,255,0.25);
}

.nav-btn{
  background: #1b0f2e;
  border: 1px solid rgba(178,107,255,0.35);
  color: #b26bff;
}

.nav-btn:hover{
  background: #b26bff;
  color: #0b0614;
  box-shadow: 0 0 20px rgba(178,107,255,0.6);
}

/* ===================== CARDS / BOXES ===================== */

.movie-block,
.scene-line,
.cat-card,
.movie-card,
.desc-box,
.meta-strip span,
.stat-item,
.scene-row,
.thumb-wrapper{
  background: linear-gradient(145deg, #1b0f2e, #12081f) !important;
  border: 1px solid rgba(178,107,255,0.35) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,0.7);
  color: #e9ddff !important;
}

.movie-block:hover,
.scene-line:hover,
.movie-card:hover,
.thumb-wrapper:hover{
  border-color: #e1b3ff !important;
  box-shadow: 0 0 28px rgba(178,107,255,0.45);
}

/* ===================== LINKS ===================== */

a{
  color: #b26bff;
}

a:hover{
  color: #e1b3ff;
}

/* ===================== BUTTONS ===================== */

.btn-theater,
.scene-cta a,
.page-link{
  background: #1b0f2e;
  border: 1px solid rgba(178,107,255,0.4);
  color: #b26bff;
}

.btn-theater:hover,
.scene-cta a:hover,
.page-link:hover{
  background: #b26bff;
  color: #0b0614;
  box-shadow: 0 0 20px rgba(178,107,255,0.6);
}

/* ===================== SCENE HOVERS ===================== */

.scene-line:hover{
  background: linear-gradient(145deg, rgba(178,107,255,0.25), rgba(90,40,160,0.35)) !important;
  border-color: #e1b3ff !important;
}

/* ===================== LIGHTBOX ===================== */

.scene-lightbox{
  background: radial-gradient(circle, rgba(30,12,60,0.95), rgba(10,4,20,0.98));
}

.scene-lightbox img{
  border: 1px solid rgba(178,107,255,0.45);
  box-shadow: 0 0 60px rgba(178,107,255,0.45);
}

.scene-lightbox .close{
  background: #1b0f2e;
  border: 1px solid rgba(178,107,255,0.45);
}

.scene-lightbox .close:hover{
  background: #b26bff;
  color: #0b0614;
  box-shadow: 0 0 18px rgba(178,107,255,0.8);
}

/* ===================== TAG PILLS ===================== */

.tag-list a{
  background: #140a22;
  border: 1px solid rgba(178,107,255,0.35);
  color: #e9ddff;
}

.tag-list a:hover{
  background: rgba(178,107,255,0.25);
  color: #ffffff;
  box-shadow: 0 0 14px rgba(178,107,255,0.5);
}

/* ===================== PROFILE IMAGE ===================== */

.profile-photo{
  border: 1px solid rgba(178,107,255,0.45);
  box-shadow: 0 0 30px rgba(178,107,255,0.35);
}

/* ===================== BIO PANEL ===================== */

.bio-section{
  background: linear-gradient(145deg, #140a22, #0f071a);
  border: 1px solid rgba(178,107,255,0.35);
}

/* ===================== SCENE THUMBS ===================== */

.thumb{
  filter: saturate(1.1) contrast(1.1);
}

.thumb-wrapper:hover{
  box-shadow: 0 0 26px rgba(178,107,255,0.6);
}

