/* ============================================================
   OSEBEATSS — stylesheet
   Matched to the BLVCK BeatStars Pro Page at osebeatss.shop:
   pure black, Poppins, monochrome, near-square corners.

   The old gold identity lives in the --gold* vars below — set them
   back to #f0b73f / #cf8a2c and --accent-rgb to 247, 183, 51 to
   restore it everywhere in one edit.
   ============================================================ */

:root {
  --bg: #000000;
  --bg-2: #0d0d0d;
  --card: #191919;
  --card-hover: #212121;
  --border: rgba(255, 255, 255, 0.12);
  /* "gold" is now BLVCK's light-grey accent — same var names, no gold. */
  --gold: #e0e0e0;
  --gold-2: #bdbdbd;
  --gold-grad: linear-gradient(135deg, #ededed 0%, #c7c7c7 100%);
  --accent-rgb: 224, 224, 224;
  --text: #ffffff;
  --muted: #9e9e9e;
  --font-display: "Poppins", Helvetica, sans-serif;
  --font-body: "Poppins", Helvetica, sans-serif;
  --radius: 4px;
  --nav-h: 68px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* ---------- utilities ---------- */
.section { padding: 96px 24px; max-width: 1200px; margin: 0 auto; }

.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-head p { color: var(--muted); max-width: 560px; margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: var(--gold-grad);
  color: #000000;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}
.btn-gold:hover { box-shadow: 0 8px 22px rgba(0, 0, 0, 0.38); transform: translateY(-1px); }
.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.nav.scrolled { background: rgba(0, 0, 0, 0.94); border-color: var(--border); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}
.brand span { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: 0.92rem; transition: color 0.15s ease; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { white-space: nowrap; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.3; }
.glow-a { width: 520px; height: 520px; background: rgba(255, 255, 255, 0.07); top: -190px; right: -150px; }
.glow-b { width: 440px; height: 440px; background: rgba(255, 255, 255, 0.05); bottom: -170px; left: -150px; }
.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent 75%);
}
.hero-inner { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  background: rgba(var(--accent-rgb), 0.08);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: normal;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto 34px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 54px; }
.hero-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span { color: var(--muted); font-size: 0.85rem; }

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.marquee-track span:nth-child(odd) { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- store / beat grid ---------- */
.store { padding-top: 72px; }
.filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}
.filter-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.15s ease;
}
.filter-chip:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.25); }
.filter-chip.active {
  background: var(--gold-grad);
  color: #000000;
  border-color: transparent;
}

.beat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
}

