:root{
  --bg:#0b0a07;
  --paper:#2b2218;
  --accent:#b24a2a;
  --accent-dark:#7a2f1a;
  --muted:#cdbfae;

  --poster-bg:linear-gradient(120deg,#1a140f 0%,#2b2218 60%);
  --glass: rgba(255,255,255,0.03);

  --body-font: "Averia Libre", system-ui, Segoe UI, Roboto, "Helvetica Neue", Arial;
  --title-font: "Special Elite", serif;

  --header-h: 58px;

  /* ============================================================
     ✅ NEW: clamp caps (this is what makes 4K/8K not shrink)
     ============================================================ */
  --cap-logo: 20px;
  --cap-nav: 16px;

  --cap-title: 92px;
  --cap-subtitle: 20px;
  --cap-whenwhere: 18px;

  --cap-body: 18px;

  --cap-count-num: 22px;
  --cap-count-label: 13px;

  --cap-btn: 16px;

  --cap-footer-text: 14px;
  --cap-footer-logo: 95px;

  --cap-hero: 420px;
}

*{box-sizing:border-box}

/* ✅ Important: kill the window scrollbar */
html,body{
  height:100%;
  margin:0;
  overflow:hidden;
}

body{
  font-family:var(--body-font);
  background:var(--bg);
  color:var(--muted);
}

/* ✅ MAIN PAGE LAYOUT
   Scrollbar starts BELOW the header
*/
.page{
  position:fixed;
  top:var(--header-h);
  left:0;
  right:0;
  bottom:0;

  display:flex;
  flex-direction:column;
  overflow-y:auto;

  background: var(--poster-bg);
  background-repeat: no-repeat;
  background-size: cover;
}

/* =========================
   HEADER / NAV (STABLE)
========================= */

.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:var(--header-h);
  z-index:3000;
  background:linear-gradient(90deg, rgba(10,8,6,0.95), rgba(18,12,8,0.95));
  border-bottom:2px solid rgba(0,0,0,0.6);
}

