:root{
  --bg: #0b0c10;
  --panel: #11131a;
  --text: #e8eaf0;
  --muted: #a7adbd;
  --brand: #d1006c;
  --brand2:#ff2d88;
  --border: rgba(255,255,255,.10);
  --shadow: 0 18px 55px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 14px;
  --gap: 16px;
  --max: 1200px;
  --stickyTop: 18px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";

  /* Type scale (RIGHT side is intentionally bigger) */
  --right-body: 17px;
  --right-line: 1.75;
  --right-head: 16px;
  --right-sub: 14px;
  --h1: 42px;

  /* Card height helper */
  --girl-card-h: 360px;
}

.girlMedia{
  height: var(--girl-card-h);
}


*{ box-sizing:border-box; }

html, body{
  height: 100%;
  margin: 0;
  padding: 0;

  /* prevents any white “canvas” showing through */
  background: #0b0c10;
}

body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  overflow-x: hidden;

  /* your original background, document-top anchored */
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(209,0,108,.35), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(255,45,136,.18), transparent 55%),
    linear-gradient(180deg, #07070b, #0b0c10 35%, #0b0c10 100%);

  /* IMPORTANT: do NOT add background-attachment: fixed; */
}




.wrap{ max-width: var(--max); margin: 0 auto; padding: 0px /* was 18px */; }
@media (max-width: 520px){
  .wrap{ padding-left: 14px; padding-right: 14px; }
}

/* Top bar */
.topbar{
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  border-radius: 16px;
  padding: 14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  box-shadow: var(--shadow);

  position: sticky;
  top: 12px;
  z-index: 9999;
}

.brand{ display:flex; align-items:center; gap: 10px; font-weight: 900; letter-spacing: .2px; font-size:22px; }
.logo{
  width: 26px; height: 26px; border-radius: 9px;
  background: rgba(255,255,255,.22);
  display:grid; place-items:center;
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
}
.burger{
  width: 40px; height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.30);
  background: rgba(255,255,255,.14);
  color: white;
  display:grid; place-items:center;
  cursor:pointer;
}

/* Layout
   KEY FIX:
   - grid on desktop
   - do not set overflow or fixed heights here (keeps one unified page scroll)
*/
.layout{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  align-items: start;
  overflow: visible;
}
@media (min-width: 992px){
  .layout{
    grid-template-columns: 520px 1fr;
    gap: 32px;
  }
  .leftSticky{
    position: sticky;
    /* 12px topbar sticky + its height-ish; keep your original intent */
    top: calc(var(--stickyTop) + 64px);
    align-self: start;
  }
}

/* Left media */
.mediaCard{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* MAIN MEDIA */
.mainMedia{
  position: relative;
  background: #0c0d12;
  overflow:hidden;
  height: 760px;
}
@media (max-width: 900px){
  .mainMedia{ height: 520px; }
}
@media (max-width: 520px){
  .mainMedia{ height: 460px; }
}

.mainMedia img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  display:block;
  transform: scale(1.01);
  cursor: zoom-in;
}

/* Overlay */
.overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(0deg, rgba(0,0,0,.74) 0%, rgba(0,0,0,.12) 85%, rgba(0,0,0,.05) 100%);
  display:flex;
  align-items:flex-end;
  padding: 20px;
}
@media (max-width: 520px){
  .overlay{ padding: 16px; }
}

.overlayGrid{
  width:100%;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  font-size: 15px;
  line-height: 1.32;
}
@media (max-width: 520px){
  .overlayGrid{
    gap: 8px 14px;
    font-size: 14.5px;
  }
}

.k{ color: rgba(255,255,255,.80); font-weight: 900; }
.v{ color: rgba(255,255,255,.96); font-weight: 700; }

.badgeRow{ position:absolute; top: 12px; left: 12px; display:flex; gap: 8px; z-index:2; }
.badge{
  display:flex; align-items:center; gap: 6px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.16);
  color: white;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  backdrop-filter: blur(10px);
}
.dot{
  width: 10px; height: 10px; border-radius:999px;
  background: #34c759;
  box-shadow: 0 0 0 3px rgba(52,199,89,.15);
}
.timeTag{
  position:absolute; top: 12px; right: 12px;
  display:flex; align-items:center; gap: 8px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  backdrop-filter: blur(10px);
}

