/* =========================
   ITS.CHRXS — Shared Theme
   ========================= */
:root{
  --bg:#07090d;                /* near-black */
  --text:#e9edf7;
  --muted: rgba(170,179,198,0.86);

  --panel:  rgba(255,255,255,0.04);
  --panel2: rgba(255,255,255,0.025);
  --card:   rgba(255,255,255,0.035);

  --stroke: rgba(255,255,255,0.12);
  --stroke2: rgba(255,255,255,0.18);

  /* Primary accent (deep red) */
  --accent:#c61b2a;
  --accent2: rgba(198,27,42,0.18);

  /* Focus ring */
  --focus: rgba(198,27,42,0.32);

  --radius: 18px;
  --radius-sm: 14px;

  /* Waveform colors (NO pink/purple/yellow/orange) */
  --waveIdle: rgba(233,237,247,0.20);     /* cool light */
  --waveProg: rgba(198,27,42,0.45);       /* deep red progress */
  --waveGlow: rgba(198,27,42,0.22);       /* subtle glow */
    /* Premium neon accent (cool cyan) */
  --neon: #00d4ff;
  --neonA: rgba(0,212,255,.18);
  --neonGlow: rgba(0,212,255,.38);

  /* Premium elevation */
  --elev1: 0 12px 34px rgba(0,0,0,.30);
  --elev2: 0 18px 60px rgba(0,0,0,.38);

    /* Premium neon accent (cool cyan) */
  --neon: #00d4ff;
  --neonA: rgba(0,212,255,.18);
  --neonGlow: rgba(0,212,255,.38);

  /* Premium elevation */
  --elev1: 0 12px 34px rgba(0,0,0,.30);
  --elev2: 0 18px 60px rgba(0,0,0,.38);


}


*{ box-sizing:border-box; }
html,body{ height:100%; }
html,body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial;
  line-height: 1.55;
}

/* Soft background depth (modern/premium, not arcade) */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(0,212,255,.08), transparent 55%),
    radial-gradient(900px 520px at 90% 0%, rgba(198,27,42,.10), transparent 58%),
    radial-gradient(1100px 800px at 50% 120%, rgba(255,255,255,.05), transparent 60%);
}


/* Soft background depth (modern/premium, not arcade) */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(0,212,255,.08), transparent 55%),
    radial-gradient(900px 520px at 90% 0%, rgba(198,27,42,.10), transparent 58%),
    radial-gradient(1100px 800px at 50% 120%, rgba(255,255,255,.05), transparent 60%);
}


a{ color: rgba(242,240,235,.92); text-decoration: none; }
a:hover{ text-decoration: underline; }

.wrap{ max-width: 980px; margin: 0 auto; padding: 22px; }

/* ===== Top header ===== */
.header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10,12,16,.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(242,240,235,.12);
}
.headerInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width:0;
}

/* logo tile inside pill: tighter + cleaner */
.brand .logo{
  flex: 0 0 auto;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 10px 22px rgba(0,0,0,.32);
}

.logo{
  width: 84px; height: 84px;
  border-radius: 28px;
  border: 2px solid rgba(242,240,235,.14);
  background: linear-gradient(180deg, rgba(242,240,235,.08), rgba(242,240,235,.03));
  box-shadow: 0 18px 42px rgba(0,0,0,.38);
  display:grid; place-items:center;
  font-weight: 1000;
  letter-spacing: 1.2px;
  font-size: 26px;
  line-height: 1;
}

.brandTitle{
  font-size: 16px;
  font-weight: 1000;
  letter-spacing: .2px;
  margin: 0;
  color: rgba(242,240,235,.94);
}
.brandSub{
  margin-top: 2px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15px;
  color: rgba(242,240,235,.68);
}
.nav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(242,240,235,.04);
  color: rgba(242,240,235,.88);
  font-weight: 900;
  font-size: 12px;
}
.pill:hover{
  background: rgba(242,240,235,.07);
}

/* ===== Home header layout ===== */
.headerInnerHome{
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 12px;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

.brand{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(242,240,235,.14);
  background: rgba(242,240,235,.04);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
}

.logo{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  overflow:hidden;
  box-shadow: none;
  border: 1px solid rgba(242,240,235,.14);
}

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

#brandText{
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: .4px;
}

.topActions{
  display:flex;
  align-items:center;
  gap: 10px;
  width: 100%;
  flex-wrap: wrap;
}

.topSearch{
  flex: 1 1 320px;
  min-width: 220px;
}

.topButtons{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ===== Premium hero ===== */
.heroPremium{
  padding: 22px;
}

.heroGrid{
  display:grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .9fr);
  gap: 16px;
  align-items: stretch;
}

.heroCtasPremium .btn{
  border-radius: 999px;
}