.site-header .inner{
  height:var(--header-h);
  width:90vw;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

@media (min-width:980px){
  .site-header .inner{ width:80vw; }
}

.logo{
  font-family:var(--title-font);
  color:var(--accent);
  text-decoration:none;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  font-size:clamp(20px, 1.05vw, var(--cap-logo));
}

/* =========================
   DESKTOP NAV
========================= */

.site-nav{
  display:flex;
  align-items:center;
  margin-left:auto;
  gap:clamp(10px, 1.1vw, 16px);
}

.site-nav a,
.nav-group-toggle{
  appearance:none;
  background:none;
  border:none;
  color:var(--muted);
  font-family:var(--body-font);
  font-weight:700;
  padding:clamp(6px, 0.6vw, 10px) clamp(10px, 1vw, 14px);
  border-radius:6px;
  cursor:pointer;
  text-decoration:none;
  font-size:clamp(13px, 0.95vw, var(--cap-nav));
}

.site-nav a:hover,
.nav-group-toggle:hover{
  background:rgba(255,255,255,0.03);
}

.site-nav a.active:not(.cta){
  background:rgba(255,255,255,0.03);
}

a.cta{
  background:var(--accent);
  color:#1b0e07;
  margin-left: 16px;
  padding: clamp(6px, 0.6vw, 10px) clamp(12px, 1.1vw, 16px);
  border-radius:10px;
  font-weight:700;
  text-decoration:none;
}


/* =========================
   DESKTOP DROPDOWN
========================= */

.nav-group{
  position:relative;
}

.nav-group-menu{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  background:rgba(12,8,6,0.96);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px;
  padding:6px;
  min-width:180px;
  box-shadow:0 12px 40px rgba(0,0,0,0.6);
}

.nav-group-menu a{
  display:block;
  padding:10px 12px;
  border-radius:6px;
}

@media (min-width:750px){
  .nav-group:hover .nav-group-menu{
    display:block;
  }
}

/* =========================
   HAMBURGER BUTTON
========================= */

.nav-toggle{
  display:none;
  align-items:center;
  margin-left:auto;
  gap:10px;
  background:transparent;
  border:1px solid rgba(255,255,255,0.08);
  padding:8px 12px;
  border-radius:10px;
  cursor:pointer;
  color:var(--muted);
  font-family:var(--title-font);
  text-transform:uppercase;
  letter-spacing:0.8px;
}

.hamburger{
  display:block;
  width:22px;
  height:2px;
  background:var(--muted);
  position:relative;
}

.hamburger::before,
.hamburger::after{
  content:"";
  position:absolute;
  left:0;
  width:22px;
  height:2px;
  background:var(--muted);
}

.hamburger::before{ top:-6px; }
.hamburger::after{ top:6px; }

.nav-label{ font-size:14px; }

/* =========================
   MOBILE VISIBILITY TOGGLE
========================= */

@media (max-width:750px){
  .site-nav{ display:none; }
  .nav-toggle{ display:inline-flex; }
}

/* =========================
   MOBILE OPEN STATE (NORMALIZED)
========================= */

body.nav-open .site-nav{
  display:flex !important;
  flex-direction:column;
  align-items:center;

  position:fixed;
  top:var(--header-h);

  left:50%;
  transform:translateX(-50%);
  width:max-content;
  max-width:90vw;
  bottom:auto;

  padding:12px;

  background:linear-gradient(180deg, rgba(6,4,3,0.98), rgba(18,14,10,0.98));
  border-radius:14px;
  z-index:2600;
  overflow:auto;
}

/* 🔑 ALL MOBILE LINKS — SAME LAYOUT RULES */
body.nav-open .site-nav a,
body.nav-open .nav-group-menu a{
  display:inline-flex;          /* ✅ NOT block */
  justify-content:center;
  align-items:center;

  width:auto;                   /* ✅ shrink to text */
  max-width:100%;

  font-size:18px;
  padding:12px 18px;
  margin:6px 0;

  border-radius:12px;
  background:rgba(255,255,255,0.02);
  color:var(--muted);
  text-align:center;
  text-decoration:none;
}



/* REGISTER CTA — intentionally different */
body.nav-open .site-nav a.cta{
  width:100%;
  margin-left: 12px;
  margin-top:18px;
  padding:16px 0;
  border-radius:16px;
  background:var(--accent);
  color:#140a06;
}


/* REMOVE INFO BUTTON ON MOBILE */
body.nav-open .nav-group-toggle{
  display:none;
}

/* FLATTEN DROPDOWN */
body.nav-open .nav-group-menu{
  display:block;
  position:static;
  background:none;
  border:none;
  box-shadow:none;
  padding:0;
}

/* REGISTER CTA */
body.nav-open .site-nav a.cta{
  margin-top:16px;
  background:var(--accent);
  color:#140a06;
}
/* =========================
   MOBILE SPACING NORMALIZATION
========================= */

/* Kill container gap — spacing should come from links themselves */
body.nav-open .site-nav{
  gap: 0;
}

/* =========================
   FINAL MOBILE INFO FIX
   (force vertical stack)
========================= */

@media (max-width: 750px) {
  body.nav-open .nav-group-menu {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    width: 100%;
  }

  body.nav-open .nav-group-menu a {
    display: inline-flex;
    width: auto;
    margin: 3px 0;
  }
}

/* -------------------------
   Poster
-------------------------- */
.poster{
  flex:1;

  /* ✅ scales instead of fixed px */
  padding: clamp(34px, 4.5vw, 64px) clamp(16px, 2vw, 28px);

  border-bottom:2px solid rgba(0,0,0,0.6);

  position:relative;
  overflow:hidden;

  display:flex;
  align-items:center;
}

.hero-strip{
  position:absolute;
  left:0;
  right:0;
  top: 20px;

  /* ✅ hero must scale */
  height: clamp(240px, 28vh, var(--cap-hero));

  border-bottom:2px solid rgba(0,0,0,0.6);

  background-image:
    linear-gradient(180deg,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.10) 45%,
      rgba(0,0,0,0.65) 100%
    ),
    url("../assets/hero2.jpg");

  background-repeat:no-repeat;
  background-size:cover;
  background-position: 80% 55%;
  mix-blend-mode: soft-light;

  filter: saturate(0.95) contrast(1.05);

  z-index: 0;
}