/* Video card */
.videoCard{
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.12);
  padding: 12px;
  display:grid;
  gap: 10px;
}
.videoShell{
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background:#0c0d12;
  position: relative;
}
.videoShell video{
  width: 100%;
  height: auto;
  display:block;
  background:#0c0d12;
}
.videoOverlayBtn{
  position:absolute;
  inset:auto 12px 12px 12px;
  display:flex;
  justify-content:space-between;
  gap: 10px;
}
.videoTag{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.30);
  backdrop-filter: blur(10px);
  font-size: 12px;
  color: rgba(255,255,255,.92);
}
.videoOpen{
  cursor:pointer;
  border: 0;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 900;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.95);
}

.thumbs{
  padding: 12px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: rgba(0,0,0,.12);
  border-top: 1px solid rgba(255,255,255,.08);
}
.thumb{
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background:#0c0d12;
  cursor:pointer;
  aspect-ratio: 1/1;
  padding:0;
}
.thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transition: transform .18s ease;
}
.thumb:hover img{ transform: scale(1.05); }
.thumb:focus-visible{ outline: 2px solid rgba(255,45,136,.75); outline-offset: 2px; }

/* Right panel
   KEY FIX:
   - do NOT clip overflow on the right card; it can create odd scroll/paint behaviour
   - keep overflow visible so it participates in the normal document scroll
*/
.detailsCard{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: visible; /* was hidden */
}
.detailsInner{
  padding: 16px;
  overflow: visible;
  height: auto;
}

.headline{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.title h1{
  font-size: var(--h1);
  margin: 0 0 8px 0;
  letter-spacing: .2px;
}
.sub{
  color: var(--muted);
  font-size: 15px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.20);
  color: rgba(255,255,255,.90);
  font-size: 14px;
  font-weight: 800;
}

.ctaRow{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  justify-content:flex-end;
  align-items:center;
}

/* Buttons */
.btn{
  border: 0;
  cursor:pointer;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 15px;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  box-shadow: 0 10px 22px rgba(0,0,0,.35);
  user-select:none;
  text-decoration:none;
}
.btnPrimary{
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: white;
}
.btnGhost{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  box-shadow: none;
}
.btnSmall{
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: none;
}
.btn:active{ transform: scale(.99); }

/* Blocks */
.blocks{ margin-top: 16px; display: grid; gap: 14px; }
.block{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(0,0,0,.14);
  overflow:hidden;
}
.block[data-enabled="0"]{ display:none; }

.blockHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}
.blockTitle{ display:flex; align-items:center; gap: 12px; min-width: 0; }
.blockIcon{
  width: 40px; height: 40px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  flex: 0 0 40px;
  font-size: 18px;
}
.blockTitleText{ display:flex; flex-direction:column; gap: 3px; min-width: 0; }
.blockTitleText strong{
  font-size: 16px;
  letter-spacing: .25px;
  color: rgba(255,255,255,.95);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.blockTitleText span{
  font-size: 14px;
  color: rgba(255,255,255,.70);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.blockTools{
  display:flex;
  gap: 8px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}

/* RIGHT side body copy */
.blockBody{
  padding: 14px;
  color: rgba(255,255,255,.90);
  font-size: var(--right-body);
  line-height: var(--right-line);
}
.blockBody p{ font-size: 22px; }

/* Helpers */
.muted{ color: var(--muted); }
.metaLabel{ font-size: 14px; font-weight: 800; letter-spacing:.15px; }
.bigLine{ font-size: 18px; }
.smallNote{ font-size: 13px; line-height: 1.45; }

.grid2{ display:grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 720px){ .grid2{ grid-template-columns: 1fr 1fr; } }

/* Checklist */
.checklist{ display:grid; gap: 12px; margin:0; padding:0; list-style:none; }
.checklist li{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  color: rgba(255,255,255,.92);
  font-size: 17px;
  line-height: 1.35;
}
.tick{
  width: 22px; height: 22px;
  border-radius: 9px;
  background: rgba(52,199,89,.18);
  border: 1px solid rgba(52,199,89,.35);
  display:grid; place-items:center;
  flex: 0 0 22px;
  margin-top: 2px;
}
.tick svg{ width: 14px; height: 14px; fill: #34c759; }

/* Forms */
.fieldRow{ display:grid; gap: 12px; grid-template-columns: 1fr; margin-top: 12px; }
@media (min-width: 720px){ .fieldRow.two{ grid-template-columns: 1fr 1fr; } }
.input, .textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.94);
  padding: 12px 12px;
  font-size: 16px;
  outline:none;
}
.textarea{ min-height: 130px; resize: vertical; }

/* Map placeholder */
.map{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(900px 400px at 30% 20%, rgba(255,45,136,.18), transparent 60%),
    radial-gradient(700px 420px at 80% 60%, rgba(209,0,108,.22), transparent 55%),
    rgba(0,0,0,.18);
  height: 240px;
  display:grid;
  place-items:center;
  color: rgba(255,255,255,.80);
  font-weight: 900;
  letter-spacing: .2px;
}

/* Reviews cards */
.reviewList{ display:grid; gap: 12px; margin-bottom: 16px; }
.reviewCard{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.16);
  padding: 12px;
}
.reviewTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.reviewName{ font-weight: 900; font-size: 15px; }
.reviewMeta{ font-size: 13px; color: rgba(255,255,255,.65); margin-top: 2px; }
.reviewStars{ font-weight: 900; color: rgba(255,255,255,.85); font-size: 14px; }
.reviewText{ margin:0; font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.92); }