.heroStatsPremium .stat{
  border-radius: 16px;
  background: rgba(0,0,0,.18);
}

.homeEmbedPremium{
  height: 100%;
  border: 1px solid rgba(242,240,235,.12);
  border-radius: 18px;
  background: rgba(0,0,0,.18);
  padding: 12px;
}

.homeEmbedPremium .homeEmbedFrame iframe{
  border-radius: 14px;
}

/* ===== Filters bar near beats ===== */
.filtersBar{
  margin: 12px 0 10px;
}

.filtersInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(242,240,235,.12);
  background: rgba(242,240,235,.03);
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
}

.filtersLeft{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}

.filtersRight{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Mobile tuning */
@media (max-width: 900px){
  .heroGrid{
    grid-template-columns: 1fr;
  }
  .topbar{
    flex-wrap: wrap;
  }
  .topButtons{
    width: 100%;
    justify-content: flex-start;
  }
}
/* ===== Page shell ===== */
.main{
  padding: 18px 0 40px;
}
.card{
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(242,240,235,.055), rgba(242,240,235,.03));
  box-shadow: var(--elev1);
  padding: 18px;
    border-radius: 18px;
  background: linear-gradient(180deg, rgba(242,240,235,.055), rgba(242,240,235,.03));
  box-shadow: var(--elev1);

}

.card + .card{ margin-top: 14px; }

.h1{
  font-size: 26px;
  margin: 0 0 6px;
  letter-spacing: .2px;
}
.lede{
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 700;
}

.h2{
  font-size: 15px;
  margin: 18px 0 8px;
  letter-spacing: .2px;
}
.p{
  margin: 10px 0;
  color: rgba(242,240,235,.86);
}
.small{ font-size: 12px; color: var(--muted); }

.hr{
  height: 1px;
  background: rgba(242,240,235,.12);
  margin: 14px 0;
}

.callout{
  border: 1px solid rgba(167,156,142,.24);
  background: rgba(167,156,142,.08);
  border-radius: 16px;
  padding: 12px;
}
.calloutTitle{ font-weight: 1000; margin:0 0 4px; }
.calloutText{ margin:0; color: rgba(242,240,235,.82); }

.list{ margin: 10px 0 0; padding-left: 18px; color: rgba(242,240,235,.86); }
.list li{ margin: 6px 0; }

.btnRow{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px; }
/* ===== Success page spacing (scoped) ===== */
.pageSuccess .h2{ margin-top: 16px; }
.pageSuccess .btnRow{ margin-top: 18px; }
.pageSuccess .small{ margin-top: 14px; }

/* ===== Success / Downloads page (scoped) ===== */
.dlList{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.dlItem{
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--panel), var(--panel2));
  padding: 12px;

  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;

  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}

.dlLeft{
  min-width: 240px;
}

.dlTitle{
  font-weight: 1000;
  letter-spacing: .15px;
  color: rgba(242,240,235,.94);
}

.dlMeta{
  margin-top: 2px;
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
}

.dlMetaMissing{
  color: rgba(242,240,235,.86);
  opacity: .9;
}



.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(242,240,235,.06);
  color: var(--text);
  cursor:pointer;
  font-weight: 900;
  min-height: 44px;
    box-shadow: 0 10px 26px rgba(0,0,0,.22);
  transition: transform .14s ease, background .14s ease, border-color .14s ease, box-shadow .14s ease;
    box-shadow: 0 10px 26px rgba(0,0,0,.22);
  transition: transform .14s ease, background .14s ease, border-color .14s ease, box-shadow .14s ease;

}
.btn:hover{
  background: rgba(242,240,235,.10);
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
}



.btnPrimary{
  background: rgba(167,156,142,.20);
  border-color: rgba(167,156,142,.36);
}
.btnPrimary:hover{ background: rgba(167,156,142,.28); }

.input{
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(242,240,235,.04);
  color: var(--text);
  font-weight: 800;
  min-height: 44px;
}
.input:focus, .btn:focus, a:focus{
  outline: none;
  box-shadow: 0 0 0 3px var(--focus);
  border-color: rgba(242,240,235,.22);
}


/* =========================
   Now Playing + Footer (FINAL)
   Safari-safe, footer never blocked
   ========================= */

:root{
  /* Measure your NP bar height generously.
     If you later make the NP bar taller, increase this number. */
  --npH: 150px;
  --npGap: 16px;
}

/* Default page bottom spacing when NP is NOT showing */
body{
  padding-bottom: 24px;
}

/* When Now Playing is visible, reserve space so footer scrolls ABOVE it */
body.npOn{
  padding-bottom: calc(var(--npH) + var(--npGap) + env(safe-area-inset-bottom));
}