.poster::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:1;

  background-image: url("../assets/dusty.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  opacity: 0.25;
  mix-blend-mode: screen;
}

/* ✅ percent based now */
.poster-inner{
  width: 90vw;
  margin: 0 auto;
  margin-top: clamp(0px, 1.5vh, 14px);
  text-align: center;
  z-index: 2;
  position: relative;
}



@media (min-width: 980px){
  .poster-inner{
    width: 80vw;
  }
}

.subtitle {
  color: var(--muted);
  margin: 0 0 18px;
  font-size: clamp(14px, 1.25vw, var(--cap-subtitle));

  max-width: clamp(480px, 50vw, 820px);
  margin-left: auto;
  margin-right: auto;
}

.title{
  font-family:var(--title-font);

  /* ✅ title scales, but stays sane */
  font-size: clamp(44px, 4.9vw, var(--cap-title));

  margin:0 0 6px;
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:0.8px;
  line-height:1.05;
  font-weight:700;
  -webkit-text-stroke:0.35px rgba(0,0,0,0.25);
  text-shadow:0.6px 0.6px 0 rgba(0,0,0,0.20);
}

.when-where{
  display:flex;
  flex-wrap:wrap;
  gap: clamp(12px, 1.4vw, 20px);
  align-items:center;
  margin-bottom: clamp(12px, 1.4vw, 20px);

  font-size: clamp(14px, 1.15vw, var(--cap-whenwhere));
}

.date{font-weight:700}
.location{color:var(--muted)}

.countdown{
  display:flex;
  gap: clamp(10px, 1.1vw, 16px);
  margin: clamp(12px, 1.2vw, 18px) 0;
  flex-wrap:wrap;
}

.count-item{
  text-align:center;
  background:var(--glass);

  padding: clamp(8px, 1vw, 14px) clamp(10px, 1.2vw, 16px);
  border-radius:10px;

  min-width: clamp(64px, 5vw, 96px);

  border:1px solid rgba(255,255,255,0.03);
  box-shadow:0 8px 18px rgba(0,0,0,0.25);
}

.count-item span{
  display:block;
  font-weight:700;
  font-size: clamp(16px, 1.6vw, var(--cap-count-num));
}

.count-item small{
  display:block;
  color:var(--muted);
  font-size: clamp(11px, 0.95vw, var(--cap-count-label));
}

.actions{
  display:flex;
  gap: clamp(10px, 1.1vw, 16px);
  margin-top: clamp(12px, 1.2vw, 18px);
  flex-wrap:wrap;
}
.when-where,
.countdown,
.actions {
  justify-content: center;
}

.btn{
  background:var(--accent);
  color:white;

  padding: clamp(10px, 1.15vw, 14px) clamp(14px, 1.4vw, 20px);

  border-radius:10px;
  border:0;
  cursor:pointer;
  font-weight:700;

  font-size: clamp(14px, 1.05vw, var(--cap-btn));
}

.btn:hover{filter:brightness(1.05)}

.btn.outline{
  background:transparent;
  border:1px solid rgba(255,255,255,0.18);
  color:var(--muted);
}

.btn.outline:hover{
  border-color:rgba(255,255,255,0.28);
  background:rgba(255,255,255,0.03);
}

.accent{
  position:absolute;
  right:-20%;
  top:-20%;
  width:60%;
  height:140%;
  background:linear-gradient(120deg,rgba(178,74,42,0.14),rgba(120,60,30,0.05));
  transform:rotate(12deg);
  filter: blur(clamp(90px, 3vw, 350px));
  z-index:0;
}
/* about styles----*/
.about-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.lead {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.about-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
}

