:root{
  --bg:#ffffff;
  --surface:#ffffff;
  --surface-2:#f4f5f7;
  --border:#e3e5ea;
  --text:#181a20;
  --text-dim:#5b6270;
  --text-faint:#9096a3;
  --accent:#e0325a;
  --accent-2:#c9860a;
  --accent-text:#ffffff;
  --radius:10px;
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0; overflow-x:hidden; max-width:100%;}
body{
  background:var(--bg); color:var(--text);
  font-family:-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  font-size:14.5px; line-height:1.55;
}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
.mono{font-variant-numeric:tabular-nums;}

/* ---- App shell ---- */
.app-shell{display:flex; align-items:flex-start; min-height:calc(100vh - 57px); min-height:calc(100dvh - 57px);}

/* Mobile: the rail becomes a full-height off-canvas drawer (X.com-style),
   opened via the hamburger button in the topbar, closed via backdrop tap
   or its own close button. Hidden by default so it never eats layout width. */
@media (max-width:768px){
  .icon-rail{
    position:fixed !important; left:0; top:0; bottom:0; height:100vh; height:100dvh; width:78vw !important; max-width:300px;
    z-index:210; padding:16px 14px; align-items:stretch; background:var(--surface);
    box-shadow:0 0 40px rgba(0,0,0,.25); transform:translateX(-100%); transition:transform .22s ease;
    top:0 !important;
  }
  .icon-rail.mobile-open{ transform:translateX(0); }
  .icon-rail .rail-brand{ align-self:flex-start; width:auto; height:auto; padding:6px 0 12px; font-size:18px; border-radius:0; }
  .icon-rail .rail-toggle{ display:none; }
  .icon-rail .rail-link{ width:100% !important; height:auto !important; padding:12px; justify-content:flex-start; border-radius:8px; }
  .icon-rail .rail-text{ display:inline !important; font-size:15px; }
  .icon-rail .rail-sep{ width:100%; }
  .icon-rail .rail-banner{ width:100%; height:auto; min-height:64px; border-radius:10px; }
  .icon-rail .rail-banner .rail-text{ display:inline !important; }
  .rail-backdrop{
    display:none; position:fixed; inset:0; background:rgba(10,10,15,.5); z-index:200;
  }
  .rail-backdrop.show{ display:block; }
  .mobile-menu-btn{
    display:flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:50%;
    background:transparent; border:none; color:var(--text); cursor:pointer; flex-shrink:0;
  }
  .mobile-menu-btn:hover{ background:var(--surface-2); }
  .mobile-menu-btn svg{ width:21px; height:21px; }
  main.content{ padding:16px 12px 50px; }
}
@media (min-width:769px){ .mobile-menu-btn{ display:none; } }