.reviewsFooter{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.reviewsFooter .btn{ min-width: 160px; }

@media (max-width: 520px){
  .reviewsFooter{ gap: 10px; }
  .reviewsFooter .btn{
    width: 100%;
    justify-content: center;
  }
}

/* Collapsible */
.blockCollapsible[data-collapsed="1"] .collapsibleBody{ display:none; }

/* Dev list */
.devList{ display:grid; gap: 10px; }
.devRowItem{
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items:center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.12);
  padding: 10px 10px;
}
.devLeft{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width:0;
}
.devLeft label{
  display:flex;
  align-items:center;
  gap: 10px;
  cursor:pointer;
  user-select:none;
  font-weight: 900;
  color: rgba(255,255,255,.90);
  min-width:0;
}
.devLeft input{ accent-color: var(--brand2); }
.devLeft .devId{
  color: rgba(255,255,255,.70);
  font-weight: 800;
  font-size: 13px;
}
.devRight{
  display:flex;
  gap: 8px;
  align-items:center;
}
.devBtn{
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  cursor:pointer;
}
.devBtn:active{ transform: scale(.99); }

/* =========================
   LIGHTBOX (Full Window Mode)
   ========================= */
.lb {
  position: fixed;
  inset: 0;
  background: #000; /* Solid black for immersion */
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 0 !important; /* No padding */
}

.lb.open { display: flex; }