.about-block.reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1 1 420px;
}

.about-image {
  flex: 1 1 420px;
  max-width: min(70vw, 520px);
  max-height: 70vh;
  cursor: zoom-in;
  display: block;
}

.about-list {
  margin: 1rem 0 2rem 1rem;
}

@media (max-width: 768px) {
  .about-block,
  .about-block.reverse {
    flex-direction: column;
  }
}

/* -------------------------
   Content pages (overlay container styling uses this)
-------------------------- */

/* ✅ percent-based container width */
.container{
  width: 90vw;
  margin:0 auto;

  font-size: clamp(15px, 1.15vw, var(--cap-body));
  line-height:1.65;
  color:var(--muted);
}

@media (min-width: 980px){
  .container{ width: 80vw; }
}

/* -------------------------
   Text / Markdown Styling
-------------------------- */

/* ============================================================
   Font hierarchy for content overlays
   ============================================================ */

/* H1 + H2 = display / identity */
.container h1,
.container h2{
  font-family: var(--title-font);
}

/* H3+ and body copy = readable text */
.container h3,
.container h4,
.container h5,
.container h6{
  font-family: var(--body-font);
}

.container p{
  margin:0 0 1em 0;
  color:rgba(205,191,174,0.92);
}

.container h1,
.container h2,
.container h3,
.container h4,
.container h5,
.container h6{
  font-family:var(--body-font);
  color:var(--muted);
  font-weight:700;
  line-height:1.2;
  margin:0.9em 0 0.35em 0;
}

.container h2{
  color:var(--accent);
  letter-spacing:0.2px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(255,255,255,0.08);
  margin-bottom:14px;
}

.container h1{ font-size:clamp(26px, 2.4vw, 44px); }
.container h2{ font-size:clamp(22px, 2vw, 34px); }
.container h3{ font-size:clamp(18px, 1.6vw, 26px); }
.container h4{ font-size:clamp(16px, 1.2vw, 20px); }
.container h5{ font-size:clamp(15px, 1.1vw, 18px); }
.container h6{ font-size:clamp(14px, 1vw, 16px); }

.container ul,
.container ol{
  padding-left:1.2em;
  margin:0 0 1em 0;
}

.container li{
  margin:0.35em 0;
}

.container a{
  color:var(--muted);
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:3px;
  text-decoration-color:rgba(178, 74, 42, 0.55);
  transition:color 0.12s ease, text-decoration-color 0.12s ease;
}

.container a:hover{
  color:#fff;
  text-decoration-color:rgba(178, 74, 42, 1);
}

.container a:focus-visible{
  outline:2px solid rgba(178, 74, 42, 0.45);
  outline-offset:3px;
  border-radius:4px;
}

.container blockquote{
  margin:1.2em 0;
  padding:12px 14px;
  border-left:3px solid rgba(178, 74, 42, 0.8);
  background:rgba(255,255,255,0.03);
  border-radius:10px;
  color:rgba(205,191,174,0.95);
}

.container code{
  font-family:ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size:0.95em;
  padding:2px 6px;
  border-radius:8px;
  background:rgba(0,0,0,0.35);
  border:1px solid rgba(255,255,255,0.06);
}

.container pre{
  overflow:auto;
  padding:14px;
  border-radius:12px;
  background:rgba(0,0,0,0.35);
  border:1px solid rgba(255,255,255,0.06);
  margin:1em 0;
}

.container pre code{
  padding:0;
  border:0;
  background:transparent;
}

.container hr{
  border:0;
  height:1px;
  margin:20px 0;
  background:rgba(255,255,255,0.08);
}

.container img{
  max-width:100%;
  height:auto;
  display:block;
  margin:0px 0;
  border:0;
  border-radius:0;
  box-shadow:none;
  background:transparent;
}