.beat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.beat-card:hover {
  transform: translateY(-5px);
  background: var(--card-hover);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

.beat-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cover-watermark {
  position: absolute;
  inset: auto 0 8px 0;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  color: rgba(255, 255, 255, 0.4);
}
.cover-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.play-btn {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.18s ease, background 0.18s ease;
}
.play-btn:hover { transform: scale(1.1); background: rgba(0, 0, 0, 0.55); }
.ico-pause { display: none; }
.beat-card.playing .play-btn { background: var(--gold-grad); border-color: transparent; color: #000000; }
.beat-card.playing .ico-play { display: none; }
.beat-card.playing .ico-pause { display: block; }

/* equalizer bars */
.eq {
  position: absolute;
  bottom: 12px;
  right: 14px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.eq span { width: 3px; border-radius: 2px; background: var(--gold); }
.beat-card.playing .eq { opacity: 1; }
.beat-card.playing .eq span { animation: eq 0.9s ease-in-out infinite; }
.beat-card.playing .eq span:nth-child(1) { animation-delay: 0s; }
.beat-card.playing .eq span:nth-child(2) { animation-delay: 0.18s; }
.beat-card.playing .eq span:nth-child(3) { animation-delay: 0.36s; }
.beat-card.playing .eq span:nth-child(4) { animation-delay: 0.12s; }
.beat-card.playing .eq span:nth-child(5) { animation-delay: 0.3s; }
@keyframes eq {
  0%, 100% { height: 4px; }
  50% { height: 22px; }
}

.beat-info { padding: 18px; }
.beat-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.beat-title-row h3 { font-family: var(--font-display); font-size: 1.22rem; font-weight: 800; }
.beat-meta-chip {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.beat-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.beat-tags span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 999px;
}
.beat-desc { color: var(--muted); font-size: 0.88rem; margin-bottom: 16px; }

.license-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.license-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 6px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.15s ease;
}
.license-btn:hover { border-color: rgba(255, 255, 255, 0.3); transform: translateY(-2px); }
.license-btn .l-name { font-size: 0.72rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.license-btn .l-price { font-family: var(--font-display); font-weight: 800; font-size: 0.98rem; }
.license-btn.hot {
  border-color: rgba(var(--accent-rgb), 0.55);
  background: rgba(var(--accent-rgb), 0.1);
}
.license-btn.hot .l-price { color: var(--gold); }

.buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  background: var(--gold-grad);
  color: #000000;
  font-weight: 700;
  font-size: 0.92rem;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.buy-btn:hover { box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.4); transform: translateY(-2px); }

.store-note { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 40px; }
.store-note a { color: var(--gold); border-bottom: 1px solid rgba(var(--accent-rgb), 0.4); }
.store-note a:hover { border-color: var(--gold); }

/* ---------- licenses ---------- */
.license-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  align-items: stretch;
}
.license-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.license-card:hover { transform: translateY(-4px); box-shadow: 0 14px 38px rgba(0, 0, 0, 0.4); }
.license-card.featured {
  border-color: rgba(var(--accent-rgb), 0.6);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.09), rgba(var(--accent-rgb), 0.05));
}
.ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-grad);
  color: #000000;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.license-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.license-card .price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 18px;
}
.license-card.featured .price { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.license-card ul { list-style: none; display: grid; gap: 10px; }
.license-card li { color: var(--muted); font-size: 0.9rem; padding-left: 24px; position: relative; }
.license-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- about ---------- */
.about { max-width: 1000px; }
.about-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.about-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; margin-bottom: 16px; }
.about-text p { color: var(--muted); margin-bottom: 14px; }
.socials { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.social {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.15s ease;
}
.social:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.about-art { display: flex; justify-content: center; }
.vinyl {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #111 12%, #1b1b1f 13%, #0d0d0f 60%, #050507 100%);
  background-size: 14px 14px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  animation: spin 9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.vinyl-label {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.78rem;
  color: #000000;
  letter-spacing: 0.06em;
}

/* ---------- live BeatStars player ---------- */
.bs-shell {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 10px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}
.bs-shell iframe { display: block; }
.bs-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  color: var(--muted);
  font-size: 0.92rem;
  gap: 10px;
}
.bs-loading::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid rgba(var(--accent-rgb), 0.3);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.bs-placeholder {
  text-align: center;
  padding: 48px 24px;
  color: var(--muted);
}
.bs-placeholder strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 10px;
}
.bs-placeholder p { max-width: 480px; margin: 0 auto 22px; font-size: 0.9rem; }
.bs-placeholder code {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 0.82rem;
  color: var(--gold);
}

/* caption + troubleshooting under the BeatStars player */
.bs-caption {
  max-width: 720px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}
.bs-src {
  display: block;
  font-size: 0.72rem;
  opacity: 0.7;
  overflow-wrap: anywhere;
  margin-bottom: 8px;
}
.bs-help-toggle {
  background: none;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.bs-help-toggle:hover { border-color: var(--gold); background: rgba(var(--accent-rgb), 0.08); }
.bs-help {
  margin-top: 14px;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
}
.bs-help ol { display: grid; gap: 10px; padding-left: 20px; }
.bs-help li { font-size: 0.85rem; }
.bs-help code {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  padding: 1px 6px;
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--gold);
}

/* ---------- live BeatStars catalog ---------- */
.live { padding-top: 88px; }
.live-sort {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}
.live-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.live-note {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  padding: 48px 20px;
}
.live-note code {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 0.82rem;
  color: var(--gold);
}
.live-note a { color: var(--gold); border-bottom: 1px solid rgba(var(--accent-rgb), 0.4); }
.live-cover { position: relative; }
.live-cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.live-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 4, 10, 0.15) 0%, rgba(5, 4, 10, 0) 45%, rgba(5, 4, 10, 0.55) 100%);
  pointer-events: none;
}
.live-cover .play-btn,
.live-cover .eq,
.live-cover .cover-tag { z-index: 2; }