/* Now Playing bar slide behavior */
:root{
  --npH: 150px;   /* reserve space for NP bar (tall enough for your layout) */
  --npGap: 16px;  /* little breathing room above it */
}

/* Default bottom spacing when NP is hidden */
body{
  padding-bottom: 24px;
}

/* When NP is visible, reserve space so footer scrolls ABOVE it */
body.npOn{
  padding-bottom: calc(var(--npH) + var(--npGap) + env(safe-area-inset-bottom));
}
.npBar{
  position: fixed;
  left: 0;
  right: 0;

  /* Hidden state: move it fully off-screen */
  bottom: calc(-1 * (var(--npH) + env(safe-area-inset-bottom)));

  transition: bottom .25s ease;
  z-index: 60;

  /* Helps Safari with touch accuracy around fixed layers */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.npBar.show{
  bottom: 0;
}

/* Footer: ALWAYS centered */
.footer{
  margin: 22px auto 10px;
  text-align: center;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer a{
  display: inline-block;
}

/* ===== Homepage hero ===== */
.hero{ padding-top: 10px; }

.heroCard{
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(242,240,235,.06), rgba(242,240,235,.03));
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
  padding: 18px;
}

.heroTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.heroTitle{
  margin: 0;
  font-size: 22px;
  font-weight: 1000;
  letter-spacing: .2px;
}

.heroSub{
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 800;
  max-width: 70ch;
}

.heroCtas{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.heroStats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.homeEmbed{
  margin-top: 14px;
}
.homeEmbedInner{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 12px;
  background: rgba(0,0,0,.18);
}
.homeEmbedTitle{
  font-weight: 700;
  margin-bottom: 4px;
}
.homeEmbedCaption{
  opacity: .85;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.3;
}
.homeEmbedFrameWrap{
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
  border-radius: 12px;
}
.homeEmbedFrame{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.stat{
  border: 1px solid rgba(242,240,235,.12);
  background: rgba(242,240,235,.03);
  border-radius: 14px;
  padding: 12px;
}

.statK{
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .15px;
  color: rgba(242,240,235,.92);
}

.statV{
  margin-top: 4px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(242,240,235,.72);
}

@media (max-width: 720px){
  .heroStats{ grid-template-columns: 1fr; }
}

/* ===========================
   Header brand pop (classy tech)
   =========================== */

/* Logo tile: glass + subtle neon edge (not tacky) */
.logo{
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 12px 28px rgba(0,0,0,.35),
    0 0 18px rgba(0,212,255,.10);
  overflow: hidden;
}

/* Make the logo tile a clean container for the image/text */
.logo{
  display:flex;
  align-items:center;
  justify-content:center;
  width: 56px;
  height: 56px;
  padding: 0; /* prevent “floating” inside the tile */
}

.brandLogo{
  display:block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}

.logo > span#brandText{
  display: inline-block;
}

/* subtle tech gradient wash */
.logo::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,.18),
    rgba(0,212,255,.12),
    rgba(255,255,255,0)
  );
  opacity: .55;
}

/* soft glare streak */
.logo::after{
  content:"";
  position:absolute;
  left:-65%;
  top:-45%;
  width:125%;
  height:125%;
  pointer-events:none;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), rgba(255,255,255,0) 58%);
  transform: rotate(-10deg);
  opacity: .38;
}

/* Title: clean tech glow + underline beam */
.brandTitle{
  position: relative;
  letter-spacing: .02em;
  text-shadow:
    0 8px 24px rgba(0,0,0,.45),
    0 0 16px rgba(0,212,255,.10);
}

.brandTitle::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-10px;
  height:2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0),
    rgba(0,212,255,.55),
    rgba(0,0,0,0)
  );
  opacity: .50;
}

/* Subline: slightly clearer + tighter */
.brandSub{
  opacity: .90;
  letter-spacing: .01em;
  margin-top: 16px;

}
/* ===========================
   STREETIER header + spacing (overrides)
   =========================== */

/* Give the whole header more breathing room and a subtle separation */
.header{
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background:
    radial-gradient(900px 220px at 18% -40%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(700px 240px at 78% -30%, rgba(255,255,255,.04), transparent 62%);
}

/* Layout spacing so the brand doesn't feel cramped */
.headerInner{
  align-items: center;
  gap: 14px;
}

/* Brand group spacing */
.brand{
  gap: 10px;
  align-items: center;
}

/* O1P tile: darker, harder edge, subtle grit (street) */
.logo{
  position: relative;
  border-radius: 12px;
  padding: 7px 10px;
  font-weight: 900;
  letter-spacing: .06em;

  background: rgba(0,0,0,.38);
  border: 1px solid rgba(255,255,255,.16);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 10px 22px rgba(0,0,0,.42);

  overflow: hidden;
}

/* gritty sweep (very subtle) */
.logo::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), transparent 55%),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.03) 0px,
      rgba(255,255,255,.03) 1px,
      rgba(255,255,255,0) 5px,
      rgba(255,255,255,0) 9px
    );
  opacity: .55;
}