/* -------------------------
   Modal
-------------------------- */
dialog{
  border:none;
  border-radius:12px;
  padding:22px;
  max-width:520px;
  background:rgba(20,14,10,0.96);
  color:var(--muted);
  box-shadow:0 25px 80px rgba(0,0,0,0.55);
}

.modal-actions{
  display:flex;
  gap:12px;
  justify-content:flex-end;
  margin-top:16px;
}



@media (max-width:520px){
  .poster{ padding:20px; }
  .count-item{ min-width:56px; padding:8px; }
  .poster-inner{ margin-top: 0px; }
}

/* -------------------------
   Footer
-------------------------- */
.tiny-footer{
  margin-top:auto;
  padding: clamp(18px, 2vw, 30px) clamp(12px, 1.6vw, 22px);
  border-top:2px solid rgba(0,0,0,0.6);

  background-image:
    linear-gradient(90deg, rgba(10,8,6,0.92), rgba(18,12,8,0.92)),
    url('../assets/rustytexture.jpg');
  background-repeat: repeat;
  background-size: auto;
}

/* ✅ percent-based footer width */
.tiny-footer-inner{
  width: 90vw;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: clamp(8px, 1vw, 14px);
  text-align:center;
}

@media (min-width: 980px){
  .tiny-footer-inner{ width: 80vw; }
}

.tiny-footer-logos{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: clamp(10px, 1.1vw, 16px);
}

.tiny-footer-logo{
  height: clamp(60px, 4.2vw, var(--cap-footer-logo));
  width:auto;
  display:block;
  opacity:0.9;
  filter:drop-shadow(0 6px 14px rgba(0,0,0,0.35));
}

.tiny-footer .tiny-footer-text{
  font-family:var(--title-font);
  font-size: clamp(11px, 0.9vw, var(--cap-footer-text));
  color:var(--muted);
  opacity:0.9;
  letter-spacing:0.8px;
  text-transform:uppercase;
}

/* -------------------------
   Utility
-------------------------- */
.center{
  display:block;
  margin-left:auto;
  margin-right:auto;
}

.center-both{
  display:flex;
  align-items:center;
  justify-content:center;
}

.seo-content {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* =========================================
   AFTERMATH REGISTRATION PANEL
========================================= */
.waiver-box {
  max-height: 320px;
  overflow-y: auto;
  border: 1px solid #333;
  border-radius: 4px;
}
.waiver-box iframe {
  width: 100%;
  height: 600px;   /* MUST be explicit */
  border: none;
  display: block;
}
.register-shell {
  display: flex;
  justify-content: center;
  padding: 0.75rem 1.5rem 2rem;
}

.register-panel {
  width: 100%;
  max-width: 760px;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid #2a2a2a;
  box-shadow: 0 0 0 1px #000 inset,
              0 0 25px rgba(0,0,0,0.6);
  padding: 2.5rem;
  border-radius: 6px;
}

/* Section headers */

#registrationForm h2 {
  font-family: 'Oswald', sans-serif; /* or your event font */
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.4rem;
  margin-top: 2.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 6px;
  color: #d45b2c;
}

/* Form spacing */

#registrationForm {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Inputs */

#registrationForm input,
#registrationForm select,
#registrationForm textarea {
  width: 100%;
  padding: 12px;
  background: #111;
  border: 1px solid #333;
  color: #eee;
  font-family: inherit;
  border-radius: 4px;
  transition: 0.2s ease;
}

#registrationForm input:focus,
#registrationForm select:focus,
#registrationForm textarea:focus {
  outline: none;
  border-color: #d45b2c;
  box-shadow: 0 0 6px rgba(212,91,44,0.4);
}

/* Checkbox styling alignment */

#registrationForm label {
  font-size: 0.95rem;
}

/* Ticket summary block */

.register-summary {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
}

.register-summary p {
  display: flex;
  justify-content: space-between;
  margin: 6px 0;
}

/* Final total emphasis */

.register-summary .grand-total {
  font-size: 1.2rem;
  font-weight: bold;
  color: #d45b2c;
}