/* "New drop" badge */
.cover-tag.new-tag {
  left: auto;
  right: 12px;
  background: var(--gold-grad);
  color: #000000;
  border-color: transparent;
  animation: newPulse 2s ease-in-out infinite;
}
@keyframes newPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.55); }
  50% { box-shadow: 0 0 0 6px rgba(var(--accent-rgb), 0); }
}

/* ---------- spin-to-win deal page ---------- */
.deal-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 56px) 24px 12px;
  overflow: hidden;
}
.deal-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.deal-hero-inner { position: relative; max-width: 760px; text-align: center; }
.deal-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.deal-hero-inner h1 em {
  font-style: normal;
  color: var(--gold);
}
.deal-hero-inner p { color: var(--muted); max-width: 540px; margin: 0 auto 28px; font-size: 1.05rem; }
.deal-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}
.deal-steps span {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 9px 16px;
  border-radius: 999px;
}
.deal-steps i { color: var(--gold); font-style: normal; }

.deal-game { padding-top: 40px; }
.deal-panel {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 28px 44px;
  align-items: start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
}
.wheel-col { display: flex; flex-direction: column; align-items: center; gap: 16px; padding-top: 6px; }
.wheel-wrap { position: relative; width: 340px; height: 340px; }
.wheel-wrap::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  box-shadow: 0 0 70px rgba(var(--accent-rgb), 0.12), inset 0 0 46px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.wheel {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transition: transform 4.6s cubic-bezier(0.2, 0.6, 0.35, 1); /* mirrored in deal.js SPIN_EASE */
  will-change: transform;
}
.wheel svg { width: 100%; height: 100%; display: block; }
.wheel-pointer {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 30px solid var(--gold);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}
.spin-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.85);
  background: var(--gold-grad);
  color: #000000;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  animation: spinPulse 2.6s ease-in-out infinite;
  transition: transform 0.15s ease;
}
.spin-btn:hover:not(:disabled) { transform: translate(-50%, -50%) scale(1.08); }
/* ponytail: "TOMORROW" is 8 chars and overflows the 78px hub — shrink it in the
   only state that shows a long label (disabled). */
.spin-btn:disabled { animation: none; cursor: not-allowed; opacity: 0.75; font-size: 0.62rem; letter-spacing: 0.02em; }
@keyframes spinPulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45); }
  50% { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45), 0 0 0 5px rgba(240, 183, 63, 0.12); }
}
.deal-fine { color: var(--muted); font-size: 0.78rem; text-align: center; }
.sound-toggle {
  display: block;
  margin: 10px auto 0;
  background: none;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.sound-toggle:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.3); }
.sound-toggle[aria-pressed="false"] { opacity: 0.55; }

