/* =========================================================
   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;
}