/* Submit button */

#registrationForm button[type="submit"] {
  margin-top: 2rem;
  padding: 16px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  background: #d45b2c;
  border: none;
  color: #111;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.2s ease;
}

#registrationForm button[type="submit"]:hover {
  background: #ff7b42;
  transform: translateY(-1px);
}
/* ===============================
   CHECKBOX ROWS — HARD RESET
=============================== */

.checkbox-group {
  margin-top: 12px;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  column-gap: 14px;

  padding: 16px;
  margin-bottom: 12px;

  border: 1px solid #2a2a2a;
  background: #0f0f0f;
  border-radius: 6px;

  cursor: pointer;
  transition: 0.2s ease;
}

.checkbox-row:hover {
  border-color: #d45b2c;
  background: #141414;
}

.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 3px 0 0 0;
  accent-color: #d45b2c;
}

.checkbox-row span {
  display: block;
  text-align: left;
  line-height: 1.5;
}
/* ===============================
   MOBILE: FULL-SCREEN REGISTER
=============================== */

@media (max-width: 750px) {

  .register-shell {
    padding: 0;
  }

  .register-panel {
    max-width: none;
    width: 100%;
    padding: 1.6rem 1.2rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  /* tighten spacing */
  #registrationForm {
    gap: 1rem;
  }

  #registrationForm h3 {
    margin-top: 2rem;
  }

  .register-summary {
    margin-top: 1.5rem;
    padding: 1.2rem;
  }

  #registrationForm button[type="submit"] {
    width: 100%;
    font-size: 1.05rem;
    padding: 18px;
  }
}
/* -------------------------
   FAQ Accordion (details/summary)
-------------------------- */
.container details{
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  margin: 14px 0;
  overflow: hidden;

  box-shadow: 0 14px 40px rgba(0,0,0,0.32);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.container details summary{
  list-style: none;
  cursor: pointer;

  padding: clamp(14px, 1.6vw, 20px);
  font-weight: 700;
  font-size: clamp(16px, 1.25vw, 20px);

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: var(--muted);
  user-select: none;

  transition: background 140ms ease;
}

.container details summary::-webkit-details-marker{
  display:none;
}

.container details summary:hover{
  background: rgba(255,255,255,0.025);
}

.container details summary:focus-visible{
  outline: 2px solid rgba(178,74,42,0.55);
  outline-offset: -2px;
}

.container details summary::after{
  content:"+";
  font-size: clamp(20px, 1.5vw, 26px);
  line-height: 1;
  color: var(--accent);
  opacity: 0.95;

  width: 28px;
  text-align: right;
  transform: translateY(-1px);
}

.container details[open] summary::after{
  content:"–";
}

.container details[open]{
  border-color: rgba(178,74,42,0.38);
  box-shadow:
    0 18px 60px rgba(0,0,0,0.42),
    0 0 0 1px rgba(178,74,42,0.10) inset;
}

.container details[open] summary{
  border-bottom: 1px solid rgba(178,74,42,0.28);
}

.container details > *:not(summary){
  padding: clamp(12px, 1.4vw, 18px) clamp(14px, 1.6vw, 20px) clamp(14px, 1.8vw, 20px);
  margin: 0;
  color: rgba(205,191,174,0.92);
  line-height: 1.65;
  font-size: clamp(14px, 1.1vw, 18px);
}

/* -------------------------
   body overlay (ROLLBACK SAFE)
-------------------------- */
body.overlay-mode #pageView{
  position: fixed;
  inset: var(--header-h) 0 0 0;
  overflow: auto;
  padding: 18px 14px 24px;

  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(5px);
  z-index: 5;

  opacity: 1;
  transform: translateY(0);
  transition: opacity 260ms ease, transform 260ms ease;
}
body.overlay-mode .page{
  overflow: hidden;
}

body.overlay-closing #pageView{
  opacity: 0;
  transform: translateY(6px);
}