/* remove the "tech glare" look */
.logo::after{
  content:none;
}

/* Title: tighter, bolder, more "stamp" than "glow" */
.brandTitle{
  position: relative;
  font-weight: 900;
  letter-spacing: .01em;
  text-shadow: 0 10px 26px rgba(0,0,0,.50);
}

/* Replace neon underline with a streety accent slash */
.brandTitle::after{
  content:"";
  position:absolute;
  left: 0;
  bottom: -7px;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.18),
    rgba(255,255,255,0)
  );
  opacity: .55;
}

/* Subline: cleaner and slightly more present */
.brandSub{
  opacity: .92;
  letter-spacing: .01em;
}

/* Responsive spacing so it doesn't feel tight on smaller widths */
@media (max-width: 820px){
  .header{ padding-top: 12px; padding-bottom: 12px; }
  .headerInner{ gap: 10px; }
  .brandTitle::after{ width: 56px; }
}
/* ===========================
   FIX: O1P tile centering + no crop
   =========================== */

.logo{
  /* force true center */
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* stable box so text can't clip */
  height: 28px;
  min-width: 44px;
  padding: 0 10px;

  line-height: 1;
  text-align: center;
  overflow: visible; /* ✅ prevents cropping the P */
  font-size: 20px;   /* tuned so O1P fits cleanly */
  font-weight: 1000;
  letter-spacing: .08em;

  /* keep your streety look but cleaner */
  background: rgba(0,0,0,.42);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 10px 22px rgba(0,0,0,.42);
}

/* Put the texture BEHIND the text */
.logo::before{
  z-index: 0;
}
.logo{
  position: relative;
}
.logo > *{
  position: relative;
  z-index: 1;
}
/* ===========================
   Header title pop (classy street)
   =========================== */

.brandTitle{
  font-weight: 1000;
  letter-spacing: .01em;
  font-size: 18px;
  line-height: 1.05;

  /* punch without neon */
  text-shadow:
    0 14px 34px rgba(0,0,0,.55),
    0 0 0 rgba(0,0,0,0);
}

/* short “ink swipe” underline */
.brandTitle::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-7px;
  width: 84px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.22),
    rgba(255,255,255,.06),
    rgba(255,255,255,0)
  );
  opacity: .55;
}

/* subline slightly tighter */
.brandSub{
  margin-top: 2px;
  opacity: .90;
}

/* ===========================
   Brand title animated underline (classy tech)
   =========================== */

.brandTitle{
  position: relative;
}

.brandTitle::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-7px;
  width: 92px;
  height: 3px;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,0) 0%,
      rgba(255,255,255,.14) 20%,
      rgba(0,212,255,.45) 50%,
      rgba(255,255,255,.10) 80%,
      rgba(0,0,0,0) 100%);
  background-size: 220% 100%;
  opacity: .55;
  animation: brandSweep 2.8s ease-in-out infinite;
}

@keyframes brandSweep{
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Only run the animation when header is visible/hovered to keep it premium */
.header:not(:hover) .brandTitle::after{
  animation-duration: 3.6s;
  opacity: .42;
}

@media (prefers-reduced-motion: reduce){
  .brandTitle::after{ animation: none; }
}

/* ===========================
   Header spacing + street alignment
   =========================== */

.header{
  padding: 16px 0;
}

.headerInner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}

/* Keep brand block compact and left-weighted */
.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;

  /* pill badge */
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 14px 34px rgba(0,0,0,.35);
}

/* Give the title group a bit more presence */
.brandTitle{
  font-size: 18px;
  line-height: 1.05;
}

.brandSub{
  margin-top: 2px;
  font-size: 12px;
  opacity: .90;
}

/* Mobile: stack cleaner */
@media (max-width: 820px){
  .header{ padding: 12px 0; }
  .headerInner{ gap: 12px; }
}
/* ===========================
   Logo micro parallax (subtle)
   =========================== */

.logo{
  transform: translate3d(var(--lx, 0px), var(--ly, 0px), 0);
  transition: transform .18s ease, box-shadow .18s ease;
  will-change: transform;
}

.logo.isParallax{
  box-shadow:
    0 18px 44px rgba(0,0,0,.40),
    0 0 0 1px rgba(255,255,255,.10);
}

@media (prefers-reduced-motion: reduce){
  .logo{ transition: none; transform: none !important; }
}
/* ===========================
   Mobile: tighten logo + title group
   =========================== */