/* Topbar */
.topbar{
  display:flex; align-items:center; gap:18px;
  padding:12px 24px; border-bottom:1px solid var(--border); background:var(--surface);
  position:sticky; top:0; z-index:30; box-shadow:0 1px 2px rgba(20,20,30,.04);
}
.topbar .brand{display:flex; align-items:center; gap:0; font-weight:800; font-size:17px; letter-spacing:-.02em; margin-right:6px; white-space:nowrap; flex-shrink:0;}
.topbar .brand .dot{color:var(--accent);}
.search-box{
  flex:1; max-width:520px; display:flex; align-items:center; gap:8px;
  background:var(--surface-2); border:1px solid var(--border); border-radius:100px; padding:8px 14px;
  color:var(--text-faint); font-size:13px;
}
.topbar-actions{ display:flex; align-items:center; gap:10px; margin-left:auto; flex-shrink:0; }
.btn{ border:none; border-radius:8px; padding:9px 16px; font-size:13.5px; font-weight:700; cursor:pointer; display:inline-flex; align-items:center; gap:6px; white-space:nowrap; }
.btn-accent{ background:var(--accent); color:#fff; }
.btn-ghost{ background:transparent; border:1px solid var(--border); color:var(--text); }
.btn-outline{ background:transparent; border:1px solid var(--accent); color:var(--accent); }
.btn-vip{ background:linear-gradient(135deg, var(--accent-2), var(--accent)); color:#fff; box-shadow:0 2px 8px -2px rgba(224,50,90,.5); }
.btn-email{
  background:var(--surface); color:var(--accent); border:1.5px dashed var(--accent);
  transition:background .15s ease, color .15s ease;
}
.btn-email:hover{ background:var(--accent); color:#fff; border-style:solid; }
.btn-email svg{ flex-shrink:0; }

/* Topbar responsive: search box shrinks/hides first, "Join Free" hides next,
   the VIP button and Sign In always stay visible so VIP Club is never lost. */
@media (max-width:820px){ .search-box{ display:none; } }
@media (max-width:640px){
  .btn-hide-sm{ display:none; }
  .topbar{ padding:10px 14px; gap:10px; }
  .topbar .brand{ font-size:15px; margin-right:0; }
  .btn-vip .btn-text{ display:none; }
  .btn-vip{ padding:9px 11px; }
}
@media (max-width:380px){
  .topbar-actions .btn-accent .btn-text{ display:inline; }
}

/* Sidebar */
.sidebar{
  background:var(--surface); border-right:1px solid var(--border); padding:18px 12px;
  display:flex; flex-direction:column; gap:4px; position:sticky; top:57px; align-self:start; height:calc(100vh - 57px); height:calc(100dvh - 57px); overflow-y:auto;
}
.side-link{
  display:flex; align-items:center; gap:11px; padding:10px 12px; border-radius:8px;
  color:var(--text-dim); font-size:13.8px; font-weight:600;
}
.side-link:hover{ background:var(--surface-2); color:var(--text); }
.side-link.active{ background:var(--surface-2); color:var(--text); box-shadow:inset 3px 0 0 var(--accent); }
.side-link svg{ width:17px; height:17px; opacity:.85; flex-shrink:0; }
.side-sep{ height:1px; background:var(--border); margin:10px 4px; }
.side-banner{
  border:1px dashed var(--border); border-radius:10px; min-height:90px; margin:4px 4px;
  display:flex; align-items:center; justify-content:center; color:var(--text-faint);
  font-size:11px; text-transform:uppercase; letter-spacing:.05em; background:var(--surface-2); text-align:center; padding:8px;
}
.side-label{ font-size:10.5px; text-transform:uppercase; letter-spacing:.07em; color:var(--text-faint); padding:12px 12px 4px; }

/* Main */
main.content{ flex:1 1 auto; min-width:0; padding:26px 30px 70px; max-width:1240px; margin:0 auto; width:100%; }
@media (max-width:900px){ main.content{ padding:20px 16px 60px; } }

/* Hero */
.hero{
  border-radius:16px; padding:40px 36px; margin-bottom:28px; position:relative; overflow:hidden;
  background:radial-gradient(120% 160% at 15% 0%, #fdeaf0 0%, #ffffff 55%), var(--surface);
  border:1px solid var(--border);
}
.hero-eyebrow{ font-size:11.5px; text-transform:uppercase; letter-spacing:.08em; color:var(--accent-2); font-weight:700; margin-bottom:10px; }
.hero h1{ font-size:32px; margin:0 0 10px; letter-spacing:-.02em; max-width:600px; }
.hero p{ color:var(--text-dim); max-width:480px; margin:0 0 20px; }

/* Section headers */
.section-head{ display:flex; align-items:baseline; justify-content:space-between; margin:34px 0 14px; }
.section-head h2{ font-size:17px; margin:0; }
.section-head a{ font-size:12.5px; color:var(--accent); font-weight:600; }

/* Scene grid / cards */
.grid{ display:grid; gap:16px; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); }
.scene-card{ background:var(--surface); border:1px solid var(--border); border-radius:12px; overflow:hidden; box-shadow:0 1px 2px rgba(20,20,30,.04); }
.scene-thumb{ aspect-ratio:16/9; position:relative; overflow:hidden; background:#000; }
.scene-thumb .media-video,
.scene-thumb .media-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.scene-thumb .dur{ position:absolute; right:8px; bottom:8px; background:rgba(0,0,0,.65); color:#fff; font-size:11px; padding:2px 6px; border-radius:5px; }
.scene-thumb .price{ position:absolute; left:8px; top:8px; background:var(--accent); color:#fff; font-size:11.5px; font-weight:700; padding:3px 8px; border-radius:100px; }
.scene-body{ padding:12px 14px; }
.scene-title{ font-size:13.8px; font-weight:700; margin:0 0 4px; }
.scene-meta{ font-size:12px; color:var(--text-faint); }

/* Vertical reels + ad rail */
.side-rail{ display:flex; flex-direction:column; gap:14px; }
.reel-card{ aspect-ratio:9/16; border-radius:12px; overflow:hidden; position:relative; border:1px solid var(--border); }
.reel-card .tag{ position:absolute; top:8px; left:8px; background:rgba(0,0,0,.6); color:#fff; font-size:10.5px; padding:2px 7px; border-radius:100px; }
.ad-slot{
  border:1px dashed var(--border); border-radius:12px; min-height:250px; display:flex; align-items:center; justify-content:center;
  color:var(--text-faint); font-size:11.5px; text-transform:uppercase; letter-spacing:.06em; background:var(--surface-2);
  overflow:hidden;
}
.ad-slot.has-image, .rr-ad-slot.has-image{ border-style:solid; padding:0; }
.ad-slot img, .rr-ad-slot img{ width:100%; height:100%; object-fit:cover; }
.reels-layout{ display:grid; grid-template-columns:1fr 300px; gap:24px; }
@media (max-width:1080px){ .reels-layout{ grid-template-columns:1fr; } }
.two-col-equal{ display:grid; grid-template-columns:1fr 1fr; gap:28px; }
@media (max-width:900px){ .two-col-equal{ grid-template-columns:1fr; gap:20px; } }
.reels-col{ display:grid; grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:14px; }

/* Model cards */
.model-card{ background:var(--surface); border:1px solid var(--border); border-radius:12px; overflow:hidden; text-align:center; box-shadow:0 1px 2px rgba(20,20,30,.04); }
.model-photo{ aspect-ratio:3/4; }
.model-body{ padding:12px; }
.model-name{ font-weight:700; font-size:13.5px; }
.model-meta{ font-size:11.5px; color:var(--text-faint); }

/* Gradient placeholders (no real assets yet) */
.ph-1{ background:linear-gradient(135deg,#3a0d1f,#e0325a); }
.ph-2{ background:linear-gradient(135deg,#0d2a3a,#20b5c4); }
.ph-3{ background:linear-gradient(135deg,#2a1f0d,#ffb020); }
.ph-4{ background:linear-gradient(135deg,#1a0d3a,#8b5cf6); }
.ph-5{ background:linear-gradient(135deg,#0d3a1f,#28a862); }

/* Forms */
.card{ background:var(--surface); border:1px solid var(--border); border-radius:14px; padding:26px; box-shadow:0 1px 2px rgba(20,20,30,.04); }
.field{ display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.field label{ font-size:12.5px; font-weight:700; color:var(--text-dim); }
.field .hint{ font-weight:400; color:var(--text-faint); }
.input,.textarea,.select{
  background:var(--surface-2); border:1px solid var(--border); border-radius:8px; padding:10px 12px;
  color:var(--text); font-size:13.8px; font-family:inherit; width:100%;
}
.textarea{ min-height:110px; resize:vertical; }
.error-text{ color:#f08a8a; font-size:12px; }
.status-banner{ padding:12px 16px; border-radius:8px; font-size:13px; margin-bottom:16px; }
.status-banner.ok{ background:#12291d; color:#5fd996; }
.status-banner.err{ background:#301414; color:#f08a8a; }

/* News */
.news-card{ display:grid; grid-template-columns:220px 1fr; gap:18px; background:var(--surface); border:1px solid var(--border); border-radius:12px; overflow:hidden; margin-bottom:16px; box-shadow:0 1px 2px rgba(20,20,30,.04); }
.news-card .thumb{ aspect-ratio:16/10; }
.news-card .body{ padding:16px 18px 16px 0; }
.news-date{ font-size:11.5px; color:var(--text-faint); }
@media (max-width:640px){ .news-card{ grid-template-columns:1fr; } .news-card .thumb{aspect-ratio:16/9;} .news-card .body{ padding:14px 16px 16px; } }

footer.site-footer{ border-top:1px solid var(--border); padding:26px 30px; color:var(--text-faint); font-size:12px; display:flex; gap:18px; flex-wrap:wrap; justify-content:space-between; }

/* ---- Feed shell (Home): minimized icon rail + center feed + right rail ---- */
.feed-shell{ display:flex; justify-content:center; align-items:flex-start; min-height:100vh; min-height:100dvh; }

.icon-rail{
  width:76px; flex-shrink:0; display:flex; flex-direction:column; align-items:center; gap:6px;
  padding:14px 0; position:sticky; top:57px; height:calc(100vh - 57px); height:calc(100dvh - 57px); overflow-y:auto; transition:width .18s ease;
}
.icon-rail .rail-brand{
  width:56px; height:44px; border-radius:100px; display:flex; align-items:center; justify-content:center;
  color:var(--accent); font-weight:900; font-size:12.5px; letter-spacing:-.02em; margin-bottom:6px; flex-shrink:0;
}
.icon-rail .rail-toggle{
  width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  color:var(--text-dim); background:transparent; border:none; cursor:pointer; margin-bottom:4px; flex-shrink:0;
}
.icon-rail .rail-toggle:hover{ background:var(--surface-2); color:var(--text); }
.icon-rail .rail-toggle svg{ width:19px; height:19px; }
.icon-rail .rail-link{
  width:48px; height:48px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  color:var(--text); position:relative; gap:12px; overflow:hidden;
}
.icon-rail .rail-link:hover{ background:var(--surface-2); }
.icon-rail .rail-link.active{ color:var(--accent); }
.icon-rail .rail-link svg{ width:23px; height:23px; flex-shrink:0; }
.icon-rail .rail-text{ display:none; font-size:14.5px; font-weight:600; white-space:nowrap; }
.icon-rail .rail-sep{ width:32px; height:1px; background:var(--border); margin:8px 0; }
.icon-rail .rail-spacer{ flex:1; }
.icon-rail .rail-avatar{
  width:38px; height:38px; border-radius:50%; background:var(--accent); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:700; margin-top:6px; flex-shrink:0;
}
.icon-rail .rail-banner{
  width:44px; height:44px; border-radius:10px; border:1px dashed var(--border); background:var(--surface-2);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; overflow:hidden; position:relative; color:var(--text);
}
.icon-rail .rail-banner img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.icon-rail .rail-banner .rail-text{ display:none; }
.icon-rail .rail-banner:not(:has(img))::before{ content:"Ad"; font-size:9px; text-transform:uppercase; letter-spacing:.04em; color:var(--text-faint); }
/* Expanded state: icon rail widens and shows text labels next to icons */
.icon-rail.expanded{ width:230px; align-items:stretch; padding:14px 10px; }
.icon-rail.expanded .rail-brand{ align-self:flex-start; margin-left:2px; }
.icon-rail.expanded .rail-toggle{ align-self:flex-start; margin-left:2px; }
.icon-rail.expanded .rail-link{ width:100%; height:auto; border-radius:8px; justify-content:flex-start; padding:10px 12px; }
.icon-rail.expanded .rail-text{ display:inline; }
.icon-rail.expanded .rail-sep{ width:100%; }
.icon-rail.expanded .rail-avatar{ align-self:flex-start; margin-left:2px; }
.icon-rail.expanded .rail-banner{ width:100%; height:auto; min-height:70px; border-radius:10px; align-items:flex-end; justify-content:flex-start; padding:8px; }
.icon-rail.expanded .rail-banner:not(:has(img))::before{ display:none; }
.icon-rail.expanded .rail-banner .rail-text{
  display:inline; position:relative; z-index:1; font-size:11px; text-transform:uppercase; letter-spacing:.05em;
  color:var(--text-faint); font-weight:700;
}
.icon-rail.expanded .rail-banner:has(img) .rail-text{ color:#fff; text-shadow:0 1px 3px rgba(0,0,0,.6); }
@media (max-width:1150px){ .right-rail{ display:none !important; } }

.feed-col{
  width:100%; min-width:0; max-width:600px; height:calc(100vh - 57px); height:calc(100dvh - 57px); border-left:1px solid var(--border); border-right:1px solid var(--border);
  display:flex; flex-direction:column; position:sticky; top:57px; overflow:hidden;
}
.feed-tabs{
  display:flex; flex-shrink:0; background:rgba(255,255,255,.88); backdrop-filter:blur(8px);
  border-bottom:1px solid var(--border); z-index:20; overflow-x:auto;
}
.feed-tab{ flex:1; text-align:center; padding:16px 14px; font-size:13.8px; font-weight:700; color:var(--text-faint); position:relative; white-space:nowrap; }
.feed-tab:hover{ background:var(--surface-2); }
.feed-tab.active{ color:var(--text); }
.feed-tab.active::after{ content:""; position:absolute; bottom:0; left:50%; transform:translateX(-50%); width:52px; height:3px; background:var(--accent); border-radius:3px; }

.feed-model-filter{ flex-shrink:0; padding:12px 16px; border-bottom:1px solid var(--border); }
.feed-model-filter select{
  width:100%; background:var(--surface-2); border:1px solid var(--border); border-radius:8px;
  padding:9px 12px; color:var(--text); font-size:13.5px; font-family:inherit;
}

/* TikTok-style vertical reel scroll: each reel fills the available viewport, no wasted whitespace, user-controlled scroll with snap */
.reel-scroll{ flex:1; overflow-y:auto; scroll-snap-type:y mandatory; scrollbar-width:thin; background:#000; }
.reel-post{
  position:relative; height:100%; width:100%; flex-shrink:0; scroll-snap-align:start; scroll-snap-stop:always;
  background:#000; overflow:hidden;
}
.reel-post .media{ display:block; position:absolute; inset:0; width:100%; height:100%; }
.reel-post .media .media-video,
.reel-post .media .media-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; background:#000; }

.reel-overlay{ position:absolute; inset:0; display:flex; flex-direction:column; justify-content:space-between; pointer-events:none; }
.reel-overlay-top{ display:flex; justify-content:space-between; align-items:flex-start; padding:14px; pointer-events:none; }
.reel-overlay-top .price-tag,
.reel-overlay-top .dur-tag,
.reel-overlay-top .mute-toggle{ pointer-events:auto; }
.reel-overlay-top-right{ display:flex; align-items:center; gap:8px; }
.mute-toggle{
  width:32px; height:32px; border-radius:50%; background:rgba(0,0,0,.5); border:none; color:#fff;
  display:flex; align-items:center; justify-content:center; cursor:pointer; flex-shrink:0;
}
.mute-toggle svg{ width:16px; height:16px; }
.mute-toggle .icon-sound{ display:none; }
.mute-toggle.is-on .icon-muted{ display:none; }
.mute-toggle.is-on .icon-sound{ display:block; }
.reel-overlay-top .price-tag{ background:var(--accent); color:#fff; font-size:12px; font-weight:700; padding:4px 10px; border-radius:100px; }
.reel-overlay-top .dur-tag{ background:rgba(0,0,0,.6); color:#fff; font-size:11.5px; padding:3px 8px; border-radius:6px; }
.reel-overlay-bottom{
  padding:18px 16px 20px; color:#fff; background:linear-gradient(transparent, rgba(0,0,0,.75) 60%);
  pointer-events:auto;
}
.reel-overlay-bottom .post-meta{ font-size:13.8px; display:flex; gap:5px; flex-wrap:wrap; align-items:baseline; text-shadow:0 1px 3px rgba(0,0,0,.5); }
.reel-overlay-bottom .post-meta b{ color:#fff; }
.reel-overlay-bottom .post-meta span{ color:rgba(255,255,255,.75); }
.reel-overlay-bottom .post-text{ font-size:14.5px; margin:4px 0 10px; text-shadow:0 1px 3px rgba(0,0,0,.5); }
.reel-post .post-actions{ display:flex; gap:8px; color:rgba(255,255,255,.85); font-size:13px; align-items:center; }
.reel-post .post-action{ display:flex; align-items:center; gap:6px; padding:4px; background:none; border:none; color:inherit; font:inherit; cursor:pointer; }
.reel-post .post-action svg{ width:17px; height:17px; }
.reel-post .post-action:first-child{ flex:1; min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.reel-post .post-action.vip{ color:#fff; background:rgba(255,255,255,.18); font-weight:700; padding:7px 14px; border-radius:100px; flex-shrink:0; }
.reel-post .post-action.buy{ color:#fff; background:var(--accent); font-weight:700; padding:7px 16px; border-radius:100px; flex-shrink:0; }

.right-rail{ width:350px; flex-shrink:0; padding:12px 16px 30px; position:sticky; top:57px; height:calc(100vh - 57px); height:calc(100dvh - 57px); overflow-y:auto; display:flex; flex-direction:column; gap:16px; }
.rr-search{ display:flex; align-items:center; gap:9px; background:var(--surface-2); border:1px solid var(--border); border-radius:100px; padding:11px 16px; color:var(--text-faint); font-size:13.8px; }
.rr-vip-block{
  border-radius:16px; padding:16px; border:1px solid rgba(224,50,90,.25);
  background:radial-gradient(120% 160% at 100% 0%, #fdeaf0 0%, #ffffff 60%);
  box-shadow:0 6px 20px -10px rgba(224,50,90,.35);
}
.rr-vip-pill{
  display:inline-flex; align-items:center; justify-content:center; gap:7px;
  background:var(--surface); color:var(--text); font-weight:700; font-size:13px;
  border:1px solid var(--border); border-radius:100px; padding:9px 16px; cursor:pointer;
  box-shadow:0 1px 3px rgba(20,20,30,.08);
}
.rr-vip-pill:hover{ background:var(--surface-2); }
.rr-vip-pill svg{ width:15px; height:15px; color:var(--text-dim); }
.rr-vip-pill-dot{ width:7px; height:7px; border-radius:50%; background:var(--accent); flex-shrink:0; }
.rr-vip-info{ padding:12px 2px 0; }
.rr-vip-info .eyebrow{ font-size:11px; text-transform:uppercase; letter-spacing:.06em; color:var(--accent-2); font-weight:700; margin-bottom:6px; }
.rr-vip-info p{ margin:0; font-size:13px; color:var(--text-dim); line-height:1.8; }
.rr-card{ background:var(--surface-2); border-radius:16px; overflow:hidden; }
.rr-card h3{ margin:0; padding:14px 16px 10px; font-size:17px; }
.rr-nav a{ display:flex; align-items:center; gap:10px; padding:9px 16px; font-size:13.8px; color:var(--text); font-weight:600; }
.rr-nav a:hover{ background:var(--surface); }
.rr-nav a svg{ width:16px; height:16px; opacity:.8; }
.rr-nav a:last-child{ padding-bottom:14px; }
.rr-widget-item{ display:flex; align-items:center; gap:10px; padding:9px 16px; }
.rr-widget-item .th{ width:38px; height:38px; border-radius:9px; flex-shrink:0; }
.rr-widget-item .name{ font-size:13.5px; font-weight:700; }
.rr-widget-item .sub{ font-size:12px; color:var(--text-faint); }
.rr-widget-item:last-child{ padding-bottom:14px; }
.rr-banner{
  border-radius:16px; overflow:hidden; border:1px solid var(--border); padding:20px;
  background:radial-gradient(120% 160% at 100% 0%, #fdeaf0 0%, #ffffff 60%);
}
.rr-banner .eyebrow{ font-size:11px; text-transform:uppercase; letter-spacing:.06em; color:var(--accent-2); font-weight:700; margin-bottom:8px; }
.rr-banner h4{ margin:0 0 6px; font-size:16px; }
.rr-banner p{ margin:0 0 14px; font-size:13px; color:var(--text-dim); }
.rr-ad-slot{
  border:1px dashed var(--border); border-radius:16px; min-height:180px; display:flex; align-items:center; justify-content:center;
  color:var(--text-faint); font-size:11.5px; text-transform:uppercase; letter-spacing:.06em; background:var(--surface-2);
}
.rr-footer{ font-size:11.5px; color:var(--text-faint); padding:0 16px; line-height:1.8; }
.rr-footer a{ margin-right:8px; }

/* ---- Store scene detail modal ---- */
.scene-modal-overlay{
  position:fixed; inset:0; background:rgba(10,10,15,.75); z-index:1100; display:none;
  align-items:center; justify-content:center; padding:20px;
}
.scene-modal-overlay.open{ display:flex; }
.scene-modal{
  max-width:520px; width:100%; max-height:88vh; overflow-y:auto; background:var(--surface);
  border-radius:16px; box-shadow:0 20px 60px -20px rgba(0,0,0,.5);
}
.scene-modal-media{ aspect-ratio:16/9; background:#000; border-radius:16px 16px 0 0; overflow:hidden; }
.scene-modal-media video,
.scene-modal-media img{ width:100%; height:100%; object-fit:contain; background:#000; }
.scene-modal-body{ padding:20px 22px 24px; }
.scene-modal-body h3{ margin:0 0 8px; font-size:19px; }
.scene-modal-meta{ margin:0 0 12px; font-size:13px; color:var(--text-faint); }
.scene-modal-desc{ margin:0; font-size:13.8px; color:var(--text-dim); line-height:1.7; }
.scene-modal-links{ margin-top:16px; }
.scene-modal-close{
  position:absolute; top:16px; right:20px; background:rgba(255,255,255,.12); border:none; border-radius:50%;
  width:38px; height:38px; color:#fff; font-size:24px; line-height:1; cursor:pointer; z-index:1;
}
.scene-modal-nav{
  position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,.12); border:none;
  border-radius:50%; width:44px; height:44px; color:#fff; cursor:pointer; display:flex; align-items:center; justify-content:center;
}
.scene-modal-nav:hover{ background:rgba(255,255,255,.22); }
.scene-modal-nav svg{ width:22px; height:22px; }
.scene-modal-nav.prev{ left:20px; }
.scene-modal-nav.next{ right:20px; }
@media (max-width:640px){
  .scene-modal-nav{ width:36px; height:36px; }
  .scene-modal-nav.prev{ left:8px; }
  .scene-modal-nav.next{ right:8px; }
  .scene-modal-close{ top:10px; right:10px; }
}

/* ---- VIP Club modal ---- */
.vip-modal-overlay{
  position:fixed; inset:0; background:rgba(10,10,15,.55); z-index:1100; display:none;
  align-items:center; justify-content:center; padding:20px;
}
.vip-modal-overlay.open{ display:flex; }
.vip-modal{
  max-width:420px; width:100%; background:var(--surface); border:1px solid var(--border); border-radius:16px;
  padding:30px 28px; box-shadow:0 20px 50px -20px rgba(20,20,30,.25); position:relative; max-height:90vh; overflow-y:auto;
}
.vip-modal-close{
  position:absolute; top:12px; right:14px; background:none; border:none; font-size:24px; line-height:1;
  color:var(--text-faint); cursor:pointer;
}
.vip-modal-eyebrow{ font-size:11px; text-transform:uppercase; letter-spacing:.06em; color:var(--accent-2); font-weight:700; margin-bottom:8px; }
.vip-modal h3{ margin:0 0 10px; font-size:19px; }
.vip-modal p{ color:var(--text-dim); font-size:13.5px; margin:0 0 18px; line-height:1.7; }

/* ---- Age gate ---- */
.age-gate-overlay{
  position:fixed; inset:0; background:#ffffff; z-index:1000; display:flex; align-items:center; justify-content:center; padding:20px;
}
.age-gate-overlay[hidden]{ display:none; }
.age-gate-card{
  max-width:460px; width:100%; background:var(--surface); border:1px solid var(--border); border-radius:16px;
  padding:36px 32px; text-align:center; box-shadow:0 20px 50px -20px rgba(20,20,30,.18);
}
.age-gate-card .brand{ font-weight:800; font-size:22px; margin-bottom:4px; }
.age-gate-network{ font-size:11px; text-transform:uppercase; letter-spacing:.08em; color:var(--text-faint); margin-bottom:14px; }
.age-gate-card .brand .dot{ color:var(--accent); }
.age-gate-card h1{ font-size:18px; margin:0 0 10px; }
.age-gate-card p{ color:var(--text-dim); font-size:13px; margin:0 0 22px; }
.age-gate-stores{ margin:0 0 22px; }
.age-gate-stores-label{
  display:flex; align-items:center; gap:12px; margin-bottom:12px;
  font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--text-faint);
}
.age-gate-stores-label::before, .age-gate-stores-label::after{
  content:""; flex:1; height:1px; background:var(--border);
}
.age-gate-stores-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:8px;
}
.age-gate-store{
  display:flex; align-items:center; justify-content:center; gap:8px;
  padding:11px 10px; border:1px solid var(--border); border-radius:10px;
  font-size:13px; font-weight:600; color:inherit; text-decoration:none;
  background:transparent; transition:border-color .15s ease, background .15s ease, transform .15s ease;
}
.age-gate-store svg{ width:16px; height:16px; flex-shrink:0; color:var(--accent); }
.age-gate-store:hover{
  border-color:var(--accent); background:rgba(127,127,127,.06); transform:translateY(-1px);
}
.age-gate-actions{ display:flex; flex-direction:column; gap:10px; }
.age-gate-actions .btn{ justify-content:center; padding:13px; font-size:14.5px; }
.age-gate-legal{ margin-top:20px; font-size:11px; color:var(--text-faint); }