body.overlay-opening #pageView{
  opacity: 0;
  transform: translateY(6px);
}

/* =========================
   OVERLAY PHOSPHOR GLOW
   (reused from utility lightbox)
========================= */

body.overlay-mode #pageView .container{
  filter:
    contrast(1.03)
    saturate(0.90)
    drop-shadow(0 0 8px rgba(120,255,160,0.12))
    drop-shadow(0 0 22px rgba(120,255,160,0.06));

  animation: overlay-phosphor-pulse 3.9s ease-in-out infinite;
}

@keyframes overlay-phosphor-pulse{
  0%, 100%{
    filter:
      contrast(1.03)
      saturate(0.90)
      drop-shadow(0 0 8px rgba(120,255,160,0.12))
      drop-shadow(0 0 22px rgba(120,255,160,0.06));
  }
  50%{
    filter:
      contrast(1.03)
      saturate(0.90)
      drop-shadow(0 0 11px rgba(120,255,160,0.16))
      drop-shadow(0 0 30px rgba(120,255,160,0.09));
  }
}


/* ✅ overlay panel width rules */
body.overlay-mode #pageView .container{
  width: 90vw;
  max-width: none;
  margin: 0 auto;
  padding: clamp(14px, 1.6vw, 22px) clamp(12px, 1.4vw, 18px);

  background: rgba(15,10,7,0.82);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.55);

  position: relative;
  z-index: 2;
}

/* ✅ 1080p+ overlay width default */
@media (min-width: 980px){
  body.overlay-mode #pageView .container{
    width: 75vw;
  }
}

/* ✅ 2K+ overlay width */
@media (min-width: 2560px){
  body.overlay-mode #pageView .container{
    width: 70vw;
  }
}

/* ✅ 4K+ overlay width */
@media (min-width: 3840px){
  body.overlay-mode #pageView .container{
    width: 65vw;
  }
}

/* ✅ 8K+ overlay width */
@media (min-width: 7680px){
  body.overlay-mode #pageView .container{
    width: 60vw;
  }
}

@media (max-width: 520px){
  body.overlay-mode #pageView .container{
    width: 91vw;
  }
}

body.overlay-mode #pageView .container > h2{
  font-family: var(--title-font);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

body.overlay-mode{
  overflow: hidden;
}

body.overlay-mode .page{
  overflow: hidden;
}

/* ============================================================
   ✅ Aftermath 2125 — Large Screen Scaling Tiers (MORE AGGRESSIVE)
   Goal:
   - 2K: ~+35%
   - 4K: ~+75%
   - 8K: ~2.8x
   Also:
   - poster content sits higher on page
   ============================================================ */

/* -------------------------
   2K+ (2560px wide) ✅ ~+35%
-------------------------- */
@media (min-width: 2560px){
  :root{
    /* Header gets taller so nav can breathe */
    --header-h: 78px;

    /* NAV */
    --cap-logo: 34px;
    --cap-nav: 30px;

    /* HERO CONTENT */
    --cap-title: 190px;
    --cap-subtitle: 40px;
    --cap-whenwhere: 32px;
    

    /* Body pages */
    --cap-body: 24px;

    /* Countdown */
    --cap-count-num: 44px;
    --cap-count-label: 22px;

    /* Buttons */
    --cap-btn: 26px;

    /* Footer */
    --cap-footer-text: 20px;
    --cap-footer-logo: 170px;

    /* Hero strip */
    --cap-hero: 820px;
  }

  /* ✅ Pull hero content higher */
  .poster-inner{
    margin-top: clamp(-014px, -1.0vh, -28px);
  }
}