@media (max-width: 520px){
  .header{ padding: 10px 0; }

  .headerInner{
    gap: 10px;
  }

  .brand{
    gap: 10px;
    align-items: center;
    padding: 8px 10px; /* smaller pill on mobile */
  }

  /* slightly smaller tile so it doesn't dominate */
  .logo{
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }
  .brandLogo{
    width: 36px;
    height: 36px;
  }

  /* reduce vertical stack spacing */
  .brandTitle{
    font-size: 16px;
    line-height: 1.05;
  }

  .brandTitle::after{
    width: 72px;
    bottom: -9px;
  }

  .brandSub{
    margin-top: 10px;
    font-size: 11px;
  }
}
/* ===========================
   Footer + Legal pages
   =========================== */

.siteFooter{
  margin-top: 26px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(7,9,13,.85);
}

.footerInner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
}

.footerBrand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 1000;
  letter-spacing: .4px;
}

.footerLogo{
  display:inline-grid;
  place-items:center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(242,240,235,.14);
  background: linear-gradient(180deg, rgba(242,240,235,.08), rgba(242,240,235,.03));
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  font-size: 12px;
}

.footerMini{
  margin-top: 8px;
  font-size: 12px;
  opacity: .7;
}

.footerLinks{
  display:flex;
  flex-wrap:wrap;
  gap: 10px 14px;
  justify-content:flex-end;
}

.footerLinks a{
  color: inherit;
  text-decoration: none;
  font-size: 12px;
  opacity: .75;
  border-bottom: 1px solid rgba(0,212,255,.0);
}

.footerLinks a:hover{
  opacity: 1;
  border-bottom-color: rgba(0,212,255,.55);
}

@media (max-width: 720px){
  .footerInner{ flex-direction:column; }
  .footerLinks{ justify-content:flex-start; }
}

/* Legal page card */
.legalCard{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}

.legalH{
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 1000;
}

.legalH2{
  margin: 16px 0 8px 0;
  font-size: 14px;
  font-weight: 1000;
  opacity: .95;
}

.legalP{
  margin: 0 0 10px 0;
  line-height: 1.55;
  opacity: .88;
}

.legalList{
  margin: 0 0 10px 18px;
  opacity: .88;
  line-height: 1.55;
}

.legalNote{
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  font-size: 12px;
  line-height: 1.5;
}
/* ===========================
   Top banner (recoverable errors)
   =========================== */
.topBanner{
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 10px 0;
  background: rgba(0,0,0,.55);
  border-bottom: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}

.topBannerInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}

.topBannerMsg{
  font-size: 12px;
  opacity: .92;
}

.topBannerBtn{
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: inherit;
  font-weight: 900;
  cursor: pointer;
}

.topBannerBtn:hover{
  border-color: rgba(0,212,255,.35);
}

.homeEmbed{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.homeEmbedTop{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:10px;
}
.homeEmbedTitle{
  font-weight: 900;
  font-size: 14px;
}
.homeEmbedCaption{
  opacity:.8;
  font-size: 13px;
}
.embedRatio{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow:hidden;
  background: rgba(0,0,0,.25);
}
.embedRatio iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* ===========================
   PREMIUM HEADER OVERRIDES (2026-03-04)
   Paste this block at the VERY END of site.css
   =========================== */

.header{
  /* full-width, premium glass */
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(900px 240px at 18% -40%, rgba(255,255,255,.08), transparent 60%),
    radial-gradient(800px 260px at 78% -35%, rgba(255,255,255,.06), transparent 62%),
    rgba(0,0,0,.55);
  backdrop-filter: blur(14px);
}

.headerInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

/* Make the whole topbar layout feel “designed” */
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap: 12px;
  width: 100%;
}

/* ===== Brand pill (logo + name) ===== */
.brand{
  display:flex;
  align-items:center;
  gap: 12px;

  /* pill badge */
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 18px 45px rgba(0,0,0,.45);
}

/* Logo container becomes a clean “avatar” */
.logo{
  display:flex;
  align-items:center;
  justify-content:center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  overflow:hidden;

  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 10px 22px rgba(0,0,0,.40);
}

/* Kill any older “tile” texture/glare rules */
.logo::before,
.logo::after{
  content: none !important;
}

/* Uploaded logo image: contained, centered, crisp */
.brandLogo{
  display:block;
  width: 100%;
  height: 100%;
  object-fit: contain;   /* change to 'contain' if you prefer no crop */
  object-position: center;
}

/* Fallback text (O1P) if no logo set */
#brandText{
  font-weight: 1000;
  letter-spacing: .06em;
  font-size: 14px;
}