.deal-side { display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.deal-label { font-weight: 600; font-size: 0.95rem; }
.deal-select {
  width: 100%;
  min-width: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 4px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
}
.deal-select:focus { border-color: var(--gold); }
.deal-select option { background: #16111f; color: var(--text); }

/* type-to-search results */
.deal-results {
  margin-top: 8px;
  max-height: 300px;
  overflow-y: auto;
  background: #16111f;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 6px;
  -webkit-overflow-scrolling: touch;
}
.deal-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--text);
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
}
.deal-result-row:hover,
.deal-result-row:focus-visible { background: rgba(var(--accent-rgb), 0.12); outline: none; }
.drr-title { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.drr-price { color: var(--gold); font-weight: 600; flex-shrink: 0; }
.deal-result-empty { padding: 14px; color: rgba(255, 255, 255, 0.55); font-size: 0.9rem; text-align: center; }

/* selected beat card */
.deal-beat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 14px;
  animation: popIn 0.4s ease;
}
.deal-beat-thumb {
  width: 76px;
  height: 76px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  background: #151020;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.deal-beat-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb-loading { color: var(--muted); font-size: 0.9rem; }
.deal-beat-info { min-width: 0; }
.deal-kicker {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.deal-beat-info h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.deal-muted { color: var(--muted); font-size: 0.8rem; }

/* license options */
.deal-licenses { display: flex; flex-direction: column; gap: 12px; }
.deal-empty {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 5px;
  padding: 22px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.lic-head {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lic-count {
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 9px;
  border-radius: 999px;
}
.lic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lic-card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
.lic-card:hover { transform: translateY(-2px); border-color: rgba(var(--accent-rgb), 0.4); background: rgba(255, 255, 255, 0.06); }
.lic-card.lic-more { justify-content: center; }
.lic-name { font-size: 0.78rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.lic-price { font-family: var(--font-display); font-weight: 900; font-size: 1.25rem; }
.lic-feats { list-style: none; display: grid; gap: 4px; margin-top: 2px; }
.lic-feats li { font-size: 0.74rem; color: var(--muted); padding-left: 14px; position: relative; }
.lic-feats li::before { content: "•"; position: absolute; left: 2px; color: var(--gold); }

/* win view with per-license pricing */
.win-lic-head {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-align: left;
  margin-bottom: 10px;
}
.win-lic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; min-width: 0; }
.win-lic {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
  border-radius: 4px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wl-top { display: flex; align-items: baseline; justify-content: space-between; gap: 6px 12px; flex-wrap: wrap; }
.wl-name { font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; min-width: 0; overflow-wrap: anywhere; }
.wl-price { white-space: nowrap; }
.wl-price s { color: var(--muted); font-weight: 600; margin-right: 6px; }
.wl-price b { color: #ffffff; font-family: var(--font-display); font-size: 1.15rem; }
.wl-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.wl-save {
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 999px;
}

.deal-result { grid-column: 1 / -1; min-width: 0; animation: popIn 0.5s cubic-bezier(0.2, 1.4, 0.4, 1); }
@keyframes popIn {
  from { opacity: 0; transform: scale(0.94) translateY(10px); }
  to { opacity: 1; transform: none; }
}
.deal-win {
  min-width: 0;
  border: 1px solid rgba(var(--accent-rgb), 0.4);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.12), rgba(var(--accent-rgb), 0.06));
  border-radius: 6px;
  padding: 26px 24px;
  text-align: center;
}
/* Losing spin: same layout, drained of the gold celebration. */
.deal-nowin { border-color: var(--border); background: rgba(255, 255, 255, 0.03); }
/* the shared price line is a one-line beat title with an ellipsis; the losing
   copy is a full sentence, so let it wrap instead of getting cut off */
.deal-nowin .deal-price-line { white-space: normal; overflow: visible; text-overflow: clip; margin-bottom: 14px; }
.deal-nowin .deal-win-badge { color: var(--muted); }
.deal-nowin h3 strong { background: none; -webkit-text-fill-color: var(--text); color: var(--text); }
.deal-win-badge { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.deal-win h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; margin-bottom: 6px; }
.deal-win h3 strong { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.deal-price-line {
  font-size: 0.88rem;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  margin-bottom: 4px;
}
.deal-price { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; margin-bottom: 16px; }
.deal-price .orig { color: var(--muted); text-decoration: line-through; font-weight: 600; }
.deal-price .new { color: #ffffff; }
.deal-price .save { display: inline-block; margin-left: 8px; font-size: 0.72rem; background: rgba(255, 255, 255, 0.12); color: #ffffff; padding: 3px 9px; border-radius: 999px; vertical-align: middle; }

.code-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px dashed rgba(var(--accent-rgb), 0.6);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 16px;
}
.code-box code {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  overflow-wrap: anywhere;
  text-align: left;
}
.code-box button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 9px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.code-box button:hover { background: rgba(255, 255, 255, 0.18); }
.buy-cta { width: 100%; margin-bottom: 16px; }
.deal-howto {
  list-style: none;
  display: grid;
  gap: 8px;
  text-align: left;
  font-size: 0.85rem;
  color: var(--muted);
  counter-reset: step;
}
.deal-howto li { counter-increment: step; padding-left: 30px; position: relative; }
.deal-howto li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #000000;
  font-weight: 800;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.deal-howto code { color: var(--gold); }

/* claim mode (tier has no registered codes yet) */
.claim-box {
  border: 1px dashed rgba(var(--accent-rgb), 0.5);
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 14px;
  background: rgba(0, 0, 0, 0.25);
}
.claim-box p { color: var(--muted); font-size: 0.88rem; margin-bottom: 12px; }
.claim-box p strong { color: var(--text); }
.claim-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

#confetti {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
}

/* ---------- checkout page ---------- */
.co { padding-top: calc(var(--nav-h) + 40px); }
.co-panel {
  max-width: 640px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.co-loading { text-align: center; color: var(--muted); padding: 40px 0; }
.co-beat { display: flex; align-items: center; gap: 16px; }
.co-art {
  width: 84px;
  height: 84px;
  border-radius: 5px;
  object-fit: cover;
  flex-shrink: 0;
}
.co-art-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: #151020;
}
.co-beat h2 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; }
.co-body { display: flex; flex-direction: column; gap: 16px; }
.co-licenses { display: grid; gap: 10px; }
.co-lic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.co-lic:hover { transform: translateY(-1px); }
.co-lic.sel {
  border-color: rgba(var(--accent-rgb), 0.6);
  background: rgba(var(--accent-rgb), 0.08);
}
.co-lic input { accent-color: var(--gold); }
.co-lic-name { font-family: var(--font-display); font-weight: 800; font-size: 0.98rem; }
.co-lic-price { font-family: var(--font-display); font-weight: 900; font-size: 1.1rem; color: var(--gold); }
.co-hint { color: var(--muted); font-style: normal; font-size: 0.78rem; font-weight: 500; }
.co-summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}
.co-summary strong { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; color: var(--text); }
.co-disc { font-size: 0.76rem; }
.co-alt { text-align: center; color: var(--muted); font-size: 0.85rem; }
.co-alt a { color: var(--gold); border-bottom: 1px solid rgba(var(--accent-rgb), 0.4); }
.co-error { text-align: center; color: #ff8f8f; font-size: 0.85rem; }
.co-error a { color: var(--gold); }

/* ---------- thanks page ---------- */
.th { padding-top: calc(var(--nav-h) + 40px); }
.th-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.th-loading { color: var(--muted); }
.th-badge { font-size: 3rem; line-height: 1; }
.th-card h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; }
.th-license { color: var(--muted); font-size: 0.95rem; }
.th-card .buy-cta { max-width: 340px; }
.th-card .deal-muted { max-width: 420px; }

@media (max-width: 820px) {
  .deal-panel { grid-template-columns: 1fr; padding: 26px 20px; gap: 24px; }
  .wheel-wrap { width: min(78vw, 340px); height: min(78vw, 340px); }
  .win-lic-grid { grid-template-columns: 1fr; }
  .deal-steps i { display: none; }
  .nav-cta .btn-sm { padding: 8px 15px; font-size: 0.8rem; }
}

/* ---------- lead capture ---------- */
.lead-box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(var(--accent-rgb), 0.12), transparent 60%),
    var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 56px 32px;
}
.lead-box h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 12px; }
.lead-box p { color: var(--muted); margin-bottom: 26px; }
.lead-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.lead-form input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 13px 22px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s ease;
}
.lead-form input:focus { border-color: var(--gold); }
.lead-msg { font-weight: 600; color: #ffffff; margin-top: 18px !important; }

/* ---------- contact ---------- */
.contact-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer p { color: var(--muted); font-size: 0.85rem; }
.to-top { color: var(--muted); font-size: 0.85rem; transition: color 0.15s ease; }
.to-top:hover { color: var(--gold); }

/* ---------- now playing bar ---------- */
.now-playing {
  position: fixed;
  z-index: 90;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(18, 14, 26, 0.92);
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  border-radius: 999px;
  padding: 10px 10px 10px 18px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  max-width: calc(100vw - 32px);
}
.now-playing[hidden] { display: none; }
/* ponytail: `display:` in a component rule silently beats the UA [hidden] rule,
   which left empty placeholder cards on screen. One global guard, not per-component. */
[hidden] { display: none !important; }
.np-eq { display: flex; align-items: flex-end; gap: 2.5px; height: 20px; }
.np-eq span { width: 3px; border-radius: 2px; background: var(--gold); animation: eq 0.8s ease-in-out infinite; }
.np-eq span:nth-child(2) { animation-delay: 0.2s; }
.np-eq span:nth-child(3) { animation-delay: 0.35s; }
.np-eq span:nth-child(4) { animation-delay: 0.12s; }
.np-info { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.np-info strong { font-family: var(--font-display); font-size: 0.92rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.np-info span { font-size: 0.72rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.np-stop {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.np-stop:hover { background: rgba(255, 255, 255, 0.16); }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(11, 9, 16, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 10px 24px 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .hamburger { display: flex; }
  .about-inner { grid-template-columns: 1fr; gap: 34px; }
  .lead-form { flex-direction: column; }
  .hero-stats { gap: 26px; }
}