/* -------------------------
   4K+ (3840px wide) ✅ ~+75%
-------------------------- */
@media (min-width: 3840px){
  :root{
    --header-h: 110px;

    /* NAV */
    --cap-logo: 54px;
    --cap-nav: 46px;

    /* HERO CONTENT */
    --cap-title: 300px;
    --cap-subtitle: 64px;
    --cap-whenwhere: 50px;

    --cap-body: 34px;

    /* Countdown */
    --cap-count-num: 72px;
    --cap-count-label: 34px;

    /* Buttons */
    --cap-btn: 38px;

    /* Footer */
    --cap-footer-text: 28px;
    --cap-footer-logo: 260px;

    /* Hero strip */
    --cap-hero: 1350px;
  }

  /* ✅ Pull hero content higher */
  .poster-inner{
    margin-top: clamp(-26px, -1.6vh, -56px);
  }

  .title{
    line-height: 1.03;
  }
}

/* -------------------------
   8K+ (7680px wide) ✅ ~2.8x
-------------------------- */
@media (min-width: 7680px){
  :root{
    --header-h: 170px;

    /* NAV */
    --cap-logo: 110px;
    --cap-nav: 92px;

    /* HERO CONTENT */
    --cap-title: 520px;
    --cap-subtitle: 110px;
    --cap-whenwhere: 90px;

    --cap-body: 60px;

    /* Countdown */
    --cap-count-num: 140px;
    --cap-count-label: 60px;

    /* Buttons */
    --cap-btn: 80px;

    /* Footer */
    --cap-footer-text: 50px;
    --cap-footer-logo: 420px;

    /* Hero strip */
    --cap-hero: 2400px;
  }

  /* ✅ Pull hero content MUCH higher so it doesn't sink */
  .poster-inner{
    margin-top: clamp(-54px, -2.8vh, -140px);
  }

  .title{
    line-height: 1.01;
    letter-spacing: 1.2px;
  }
}
/* ============================================================
   ✅ Overlay text scaling (GOOD) + Accordion scaling (BIGGER v2)
   Put at VERY BOTTOM of CSS
   ============================================================ */

/* -------------------------
   Overlay scale factor
   (controls regular overlay text)
-------------------------- */
:root{
  --overlay-ui: 1;

  /* ✅ accordion baseline (1080) */
  --faq-ui: 0.92;
}

/* 2K+ */
@media (min-width: 2560px){
  :root{
    --overlay-ui: 1.12; /* keep */
    --faq-ui: 1.30;
  }
}

/* 4K+ */
@media (min-width: 3840px){
  :root{
    --overlay-ui: 1.28; /* keep */
    --faq-ui: 1.90;
  }
}

/* 8K+ */
@media (min-width: 7680px){
  :root{
    --overlay-ui: 1.38; /* ✅ reduced (was 1.55) */
    --faq-ui: 3.10;     /* keep huge */
  }
}

/* ============================================================
   ✅ Overlay text scaling (non-accordion)
   Only affects overlay mode
   ============================================================ */
body.overlay-mode #pageView .container{
  font-size: calc(clamp(15px, 1.15vw, var(--cap-body)) * var(--overlay-ui));
}

/* ============================================================
   ✅ FAQ Accordion scaling (separate + MUCH stronger)
   Only affects overlay mode accordion
   ============================================================ */

body.overlay-mode #pageView .container details{
  border-radius: calc(16px * var(--faq-ui));
  margin: calc(14px * var(--faq-ui)) 0;
}

body.overlay-mode #pageView .container details summary{
  font-size: calc(clamp(15px, 1.15vw, 19px) * var(--faq-ui));
  padding: calc(clamp(12px, 1.35vw, 18px) * var(--faq-ui));
}

body.overlay-mode #pageView .container details summary::after{
  font-size: calc(clamp(18px, 1.25vw, 24px) * var(--faq-ui));
  width: calc(28px * var(--faq-ui));
}

body.overlay-mode #pageView .container details > *:not(summary){
  font-size: calc(clamp(14px, 1.05vw, 17px) * var(--faq-ui));
  padding:
    calc(clamp(10px, 1.2vw, 16px) * var(--faq-ui))
    calc(clamp(12px, 1.4vw, 18px) * var(--faq-ui))
    calc(clamp(12px, 1.55vw, 18px) * var(--faq-ui));
}