/* Brand typography: premium, tight */
.brandTitle{
  margin: 0;
  font-weight: 1000;
  letter-spacing: .01em;
  font-size: 16px;
  line-height: 1.05;
  text-shadow: 0 12px 34px rgba(0,0,0,.55);
}

/* Remove any underline/animated underline from older styles */
.brandTitle::after{
  content: none !important;
}

.brandSub{
  margin-top: 2px;
  font-size: 12px;
  opacity: .82;
  letter-spacing: .01em;
}

/* ===== Search/actions row alignment ===== */
.topbar > .row{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 10px;
  flex: 1 1 520px;      /* gives the row room on desktop */
  min-width: 320px;
}

/* Keep inputs/buttons from feeling cramped */
#q.input{
  min-width: 220px;
}

/* Make the 2nd row (Sort + status) look intentional */
.header .row + .row{
  margin-top: 10px;
}

/* ===== Mobile: stack cleanly and keep brand pill full width ===== */
@media (max-width: 820px){
  .header{ padding: 12px 0; }
  .headerInner{ gap: 10px; }

  .brand{
    width: 100%;
    justify-content:flex-start;
  }

  .topbar > .row{
    width: 100%;
    justify-content:flex-start;
    flex: 1 1 auto;
    min-width: 0;
  }

  #q.input{ flex: 1; min-width: 0; }
}

/* ===========================
   PREMIUM HEADER + BROWSE BAR (2026-03-04)
   Paste at END of site.css
   =========================== */

/* Header row: stop clunkiness */
.header .headerRow{
  width: 100%;
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Search should feel like the main control */
.header .headerSearch{
  flex: 1 1 420px;
  min-width: 260px;
}

/* Buttons look consistent + premium spacing */
.header .headerRow .btn{
  height: 40px;
  padding: 0 12px;
}

/* Drop CTA slightly more “primary” without being loud */
.header .dropCta{
  border-radius:999px;
  font-weight:900;
}

/* ===== Browse bar (filters near the grid) ===== */
.browseBar{
  margin: 14px 0 10px;
}

.browseInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.30);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 18px 50px rgba(0,0,0,.35);
}

.browseLeft,
.browseRight{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}

.browseLeft .select,
.browseRight .select{
  height: 40px;
}

.clearPill{
  height: 40px;
  border-radius: 999px;
  padding: 0 12px;
}

/* Mobile: filters become a clean stacked bar */
@media (max-width: 820px){
  .browseInner{
    flex-direction: column;
    align-items: stretch;
  }
  .browseLeft,
  .browseRight{
    width: 100%;
    justify-content: flex-start;
  }
  .browseLeft .select,
  .browseRight .pill{
    width: 100%;
  }
  .browseRight .pill{
    display:flex;
    justify-content: space-between;
    align-items:center;
    gap: 10px;
  }
}

/* ===========================
   HEADER 3-ZONE LAYOUT (2026-03-04)
   Paste at END of site.css
   =========================== */

/* Keep topbar on one line on desktop */
.topbar{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: nowrap;
}

/* Zones: search + actions */
.headerZones{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0; /* critical for flex truncation */
}

.headerZoneSearch{
  flex: 1 1 520px; /* search grows */
  min-width: 260px;
  max-width: 720px;
}