.lbPanel {
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  max-height: none !important;
  border-radius: 0 !important;
  background: #000;
  border: none;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.lbTop {
  flex: 0 0 auto; /* Keep header fixed height */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(20, 20, 20, 0.95);
  z-index: 10;
}

.lbTitle {
  font-size: 14px;
  color: rgba(255,255,255,.90);
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 900;
}

.lbTopBtns { display: flex; gap: 8px; align-items: center; }

.lbBody {
  flex: 1; /* Take all remaining vertical space */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.lbMedia {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: #000;
  object-fit: contain; /* Ensures no stretching */
}

video.lbMedia { width: 100%; height: 100%; }

.lbBtn {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  border-radius: 12px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 900;
  font-size: 13px;
  transition: 0.2s;
}
.lbBtn:hover { background: rgba(255,255,255,.2); }
/* =========================================================
   Mobile-first: block action buttons as a footer row
   ========================================================= */

.blockHead{
  flex-wrap: wrap;
  align-items: flex-start;
}

.blockHead .blockTools{
  width: 100%;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid;
  gap: 10px;
  justify-content: stretch;
}

.blockHead .blockTools .btn,
.blockHead .blockTools a.btn{
  width: 100%;
  justify-content: center;
  white-space: normal;
  text-align: center;
  line-height: 1.15;
  padding: 12px 14px;
}

@media (min-width: 420px){
  .blockHead .blockTools{
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px){
  .blockHead{
    flex-wrap: nowrap;
    align-items: center;
  }

  .blockHead .blockTools{
    width: auto;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
  }

  .blockHead .blockTools .btn,
  .blockHead .blockTools a.btn{
    width: auto;
    white-space: nowrap;
    padding: 8px 12px;
  }
}

/* Headline CTA row mobile behaviour */
@media (max-width: 520px){
  .headline{
    flex-direction: column;
    align-items: stretch;
  }
  .headline .ctaRow{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .headline .ctaRow .btn{
    width: 100%;
    justify-content: center;
  }
}
@media (min-width: 420px){
  @media (max-width: 520px){
    .headline .ctaRow{
      grid-template-columns: 1fr 1fr;
    }
  }
}

/* =========================================================
   SERVICES UI MODULE
   ========================================================= */

.servicesUI{
  --svc-accent: #ff2f87;
  --svc-border: rgba(255,255,255,.10);
  --svc-bg: rgba(0,0,0,.14);
  --svc-track: rgba(255,255,255,.08);
  --svc-thumb: rgba(255,47,135,.55);
  --svc-thumb-hover: rgba(255,47,135,.85);
}

.servicesUI .servicesFilterPanel,
.servicesUI .servicesFilterPanel *{
  scrollbar-width: thin;
  scrollbar-color: var(--svc-thumb) var(--svc-track);
}
.servicesUI .servicesFilterPanel ::-webkit-scrollbar{ width: 10px; height: 10px; }
.servicesUI .servicesFilterPanel ::-webkit-scrollbar-track{
  background: var(--svc-track);
  border-radius: 999px;
}
.servicesUI .servicesFilterPanel ::-webkit-scrollbar-thumb{
  background: var(--svc-thumb);
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,.25);
}
.servicesUI .servicesFilterPanel ::-webkit-scrollbar-thumb:hover{
  background: var(--svc-thumb-hover);
}

.servicesUI .servicesFilterPanel input[type="checkbox"]{
  width: 18px;
  height: 18px;
  accent-color: var(--svc-accent);
}

.servicesUI .servicesFilterPanel{
  border: 1px solid var(--svc-border);
  background: var(--svc-bg);
}

/* =========================================================
   ROTA block styling
   ========================================================= */

.rotaMeta{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:15px;
}

.rotaHint p {font-size: 12px; margin-top: 12px;}
.rotaToday{
  display:flex;
  align-items:baseline;
  gap:10px;
}
.rotaBadge{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  font-weight: 900;
}
.rotaBadge.isYes{
  border-color: rgba(60, 220, 120, .35);
  background: rgba(60, 220, 120, .12);
}
.rotaBadge.isNo{
  border-color: rgba(255, 90, 110, .35);
  background: rgba(255, 90, 110, .10);
}
.rotaGrid{
  display:grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap:10px;
}
.rotaCell{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
  border-radius:14px;
  padding:12px 10px;
  text-align:center;
  display:flex;
  flex-direction:column;
  gap:8px;
  min-height:64px;
}
.rotaDay{
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  opacity:.8;
}
.rotaMark{
  font-size:16px;
  font-weight:700;
  line-height:1;
  display:inline-flex;
  justify-content:center;
}
.rotaMark.isYes{ color: rgba(70, 230, 140, 1); }
.rotaMark.isNo{ color: rgba(255, 100, 120, 1); }
.rotaCell.isToday{
  border-color: rgba(255, 47, 135, .35);
  box-shadow: 0 0 0 1px rgba(255, 47, 135, .18) inset;
}
.rotaSub{
  margin-top:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
  border-radius:14px;
  padding:12px;
}
.rotaSubInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.rotaSubActions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
@media (max-width: 520px){
  .rotaMeta{ flex-direction:column; }
  .rotaGrid{
    grid-template-columns: repeat(7, 72px);
    overflow:auto;
    padding-bottom:6px;
  }
}

/* Featured 4-card row */
.featuredBlock{ margin-top: 50px; }
.featured4Grid{
  margin-top: 14px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px){
  .featured4Grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px){
  .featured4Grid{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.filterRow{
  display:grid;
  gap:10px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

/* Sticky wrapper helper */
.topbarSticky{
  position: sticky;
  top: 10px;
  z-index: 50;
  pointer-events: none;
}
.topbarSticky .topbar{
  pointer-events: auto;
}

/* Recruitment card styling */
.girlCard.recruitCard .girlMedia img{
  opacity: .45;
  filter: saturate(.85) contrast(1.05);
}
.recruitStamp{
  position:absolute;
  inset: 16px;
  border-radius: 16px;
  border: 1px dashed rgba(255,47,135,.45);
  background: rgba(0,0,0,.12);
  display:grid;
  place-items:center;
  text-align:center;
  padding: 12px;
  pointer-events:none;
}
.recruitStamp strong{
  font-size: 22px;
  letter-spacing:.2px;
}
.recruitStamp span{
  margin-top: 6px;
  font-weight: 900;
  color: rgba(255,255,255,.78);
}

/* FULL-WIDTH footer */
.pageFooterFull{
  width:100%;
  margin-top: 22px;
  border-top: 1px solid rgba(255,255,255,.10);

  /* solid footer so the pink glow behind never shows as a band */
  background: #0b0c10;

  position: relative;
  z-index: 2;
}


.pageFooterInner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px;
}
.footerCols{
  display:grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px){
  .footerCols{ grid-template-columns: 1.2fr 1fr 1fr; }
}
.footerTitle{ font-weight: 900; letter-spacing: .2px; font-size: 15px; }
.footerLink{
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-weight: 800;
  display:inline-block;
  margin-top: 8px;
}
.footerLink:hover{ text-decoration: underline; }
.finePrint{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.65);
  font-size: 13px;
}


@media (min-width: 992px){
  .layout{
    grid-template-columns: 520px 1fr;
    align-items: start;
  }

  .leftSticky{
    position: sticky;
    top: calc(var(--stickyTop) + 64px);
    align-self: start;
  }

  /* RIGHT column: make it sticky too (NO internal scrolling) */
  .layout > section:last-child{
    position: sticky;
    top: calc(var(--stickyTop) + 64px);
    align-self: start;
  }
}


/* --- Seamless Edge-to-Edge Video Layout --- */
.fullWidthVideo {
  padding: 0 !important;
  margin: 0 !important;
  background: #000 !important;
  border: none !important;
  /* STOPS THE ROUNDING: Top is flat, bottom is rounded to finish the card */
  border-radius: 0 0 16px 16px !important; 
  overflow: hidden;
}

/* Base Style: Desktop Portrait */
.videoShell {
  position: relative;
  width: 100%;
  background: #000;
  cursor: pointer;
  height: 760px; /* Explicit desktop height */
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 !important; /* Forces top edges to stay sharp */
}

.videoShell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Premium Glass-Style Badges */
.videoBadges {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.videoBadges .badge {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  width: fit-content;
}

/* MOBILE FIX: Start collapsed via CSS to prevent jerky resizing */
@media (max-width: 520px) {
  .videoShell {
    height: 200px; /* Initial state on mobile */
  }
  
  /* When JS adds .isExpanded, it grows */
  .videoShell.isExpanded {
    height: 480px;
  }
}

/* Centered Play Button */
.videoShell::after {
  content: "▶";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  color: white;
  display: grid;
  place-items: center;
  font-size: 26px;
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.3s;
}

.videoShell.isPlaying::after {
  opacity: 0;
}


@media (max-width: 520px) {
.btnBacktoGirls {display: none;}
.girlTopSpace {display: none;}
}

.girlTopSpace {padding: 20px 0 10px 0;}


/* Stats Grid Styles */
.statsGrid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columns on mobile by default */
  gap: 16px 24px;
  margin: 0;
}

.statItem {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.statItem dt {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 800;
}

.statItem dd {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

/* Desktop override */
@media (min-width: 992px) {
  .statsGrid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
  }
}




/* Star Rating Widget */
.star-rating {
    direction: rtl; /* Allows filling from right to left */
    display: inline-flex;
}
.star-rating input {
    display: none;
}
.star-rating label {
    color: #444;
    font-size: 20px;
    padding: 0 2px;
    cursor: pointer;
    transition: color 0.2s;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #d1006c; /* Pink Highlight */
}

/* If you want to remove the toggle and show all, 
   just delete the #toggleStats button and the statsExtra div wrapper */