.headerZoneActions{
  flex: 0 0 auto;
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Search should feel premium */
.headerSearch{
  height: 42px;
  border-radius: 999px;
}

/* Buttons align and feel consistent */
.headerZoneActions .btn{
  height: 42px;
  border-radius: 999px;
  padding: 0 14px;
}

/* Make “Join Drop List” the lead CTA visually */
.headerZoneActions .dropCta{
  font-weight: 900;
}

/* MOBILE: stack cleanly and full-width */
@media (max-width: 820px){
  .topbar{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  /* brand pill becomes full width */
  .brand{
    width: 100%;
  }

  .headerZones{
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .headerZoneSearch{
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  /* actions become a clean row under search */
  .headerZoneActions{
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
  }

  .headerZoneActions .btn{
    flex: 1 1 auto;
    min-width: 0;
  }
}

/* ===========================
   PREMIUM HERO REMODEL (2026-03-04)
   Paste at END of site.css
   =========================== */

.heroCardPremium{
  padding: 18px;
  background:
    radial-gradient(900px 380px at 20% 0%, rgba(255,255,255,.08), transparent 60%),
    radial-gradient(800px 340px at 78% 15%, rgba(255,255,255,.06), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 26px 80px rgba(0,0,0,.45);
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
  align-items: stretch;
}

.heroCopy{
  padding: 6px 4px;
}

.heroChips{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 14px;
}

.chip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  font-weight: 800;
  font-size: 12px;
  opacity: .95;
}

.heroActions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btnGhost{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
}

.heroMedia{
  display:flex;
}

.mediaCard{
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.26);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 22px 60px rgba(0,0,0,.40);
  overflow: hidden;
  display:flex;
  flex-direction: column;
}

.mediaTop{
  padding: 12px 12px 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.mediaTitle{
  font-weight: 1000;
  letter-spacing: .01em;
  font-size: 13px;
  margin-bottom: 4px;
}

.mediaCaption{
  font-size: 12px;
  opacity: .8;
}

.homeEmbed{
  display:block;
  padding: 12px;
}

.homeEmbedFrame .embedRatio,
.homeEmbedFrameWrap{
  border-radius: 14px;
  overflow: hidden;
}

.mediaFallback{
  padding: 14px 12px 16px;
  opacity: .85;
}

.mediaFallbackK{
  font-weight: 1000;
  margin-bottom: 6px;
}

.mediaFallbackV{
  font-size: 12px;
  opacity: .82;
}

/* Mobile: stack and keep actions clean */
@media (max-width: 900px){
  .heroGrid{
    grid-template-columns: 1fr;
  }
}

/* ===== Hero layout reflow: 1-col by default, 2-col only when embed exists ===== */
.heroGrid{
  grid-template-columns: 1fr !important;
}

.hasHomeEmbed .heroGrid{
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .9fr) !important;
}

/* When no embed, make spacing feel intentional */
.heroRight{
  display: none;
}
.hasHomeEmbed .heroRight{
  display: block;
}

/* ===== Premium header zones ===== */
.headerInnerHome{
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 12px;
}

.headerZones{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 12px;
  width: 100%;
}

.headerZoneSearch{
  flex: 1 1 520px;
  max-width: 640px;
  display:flex;
  align-items:center;
  gap: 10px;
}

.headerSearch{
  flex: 1 1 auto;
  min-width: 220px;
}

.headerZoneActions{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Brand pill feel (premium badge) */
.brand{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(242,240,235,.14);
  background: rgba(242,240,235,.04);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
}

.logo{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  overflow:hidden;
  border: 1px solid rgba(242,240,235,.14);
}

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

/* ===== Browse bar (filters near beats) ===== */
.browseBar{
  margin: 10px 0 12px;
}

.browseInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(242,240,235,.12);
  background: rgba(242,240,235,.03);
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
}

.browseLeft, .browseRight{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Mobile tuning */
@media (max-width: 900px){
  .headerZones{
    flex-direction: column;
    align-items: stretch;
  }
  .headerZoneSearch{
    max-width: none;
  }
  .headerZoneActions{
    justify-content: flex-start;
  }
}

/* ===== HERO PREMIUM POLISH ===== */

.hero{
  margin-top: 16px;
}

.heroPremium{
  padding: 28px 32px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 40px 100px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 34px;
  align-items:center;
}

.heroLeft{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.heroCtasPremium{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.heroStatsPremium{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:14px;
  margin-top:6px;
}

.stat{
  padding:12px 14px;
  border-radius:14px;
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
}

.statK{
  font-size:13px;
  opacity:.8;
}

.statV{
  font-weight:700;
  font-size:14px;
}

/* ===== EMBED POLISH ===== */

.homeEmbedPremium{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,.4);
}

.homeEmbedFrame iframe{
  width:100%;
  height:280px;
  border:0;
}

/* ===== BROWSE BAR PREMIUM ===== */

.browseBar{
  margin:24px 0 10px;
}

.browseInner{
  padding:14px 18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.browseLeft select,
.browseRight select{
  border-radius:10px;
}

/* ===== GRID SPACING IMPROVEMENT ===== */

.grid{
  margin-top:18px;
  gap:18px;
}

/* ===== MOBILE HERO ===== */

@media (max-width: 900px){

  .heroGrid{
    grid-template-columns: 1fr;
  }

  .heroStatsPremium{
    grid-template-columns: 1fr;
  }

  .homeEmbedFrame iframe{
    height:220px;
  }

}

/* ================================
   PREMIUM HEADER (FULL-WIDTH FEEL)
   Paste block: END of site.css
================================ */

/* Make the header read as a full-width surface */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.70),
    rgba(0,0,0,.45)
  );
  border-bottom: 1px solid rgba(242,240,235,.10);
}

/* Give the main content a consistent max width, but keep header background full width */
.wrap{
  max-width: 1180px;
}

/* Header inner spacing + alignment */
.headerInner{
  padding-top: 14px;
  padding-bottom: 14px;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

/* Brand block becomes a premium pill */
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(242,240,235,.14);
  background: rgba(242,240,235,.04);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
}

/* Logo as a clean contained mark */
.logo{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(242,240,235,.14);
  background: rgba(0,0,0,.35);
  display:flex;
  align-items:center;
  justify-content:center;
}
.brandLogo{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
#brandText{
  font-weight: 1000;
}

/* Right side: search + actions feel like a single system */
.headerZones{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 12px;
  flex: 1 1 auto;
}

.headerZoneSearch{
  flex: 1 1 560px;
  max-width: 640px;
  display:flex;
  align-items:center;
  gap: 10px;
}

.headerSearch{
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(242,240,235,.12);
  background: rgba(242,240,235,.03);
  padding: 12px 14px;
}

.headerZoneActions{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Buttons: more premium shape/weight */
.header .btn{
  border-radius: 999px;
  padding: 10px 12px;
}
.header .btnPrimary{
  border-radius: 999px;
}

/* Mobile: stack search and actions cleanly */
@media (max-width: 900px){
  .topbar{
    flex-direction: column;
    align-items: stretch;
  }
  .headerZones{
    flex-direction: column;
    align-items: stretch;
  }
  .headerZoneActions{
    justify-content: flex-start;
  }
}

/* ================================
   PREMIUM BROWSE BAR (STICKY)
   Paste block: END of site.css
================================ */

.browseBar{
  position: sticky;
  top: 86px; /* sits under sticky header */
  z-index: 40;

  margin: 14px 0 10px;
}

.browseInner{
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(242,240,235,.12);
  background: rgba(0,0,0,.40);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 22px 70px rgba(0,0,0,.35);

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.browseLeft, .browseRight{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}

.browseBar .select{
  border-radius: 999px;
  padding: 10px 12px;
  border: 1px solid rgba(242,240,235,.12);
  background: rgba(242,240,235,.03);
}

.browseBar .pill{
  border-radius: 999px;
  padding: 8px 10px;
  border: 1px solid rgba(242,240,235,.10);
  background: rgba(242,240,235,.03);
}

/* Mobile: ensure it doesn't feel cramped and top offset matches header stack */
@media (max-width: 900px){
  .browseBar{
    top: 156px;
  }
  .browseInner{
    flex-direction: column;
    align-items: stretch;
  }
  .browseRight{
    justify-content: space-between;
  }
}

/* ================================
   HERO GRID AUTO LAYOUT
================================ */

/* default = embed hidden → single column hero */
.heroGrid{
  grid-template-columns: 1fr;
}

/* when embed becomes visible → two columns */
.heroGrid.hasEmbed{
  grid-template-columns: 1.1fr .9fr;
}

/* tighten hero spacing */
.heroPremium{
  padding: 28px;
  border-radius: 22px;
}

/* make video container feel premium */
.homeEmbedPremium{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(242,240,235,.12);
  background: rgba(0,0,0,.35);
}

/* responsive */
@media (max-width:900px){

  .heroGrid.hasEmbed{
    grid-template-columns:1fr;
  }

}

/* =============================================
   SITE.CSS ADDITIONS — Paste at very end
   Space Grotesk + header/hero/footer overrides
   ============================================= */

/* Hide the old header and footer elements if they still exist */
.header { display: none !important; }
.footer { display: none !important; }
.siteFooter { display: none !important; }

/* Space Grotesk global */
html, body {
  font-family: 'Barlow', system-ui, -apple-system, sans-serif;
}

/* Now Playing bar uses Space Grotesk */
.npTitle, .npMeta, .npTime, .npDur {
  font-family: 'Space Grotesk', sans-serif;
}

/* Browse bar selects */
#genre, #mood, #sort {
  font-family: 'Space Grotesk', sans-serif;
}

/* Input fields */
input, select, button, textarea {
  font-family: 'Space Grotesk', sans-serif;
}

/* Cart drawer Space Grotesk */
.cartItemTitle, .cartItemMeta {
  font-family: 'Space Grotesk', sans-serif;
}

/* Modal */
.modal th, .modal td {
  font-family: 'Space Grotesk', sans-serif;
}

/* Toast */
.toastTitle, .toastMsg {
  font-family: 'Space Grotesk', sans-serif;
}

/* Hero scroll behavior — smooth */
html {
  scroll-behavior: smooth;
}

/* Ensure siteGrid beats grid sits correctly */
.siteGrid #grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
@media (max-width: 980px) {
  .siteGrid #grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .siteGrid #grid { grid-template-columns: 1fr; }
}

/* Skeleton grid inside siteGrid */
.siteGrid .skelGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
@media (max-width: 980px) {
  .siteGrid .skelGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .siteGrid .skelGrid { grid-template-columns: 1fr; }
}

/* Status pill — hidden from customers */
#status { display: none !important; }

/* Footer logo mix-blend */
.siteFooterMark img {
  mix-blend-mode: screen;
}

/* Search input in header — override .input class if it bleeds */
.siteSearchInput {
  font-family: 'Space Grotesk', sans-serif !important;
}