/* ============================================================
   SAINTREWARDZ — black & pink
   ============================================================ */

:root {
  --bg: #08060a;
  --bg-2: #0e0a11;
  --panel: #140f1a;
  --panel-2: #1b1322;
  --line: rgba(244, 24, 116, 0.16);
  --line-soft: rgba(255, 255, 255, 0.06);
  --pink: #f41874;
  --pink-hot: #ff4d9a;
  --pink-soft: #ff8ec2;
  --pink-deep: #8f0c46;
  --text: #f7eef5;
  --muted: #a897b2;
  --muted: #a897b2;
  --kick: #53fc18;
  --font-display: 'Anton', 'Archivo Black', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --sidebar-w: 248px;
  --radius: 18px;
  --glow: 0 0 28px rgba(244, 24, 116, 0.45);
}

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

html { scroll-behavior: smooth; }

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

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

::selection { background: var(--pink); color: #fff; }

/* ---------- ambient background ---------- */
.bg-grid {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(rgba(244, 24, 116, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 24, 116, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 75%);
}
.bg-orb {
  position: fixed; z-index: -1; border-radius: 50%; filter: blur(120px);
  opacity: 0.35; pointer-events: none;
}
.bg-orb--1 { width: 480px; height: 480px; background: var(--pink-deep); top: -160px; right: -120px; animation: drift 14s ease-in-out infinite alternate; }
.bg-orb--2 { width: 380px; height: 380px; background: #3d0a26; bottom: -140px; left: 8%; animation: drift 18s ease-in-out infinite alternate-reverse; }
@keyframes drift { from { transform: translate(0, 0) scale(1); } to { transform: translate(-60px, 40px) scale(1.15); } }

/* ---------- topbar (mobile) ---------- */
.topbar {
  display: none;
  position: sticky; top: 0; z-index: 60;
  align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: rgba(8, 6, 10, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar__logo { height: 30px; width: auto; }
.topbar__burger { display: grid; gap: 5px; padding: 8px; }
.topbar__burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.25s; }
.topbar__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.topbar__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.topbar__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- sidebar ---------- */
.sidebar {
  position: fixed; z-index: 70; inset: 0 auto 0 0;
  width: var(--sidebar-w);
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, #0d0910, #0a070d);
  border-right: 1px solid var(--line);
  padding: 22px 16px;
  overflow-y: auto;
}
.sidebar__brand { text-align: center; margin-bottom: 26px; }
.sidebar__logo { width: 132px; margin: 0 auto; filter: drop-shadow(0 0 18px rgba(244, 24, 116, 0.5)); }
.sidebar__sub {
  display: block; margin-top: 2px;
  font-size: 10px; letter-spacing: 0.55em; text-indent: 0.55em;
  color: var(--pink-soft); font-weight: 700;
}
.sidebar__label {
  display: block; margin: 18px 10px 6px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.18em;
  color: var(--muted); text-transform: uppercase;
}
.sidebar__link {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 12px; border-radius: 10px;
  font-weight: 600; font-size: 14px; color: #d9cfe0;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.sidebar__link:hover { background: rgba(244, 24, 116, 0.1); color: #fff; transform: translateX(3px); }
.sidebar__link .ic { width: 17px; height: 17px; fill: var(--pink); flex: none; }
.live-pill {
  margin-left: auto; font-size: 9px; font-weight: 800; letter-spacing: 0.08em;
  background: var(--kick); color: #04120a; padding: 2px 7px; border-radius: 999px;
  animation: pulse 1.6s infinite;
}
.sidebar__foot {
  margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line-soft);
  display: flex; gap: 10px; align-items: center; font-size: 12px;
}
.sidebar__avatar { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--pink); object-fit: cover; }
.sidebar__foot strong { display: block; font-size: 13px; }
.sidebar__foot span { color: var(--muted); font-size: 11px; }

.scrim {
  position: fixed; inset: 0; z-index: 65;
  background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(3px);
}

/* ---------- main column ---------- */
.main {
  margin-left: var(--sidebar-w);
  padding: 26px clamp(16px, 4vw, 48px) 0;
  max-width: 1280px;
}

/* ---------- buttons & chips ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 800; font-size: 14px; letter-spacing: 0.02em;
  padding: 13px 26px; border-radius: 999px;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  will-change: transform;
}
.btn:active { transform: scale(0.96); }
.btn--pink {
  background: linear-gradient(135deg, var(--pink), var(--pink-hot));
  color: #fff; box-shadow: var(--glow);
}
.btn--pink:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(244, 24, 116, 0.65); }
.btn--ghost {
  border: 1px solid var(--line); color: var(--pink-soft);
  background: rgba(244, 24, 116, 0.06);
}
.btn--ghost:hover { background: rgba(244, 24, 116, 0.14); transform: translateY(-2px); }
.btn--kick { background: var(--kick); color: #04120a; }
.btn--kick:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(83, 252, 24, 0.4); }
.btn--sm { padding: 9px 18px; font-size: 12.5px; }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em;
  padding: 7px 14px; border-radius: 999px; text-transform: uppercase;
}
.chip--outline { border: 1px solid var(--line); color: var(--pink-soft); background: rgba(244, 24, 116, 0.05); }
.chip--outline b { color: #fff; }

.code-mini {
  color: var(--pink-hot); background: rgba(244, 24, 116, 0.12);
  padding: 1px 8px; border-radius: 6px; border: 1px solid var(--line);
  font-weight: 800; letter-spacing: 0.06em;
}

.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #ff1744; animation: pulse 1.4s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ---------- live band (immersive) ---------- */
.liveband {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(115deg, #0a0409 0%, #1a0712 46%, #2a0a1c 100%);
  border: 1px solid rgba(83, 252, 24, 0.32);
  padding: 24px 32px; min-height: 172px;
  isolation: isolate;
  animation: liveGlow 3.2s ease-in-out infinite;
}
@keyframes liveGlow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(83, 252, 24, 0.05), 0 0 26px rgba(83, 252, 24, 0.10); border-color: rgba(83, 252, 24, 0.28); }
  50% { box-shadow: 0 0 0 1px rgba(83, 252, 24, 0.14), 0 0 48px rgba(83, 252, 24, 0.30); border-color: rgba(83, 252, 24, 0.52); }
}
/* Offline keeps the vibrant background/glow; only the equalizer (a live-audio
   indicator) freezes and the badge/viewer-count reflect true status. */

.liveband__aurora {
  position: absolute; inset: -45%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(closest-side, rgba(244, 24, 116, 0.55), transparent 70%) 14% 42% / 46% 72% no-repeat,
    radial-gradient(closest-side, rgba(83, 252, 24, 0.26), transparent 70%) 82% 60% / 42% 82% no-repeat,
    radial-gradient(closest-side, rgba(255, 77, 154, 0.42), transparent 70%) 56% 18% / 36% 62% no-repeat;
  filter: blur(30px);
  animation: aurora 9s ease-in-out infinite alternate;
}
@keyframes aurora {
  0% { transform: translate3d(-4%, -2%, 0) scale(1); }
  50% { transform: translate3d(3%, 2%, 0) scale(1.08); }
  100% { transform: translate3d(5%, -3%, 0) scale(1.03); }
}
.liveband__scan {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.5;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 3px);
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000 72%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 28%, #000 72%, transparent);
}
.liveband__shine {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.16) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: shine 5s ease-in-out infinite;
}
@keyframes shine { 0%, 60% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

.liveband__txt { position: relative; z-index: 3; display: grid; gap: 8px; justify-items: start; flex: 1 1 auto; }
.liveband__meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.liveband__badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: #ff1744; color: #fff; font-weight: 800; font-size: 12px; letter-spacing: 0.14em;
  padding: 5px 12px; border-radius: 999px; text-transform: uppercase;
  box-shadow: 0 0 18px rgba(255, 23, 68, 0.6);
}
.liveband__badge--off { background: #3a3340; color: #bca9c4; box-shadow: none; }
.liveband__dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: pulse 1.3s infinite; }
.liveband__viewers { display: inline-flex; align-items: center; gap: 6px; color: #e9d6e6; font-size: 13px; font-weight: 600; }
.liveband__viewers[hidden] { display: none; }
.liveband__viewers svg { width: 15px; height: 15px; fill: var(--kick); }
.liveband__viewers b { color: #fff; font-variant-numeric: tabular-nums; }
.liveband__title {
  font-family: var(--font-display); font-size: clamp(22px, 3.2vw, 34px); line-height: 1.02;
  background: linear-gradient(180deg, #fff, #ffd0e6);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.liveband__sub { color: #ffcfe6; font-size: 14px; }
.liveband__sub strong { color: #fff; }
.liveband__btn { margin-top: 6px; animation: btnBreathe 2.4s ease-in-out infinite; }
@keyframes btnBreathe {
  0%, 100% { box-shadow: 0 0 0 rgba(83, 252, 24, 0), 0 6px 18px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: 0 0 26px rgba(83, 252, 24, 0.6), 0 6px 18px rgba(0, 0, 0, 0.3); }
}
.liveband__play { display: inline-grid; place-items: center; }

.liveband__visual { position: relative; z-index: 2; display: flex; align-items: flex-end; gap: 16px; align-self: stretch; padding-bottom: 4px; }
.liveband__kick {
  position: absolute; z-index: 1; right: 28%; top: 50%;
  transform: translateY(-50%) rotate(-4deg);
  font-family: var(--font-display); font-size: clamp(38px, 6vw, 74px);
  color: rgba(83, 252, 24, 0.10); letter-spacing: 0.04em; user-select: none;
  text-shadow: 0 0 30px rgba(83, 252, 24, 0.15);
}
.liveband__eq { position: relative; z-index: 2; display: flex; align-items: flex-end; gap: 4px; height: 54px; margin-bottom: 6px; }
.liveband__eq span {
  width: 5px; height: 100%; transform-origin: bottom; border-radius: 3px;
  background: linear-gradient(180deg, var(--kick), #1f8f0a);
  box-shadow: 0 0 8px rgba(83, 252, 24, 0.55);
  animation: eq 0.9s ease-in-out infinite;
}
@keyframes eq { 0%, 100% { transform: scaleY(0.22); } 50% { transform: scaleY(1); } }
.liveband__eq span:nth-child(1) { animation-delay: -0.20s; animation-duration: 0.82s; }
.liveband__eq span:nth-child(2) { animation-delay: -0.55s; animation-duration: 1.15s; }
.liveband__eq span:nth-child(3) { animation-delay: -0.10s; animation-duration: 0.70s; }
.liveband__eq span:nth-child(4) { animation-delay: -0.75s; animation-duration: 0.95s; }
.liveband__eq span:nth-child(5) { animation-delay: -0.35s; animation-duration: 1.30s; }
.liveband__eq span:nth-child(6) { animation-delay: -0.05s; animation-duration: 0.88s; }
.liveband__eq span:nth-child(7) { animation-delay: -0.60s; animation-duration: 0.76s; }
.liveband__eq span:nth-child(8) { animation-delay: -0.25s; animation-duration: 1.05s; }
.liveband__eq span:nth-child(9) { animation-delay: -0.45s; animation-duration: 0.92s; }
.liveband__eq span:nth-child(10) { animation-delay: -0.15s; animation-duration: 1.20s; }
.liveband__eq span:nth-child(11) { animation-delay: -0.65s; animation-duration: 0.80s; }
.liveband__eq span:nth-child(12) { animation-delay: -0.30s; animation-duration: 1.00s; }
.liveband.is-off .liveband__eq span { animation-play-state: paused; transform: scaleY(0.3); opacity: 0.5; }
.liveband__mascot {
  position: relative; z-index: 3; width: clamp(120px, 17vw, 176px); align-self: flex-end; margin-bottom: -4px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 18px rgba(244, 24, 116, 0.35));
  transition: transform 0.3s;
}
.liveband:hover .liveband__mascot { transform: translateY(-6px) rotate(-2deg); }

/* ---------- hero ---------- */
.hero { position: relative; padding: 60px 0 30px; }
#particles { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero__inner {
  position: relative; display: grid; grid-template-columns: 1.25fr 0.75fr;
  gap: 30px; align-items: center;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.02; margin: 16px 0 6px;
  background: linear-gradient(180deg, #fff 55%, #d9a5c2);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__prize { display: grid; justify-items: start; margin: 6px 0 10px; }
.hero__prize-amount {
  font-family: var(--font-display);
  font-size: clamp(58px, 9vw, 118px);
  line-height: 1;
  background: linear-gradient(100deg, var(--pink-soft), #ffd7ec, var(--pink), var(--pink-deep), var(--pink), #ffd7ec, var(--pink-soft));
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 6px 30px rgba(244, 24, 116, 0.45));
  animation: prizefloat 5s ease-in-out infinite, shimmer 4.5s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }
@keyframes prizefloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero__prize-label {
  font-size: 13px; font-weight: 800; letter-spacing: 0.42em; text-indent: 0.42em;
  color: var(--pink-soft); margin-top: 4px;
}
.hero__sub { color: var(--muted); max-width: 46ch; font-size: 15px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 26px; }

.countdown { display: flex; gap: 10px; }
.countdown__cell {
  min-width: 74px; text-align: center;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 10px 9px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.countdown__cell b {
  display: block; font-family: var(--font-display); font-size: 26px; color: #fff;
  font-variant-numeric: tabular-nums;
}
.countdown__cell span { font-size: 9.5px; font-weight: 800; letter-spacing: 0.22em; color: var(--muted); }

.hero__art { position: relative; display: grid; place-items: center; min-height: 340px; }
.hero__mascot {
  width: clamp(220px, 24vw, 330px); position: relative; z-index: 2;
  filter: drop-shadow(0 18px 50px rgba(244, 24, 116, 0.35));
  animation: mascotfloat 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes mascotfloat { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-16px) rotate(2deg); } }
.hero__halo {
  position: absolute; z-index: 1; width: 70%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 24, 116, 0.35) 0%, transparent 65%);
  animation: halopulse 4s ease-in-out infinite;
}
@keyframes halopulse { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.18); opacity: 1; } }
.hero__ring {
  position: absolute; border: 1px solid rgba(244, 24, 116, 0.25); border-radius: 50%;
}
.hero__ring--1 { width: 78%; aspect-ratio: 1; animation: spin 26s linear infinite; border-style: dashed; }
.hero__ring--2 { width: 96%; aspect-ratio: 1; animation: spin 40s linear infinite reverse; opacity: 0.5; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- ticker ---------- */
.ticker {
  overflow: hidden; margin: 26px 0 8px;
  border: 1px solid var(--line); border-radius: 12px;
  background: rgba(20, 15, 26, 0.7);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker__track {
  display: flex; gap: 34px; width: max-content;
  padding: 11px 0;
  animation: ticker 36s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker__item { display: inline-flex; gap: 8px; align-items: baseline; font-size: 13px; white-space: nowrap; color: var(--muted); }
.ticker__item b { color: #fff; }
.ticker__item .win { color: var(--pink-hot); font-weight: 800; }

/* ---------- sections ---------- */
.section { padding: 58px 0 8px; }
.section__head { margin-bottom: 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 18px; justify-content: space-between; }
.section__title {
  font-family: var(--font-display); font-size: clamp(24px, 3.4vw, 40px);
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #fff 60%, #caa3ba);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section__sub { color: var(--muted); font-size: 14px; width: 100%; }

/* ---------- tabs ---------- */
.tabs {
  position: relative; display: inline-flex; gap: 4px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 999px; padding: 5px;
}
.tabs__btn {
  position: relative; z-index: 1;
  padding: 9px 22px; border-radius: 999px;
  font-weight: 700; font-size: 13.5px; color: var(--muted);
  transition: color 0.25s;
}
.tabs__btn.is-active { color: #fff; }
.tabs__glider {
  position: absolute; top: 5px; bottom: 5px; border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  box-shadow: 0 0 18px rgba(244, 24, 116, 0.5);
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.tabpane { display: none; }
.tabpane.is-active { display: block; animation: fadeup 0.45s ease; }
@keyframes fadeup { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- podium ---------- */
.podium {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  align-items: end; margin-bottom: 22px;
  perspective: 900px;
}
.podium__card {
  position: relative; text-align: center;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 18px 22px;
  transition: transform 0.3s, box-shadow 0.3s;
  transform-style: preserve-3d;
}
.podium__card:hover { transform: translateY(-6px) rotateX(3deg); box-shadow: 0 18px 50px rgba(244, 24, 116, 0.2); }
.podium__card--1 {
  order: 2; padding-top: 34px; padding-bottom: 30px;
  border-color: rgba(244, 24, 116, 0.55);
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(244, 24, 116, 0.22), transparent 70%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: 0 0 44px rgba(244, 24, 116, 0.18);
}
.podium__card--2 { order: 1; }
.podium__card--3 { order: 3; }
.podium__rank {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 50%; font-family: var(--font-display); font-size: 15px;
  background: var(--panel-2); border: 1px solid var(--line); color: var(--pink-soft);
}
.podium__card--1 .podium__rank {
  width: 42px; height: 42px; top: -21px; font-size: 18px;
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: #fff; border: 0; box-shadow: var(--glow);
}
.podium__crown { font-size: 22px; display: block; margin-bottom: 2px; }
.podium__user { font-weight: 800; font-size: 16px; letter-spacing: 0.03em; }
.podium__wl { font-size: 10px; font-weight: 800; letter-spacing: 0.28em; color: var(--muted); margin-top: 10px; }
.podium__wagered { font-family: var(--font-display); font-size: clamp(17px, 2vw, 24px); margin-top: 2px; font-variant-numeric: tabular-nums; }
.podium__prize {
  display: inline-block; margin-top: 12px;
  font-weight: 800; font-size: 15px; color: var(--pink-hot);
  background: rgba(244, 24, 116, 0.1); border: 1px solid var(--line);
  padding: 6px 16px; border-radius: 999px;
}
.podium__card--1 .podium__prize { font-size: 18px; color: #fff; background: linear-gradient(135deg, var(--pink), var(--pink-deep)); border: 0; box-shadow: var(--glow); }

/* ---------- board table ---------- */
.board {
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: rgba(17, 12, 22, 0.72);
}
.board__row {
  display: grid; grid-template-columns: 56px 1fr 1fr 130px;
  align-items: center; gap: 10px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px; font-variant-numeric: tabular-nums;
  transition: background 0.18s, transform 0.18s;
}
.board__row--watch { grid-template-columns: 56px 1fr 160px; }
.board__row:last-child { border-bottom: 0; }
.board__row:not(.board__row--head):hover { background: rgba(244, 24, 116, 0.06); transform: translateX(4px); }
.board__row--head {
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.2em; color: var(--muted);
  background: rgba(244, 24, 116, 0.05);
}
.board__rank { font-family: var(--font-display); color: var(--muted); font-size: 13px; }
.board__user { font-weight: 700; }
.board__wagered { color: #e6d9e4; }
.board__prize { font-weight: 800; color: var(--pink-hot); text-align: right; }
.board__prize--zero { color: var(--muted); font-weight: 600; }
.board__row--cta {
  grid-template-columns: 1fr auto; background: linear-gradient(90deg, rgba(244, 24, 116, 0.12), transparent);
  padding: 16px 20px;
}
.board__row--cta p { font-size: 13.5px; color: var(--pink-soft); }
.board__row--cta p b { color: #fff; }

/* ---------- watchtime head ---------- */
.watchhead {
  display: flex; gap: 18px; align-items: center;
  background: linear-gradient(100deg, var(--panel-2), transparent);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 22px; margin-bottom: 18px;
}
.watchhead img { width: 84px; flex: none; }
.watchhead h3 { font-family: var(--font-display); font-size: 17px; margin-bottom: 4px; }
.watchhead p { color: var(--muted); font-size: 13.5px; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; list-style: none; }
.steps__card {
  position: relative;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px 22px;
  display: grid; gap: 10px; justify-items: start; align-content: start;
  transition: transform 0.3s, border-color 0.3s;
}
.steps__card:hover { transform: translateY(-5px); border-color: rgba(244, 24, 116, 0.4); }
.steps__num {
  font-family: var(--font-display); font-size: 15px;
  width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 12px; color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  box-shadow: 0 0 18px rgba(244, 24, 116, 0.4);
}
.steps__card h3 { font-size: 16.5px; }
.steps__card p { color: var(--muted); font-size: 13.5px; }

/* ---------- rewards ---------- */
.rewards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rewards__card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px;
  display: grid; gap: 8px; justify-items: start;
  transition: transform 0.3s, border-color 0.3s;
}
.rewards__card:hover { transform: translateY(-5px); border-color: rgba(244, 24, 116, 0.45); }
.rewards__glow {
  position: absolute; top: -60px; right: -60px; width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(244, 24, 116, 0.25), transparent 70%);
  transition: transform 0.4s;
}
.rewards__card:hover .rewards__glow { transform: scale(1.6); }
.rewards__card h3 { font-size: 12.5px; letter-spacing: 0.2em; color: var(--pink-soft); }
.rewards__big { font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px); color: #fff; }
.rewards__card p:not(.rewards__big) { color: var(--muted); font-size: 13.5px; margin-bottom: 8px; }

.total {
  margin-top: 26px; text-align: center;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 20px;
  background:
    radial-gradient(ellipse 60% 100% at 50% 0%, rgba(244, 24, 116, 0.12), transparent 70%),
    rgba(17, 12, 22, 0.7);
}
.total__label { display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.34em; color: var(--muted); margin-bottom: 6px; }
.total__num {
  font-family: var(--font-display); font-size: clamp(40px, 6vw, 72px);
  background: linear-gradient(100deg, #fff, var(--pink-soft), var(--pink), var(--pink-soft), #fff);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
  animation: shimmer 5s linear infinite;
}

/* ---------- stream ---------- */
.stream { display: grid; grid-template-columns: 1fr 280px; gap: 16px; }
.stream__frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 16 / 9; background: #000;
}
.stream__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.stream__side {
  display: grid; align-content: center; justify-items: center; gap: 8px; text-align: center;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
}
.stream__side img { width: 92px; height: 92px; border-radius: 50%; border: 3px solid var(--pink); object-fit: cover; box-shadow: var(--glow); }
.stream__side h3 { font-family: var(--font-display); font-size: 20px; }
.stream__side p { color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.stream__socials { display: flex; gap: 10px; margin-top: 8px; }
.stream__socials a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 12px; font-size: 16px;
  transition: background 0.2s, transform 0.2s;
}
.stream__socials a:hover { background: rgba(244, 24, 116, 0.12); transform: translateY(-3px); }

/* ---------- footer ---------- */
.footer {
  margin-top: 70px; padding: 44px 0 34px;
  border-top: 1px solid var(--line);
  display: grid; justify-items: center; gap: 14px; text-align: center;
}
.footer__logo { width: 110px; opacity: 0.9; }
.footer__resp { max-width: 62ch; color: var(--muted); font-size: 12.5px; }
.footer__resp a { color: var(--pink-soft); text-decoration: underline; }
.footer__links { display: flex; flex-wrap: wrap; gap: 20px; font-size: 13px; font-weight: 600; color: var(--muted); }
.footer__links a:hover { color: var(--pink-soft); }
.footer__copy { font-size: 11.5px; color: #6b5f74; }

/* ---------- live value flash ---------- */
@keyframes flashPink {
  0% { text-shadow: 0 0 16px rgba(244, 24, 116, 0.95); filter: brightness(1.75); }
  100% { text-shadow: none; filter: none; }
}
.flash { animation: flashPink 1.1s ease-out; }

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

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { min-height: 260px; order: -1; }
  .stream { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .topbar { display: flex; }
  .sidebar { transform: translateX(-105%); transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 30px 0 80px rgba(0,0,0,.6); }
  .sidebar.is-open { transform: none; }
  .main { margin-left: 0; }
  .podium { grid-template-columns: 1fr; align-items: stretch; }
  .podium__card--1 { order: 1; }
  .podium__card--2 { order: 2; }
  .podium__card--3 { order: 3; }
  .steps, .rewards { grid-template-columns: 1fr; }
  .board__row { grid-template-columns: 40px 1fr 1fr 90px; padding: 12px 14px; font-size: 13px; }
  .board__row--watch { grid-template-columns: 40px 1fr 110px; }
  .liveband__kick, .liveband__eq { display: none; }
  .liveband { padding: 20px 20px; }
  .liveband__txt { max-width: 100%; }
  .liveband__mascot { width: clamp(96px, 22vw, 148px); }
  .countdown__cell { min-width: 60px; }
}
@media (max-width: 480px) {
  .liveband__mascot { width: 88px; }
  .liveband__title { font-size: 20px; }
  .hero__cta .btn { width: 100%; }
  .countdown { flex-wrap: wrap; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   PREMIUM LAYER — loader, cursor, grain, progress, spotlight,
   ripple, confetti, settings, FAQ, scrollspy, scrollbar
   ============================================================ */

/* ---------- branded scrollbar ---------- */
html { scrollbar-color: var(--pink) var(--bg-2); scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--pink-deep), var(--pink)); border-radius: 99px; border: 2px solid var(--bg-2); }
::-webkit-scrollbar-thumb:hover { background: var(--pink); }

/* ---------- intro loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; align-content: center; gap: 22px;
  background: radial-gradient(ellipse at center, #150a12, #050308 70%);
  animation: loaderOut 0.7s ease 1.7s forwards;
}
.loader__logo {
  width: 150px; filter: drop-shadow(0 0 34px rgba(244, 24, 116, 0.6));
  animation: loaderPop 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.loader__bar { width: 190px; height: 4px; border-radius: 99px; background: rgba(255, 255, 255, 0.1); overflow: hidden; }
.loader__bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--pink), var(--pink-hot)); box-shadow: 0 0 12px var(--pink); animation: loaderFill 1.55s ease forwards; }
.loader.is-hidden { display: none; }
@keyframes loaderPop { 0% { opacity: 0; transform: scale(0.82) translateY(10px); } 100% { opacity: 1; transform: none; } }
@keyframes loaderFill { to { width: 100%; } }
@keyframes loaderOut { to { opacity: 0; visibility: hidden; } }

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 90;
  background: linear-gradient(90deg, var(--pink), var(--pink-hot), var(--kick));
  box-shadow: 0 0 12px rgba(244, 24, 116, 0.7);
  transition: width 0.1s linear;
}

/* ---------- film grain ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 76; pointer-events: none; opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1.1s steps(4) infinite;
}
@keyframes grain { 0% { transform: translate(0, 0); } 25% { transform: translate(-3%, -2%); } 50% { transform: translate(2%, -3%); } 75% { transform: translate(-2%, 3%); } 100% { transform: translate(3%, 2%); } }

/* ---------- custom cursor glow ---------- */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 380px; height: 380px; border-radius: 50%;
  pointer-events: none; z-index: 80; opacity: 0; will-change: transform;
  background: radial-gradient(circle, rgba(244, 24, 116, 0.13), transparent 62%);
  mix-blend-mode: screen; transition: opacity 0.35s ease;
}
@media (pointer: fine) { .cursor-glow.is-on { opacity: 1; } }

/* ---------- card spotlight ---------- */
.spotlight { position: relative; }
.spotlight::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: 0;
  background: radial-gradient(200px circle at var(--mx, 50%) var(--my, 50%), rgba(244, 24, 116, 0.16), transparent 60%);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.spotlight:hover::before { opacity: 1; }
.podium__card > *, .steps__card > *, .rewards__card > * { position: relative; z-index: 1; }

/* ---------- ripple ---------- */
.btn { position: relative; overflow: hidden; }
.ripple {
  position: absolute; border-radius: 50%; transform: translate(-50%, -50%) scale(0);
  background: rgba(255, 255, 255, 0.45); pointer-events: none; z-index: 2;
  animation: ripple 0.6s ease-out forwards;
}
@keyframes ripple { to { transform: translate(-50%, -50%) scale(1); opacity: 0; } }

/* ---------- confetti ---------- */
.confetti-piece {
  position: fixed; z-index: 120; width: 9px; height: 9px; border-radius: 2px;
  pointer-events: none; will-change: transform, opacity;
  animation: confettiFly 0.95s cubic-bezier(0.15, 0.7, 0.3, 1) forwards;
}
@keyframes confettiFly { 0% { transform: translate(0, 0) rotate(0); opacity: 1; } 100% { transform: translate(var(--tx), var(--ty)) rotate(var(--r)); opacity: 0; } }

/* ---------- scrollspy active nav ---------- */
.sidebar__link.is-active {
  background: rgba(244, 24, 116, 0.12); color: #fff;
  box-shadow: inset 3px 0 0 var(--pink);
}
.sidebar__link.is-active .ic { fill: var(--pink-hot); }

/* ---------- settings ---------- */
.settings-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 96;
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s;
}
.settings-fab:hover { transform: rotate(90deg); box-shadow: 0 0 24px rgba(244, 24, 116, 0.5); }
.settings-fab svg { width: 22px; height: 22px; fill: var(--pink-soft); }
.settings-panel {
  position: fixed; right: 18px; bottom: 78px; z-index: 96; width: 232px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: 16px; padding: 14px 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55); animation: fadeup 0.28s ease;
}
.settings-panel h3 { font-size: 11px; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; margin-bottom: 8px; }
.toggle { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 0; font-size: 13.5px; font-weight: 600; cursor: pointer; }
.toggle input { position: absolute; opacity: 0; pointer-events: none; }
.toggle i { position: relative; width: 40px; height: 22px; border-radius: 99px; background: rgba(255, 255, 255, 0.13); transition: background 0.25s; flex: none; }
.toggle i::after { content: ""; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: transform 0.25s; }
.toggle input:checked + i { background: linear-gradient(135deg, var(--pink), var(--pink-hot)); box-shadow: 0 0 12px rgba(244, 24, 116, 0.5); }
.toggle input:checked + i::after { transform: translateX(18px); }
.toggle input:focus-visible + i { outline: 2px solid var(--pink-soft); outline-offset: 2px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 860px; }
.faq__item { background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color 0.3s; }
.faq__item[open] { border-color: rgba(244, 24, 116, 0.4); }
.faq__item summary { list-style: none; cursor: pointer; padding: 18px 20px; font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: space-between; gap: 14px; transition: color 0.25s; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item[open] summary { color: var(--pink-soft); }
.faq__ic { position: relative; width: 16px; height: 16px; flex: none; }
.faq__ic::before, .faq__ic::after { content: ""; position: absolute; background: var(--pink-hot); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.faq__ic::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq__ic::after { top: 0; left: 7px; width: 2px; height: 16px; }
.faq__item[open] .faq__ic::after { transform: rotate(90deg); opacity: 0; }
.faq__item p { padding: 0 20px 18px; color: var(--muted); font-size: 14px; }
.faq__item[open] p { animation: fadeup 0.35s ease; }
.faq__item a { color: var(--pink-soft); text-decoration: underline; }

/* ---------- settings-driven modes ---------- */
body.no-motion *, body.no-motion *::before, body.no-motion *::after {
  animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important;
}
body.no-motion .reveal { opacity: 1 !important; transform: none !important; }
body.no-fx .cursor-glow, body.no-fx .grain, body.no-fx #particles, body.no-fx .bg-orb { display: none !important; }
body.no-fx .spotlight::before { display: none; }

/* ============================================================
   LATEST WINS WALL + VIP TIERS
   ============================================================ */

/* ---------- latest wins ---------- */
.wins { display: grid; grid-template-columns: 1fr 236px; gap: 14px; align-items: start; }
.wins__feed {
  display: grid; gap: 7px; min-height: 210px;
  mask-image: linear-gradient(180deg, #000 84%, transparent);
  -webkit-mask-image: linear-gradient(180deg, #000 84%, transparent);
}
.win {
  display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 11px;
  padding: 8px 13px; border-radius: 10px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-soft);
  animation: winIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes winIn { from { opacity: 0; transform: translateY(-12px) scale(0.98); } to { opacity: 1; transform: none; } }
.win__meta { display: grid; gap: 1px; min-width: 0; }
.win__game { font-weight: 700; font-size: 12.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: flex; align-items: center; gap: 7px; }
.win__user { font-size: 10.5px; color: var(--muted); }
.win__multi {
  font-family: var(--font-display); font-size: 11px; color: var(--pink-soft);
  background: rgba(244, 24, 116, 0.1); border: 1px solid var(--line);
  padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}
.win__payout { font-weight: 800; font-size: 12.5px; color: #fff; font-variant-numeric: tabular-nums; white-space: nowrap; min-width: 62px; text-align: right; }
.win__tag { font-size: 8px; font-weight: 800; letter-spacing: 0.06em; color: #1a1206; background: #ffd76a; padding: 1px 6px; border-radius: 999px; flex: none; }
.win--big {
  border-color: rgba(255, 200, 70, 0.5);
  background: linear-gradient(180deg, rgba(255, 190, 60, 0.12), var(--panel));
  box-shadow: 0 0 18px rgba(255, 190, 60, 0.16);
}
.win--big .win__multi { color: #ffd76a; background: rgba(255, 190, 60, 0.14); border-color: rgba(255, 190, 60, 0.5); }
.win--big .win__payout { color: #ffd76a; }
.wins__side {
  display: grid; justify-items: center; gap: 9px; text-align: center; position: sticky; top: 20px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 16px;
}
.wins__big { display: grid; gap: 2px; }
.wins__big-label { font-size: 9px; font-weight: 800; letter-spacing: 0.18em; color: var(--muted); }
.wins__big-num { font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px); color: #ffd76a; font-variant-numeric: tabular-nums; text-shadow: 0 0 18px rgba(255, 190, 60, 0.4); }
.wins__big-sub { font-size: 10px; color: var(--muted); }
.wins__mascot { width: 92px; filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5)); }

/* ---------- VIP tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.tier {
  position: relative; display: grid; gap: 10px; align-content: start;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 18px 20px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.tier:hover { transform: translateY(-6px); border-color: rgba(244, 24, 116, 0.45); box-shadow: 0 18px 40px rgba(244, 24, 116, 0.16); }
.tier--featured { border-color: rgba(244, 24, 116, 0.6); box-shadow: 0 0 34px rgba(244, 24, 116, 0.18); }
.tier__badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); font-size: 9px; font-weight: 800; letter-spacing: 0.14em; white-space: nowrap; background: linear-gradient(135deg, var(--pink), var(--pink-deep)); color: #fff; padding: 4px 12px; border-radius: 999px; box-shadow: var(--glow); }
.tier__emblem { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: rgba(244, 24, 116, 0.1); border: 1px solid var(--line); }
.tier__emblem svg { width: 24px; height: 24px; fill: var(--pink-hot); }
.tier__name { font-family: var(--font-display); font-size: 18px; }
.tier__req { font-size: 12px; color: var(--muted); }
.tier__req b { color: var(--pink-soft); }
.tier__rake { font-family: var(--font-display); font-size: 26px; color: #fff; line-height: 1; margin-top: 2px; }
.tier__rake small { display: block; font-size: 10px; color: var(--muted); font-family: var(--font-body); font-weight: 800; letter-spacing: 0.16em; margin-top: 3px; }
.tier__perks { display: grid; gap: 7px; margin-top: 6px; padding: 0; }
.tier__perks li { list-style: none; font-size: 12.5px; color: #d8cce0; display: flex; gap: 8px; align-items: flex-start; }
.tier__perks li::before { content: "✦"; color: var(--pink); flex: none; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .wins { grid-template-columns: 1fr; }
  .wins__side { flex-direction: row; position: static; }
}
@media (max-width: 620px) {
  .tiers { grid-template-columns: 1fr; }
  .win { grid-template-columns: 1fr auto; }
  .win__multi { display: none; }
}

/* ============================================================
   EXTRAS — odometer, bonus hunt, daily, shop, raffles, content
   ============================================================ */

/* ---------- odometer (slot-reel total) ---------- */
.total__num.odometer { background: none; color: #fff; -webkit-text-fill-color: #fff; text-shadow: 0 0 26px rgba(244, 24, 116, 0.55); animation: none; display: inline-flex; }
.odometer { align-items: stretch; line-height: 1; font-variant-numeric: tabular-nums; }
.odo-reel { display: inline-block; height: 1em; overflow: hidden; width: 0.66em; text-align: center; }
.odo-strip { display: flex; flex-direction: column; transition: transform 0.75s cubic-bezier(0.2, 0.85, 0.2, 1); }
.odo-d { height: 1em; display: flex; align-items: center; justify-content: center; }
.odo-sep { display: inline-flex; align-items: flex-start; padding: 0 0.02em; }

/* ---------- bonus hunt ---------- */
.hunt { background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.hunt__top { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line-soft); }
.hunt__title { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 18px; }
.hunt__status { font-size: 10px; font-weight: 800; letter-spacing: 0.1em; padding: 4px 11px; border-radius: 999px; background: #ff1744; color: #fff; display: inline-flex; align-items: center; gap: 6px; }
.hunt__status--closed { background: #3a3340; color: #bca9c4; }
.hunt__status .live-dot { background: #fff; }
.hunt__stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line-soft); }
.hunt__stat { background: var(--panel); padding: 14px 16px; display: grid; gap: 3px; }
.hunt__stat span { font-size: 9.5px; letter-spacing: 0.12em; color: var(--muted); font-weight: 800; }
.hunt__stat b { font-family: var(--font-display); font-size: 18px; }
.hunt__stat b.pos { color: var(--kick); }
.hunt__stat b.neg { color: #ff5c7a; }
.hunt__list { display: grid; }
.hunt__row { display: grid; grid-template-columns: 30px 1fr 78px 76px 90px; align-items: center; gap: 10px; padding: 10px 22px; border-top: 1px solid var(--line-soft); font-size: 13px; font-variant-numeric: tabular-nums; }
.hunt__row--head { font-size: 9.5px; letter-spacing: 0.14em; color: var(--muted); font-weight: 800; }
.hunt__idx { color: var(--muted); font-family: var(--font-display); font-size: 12px; }
.hunt__game { font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hunt__bet { color: var(--muted); text-align: right; }
.hunt__multi { text-align: right; font-weight: 800; }
.hunt__multi.best { color: #ffd76a; }
.hunt__pay { text-align: right; font-weight: 800; }
.hunt__pay.bust { color: var(--muted); }
.hunt__row--pending { opacity: 0.55; }
.hunt__pill { font-size: 10px; color: var(--pink-soft); background: rgba(244, 24, 116, 0.1); border: 1px solid var(--line); padding: 2px 8px; border-radius: 999px; justify-self: end; }

/* ---------- daily calendar ---------- */
.daily { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.day { position: relative; text-align: center; background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--line); border-radius: 14px; padding: 16px 10px 14px; display: grid; gap: 6px; justify-items: center; transition: transform 0.3s, border-color 0.3s; }
.day__n { font-size: 10px; letter-spacing: 0.1em; color: var(--muted); font-weight: 800; }
.day__ic { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; background: rgba(244, 24, 116, 0.1); }
.day__ic svg { width: 17px; height: 17px; fill: var(--pink-hot); }
.day__reward { font-weight: 800; font-size: 12.5px; }
.day--claimed { opacity: 0.5; }
.day--claimed::after { content: "✓"; position: absolute; top: 7px; right: 10px; color: var(--kick); font-weight: 800; font-size: 12px; }
.day--today { border-color: var(--pink); box-shadow: var(--glow); }
.day--today .day__reward { color: var(--pink-soft); }
.day__btn { margin-top: 3px; width: 100%; font-size: 11px; font-weight: 800; padding: 6px 0; border-radius: 8px; background: linear-gradient(135deg, var(--pink), var(--pink-hot)); color: #fff; }
.day--locked { opacity: 0.4; }

/* ---------- points shop ---------- */
.shop { display: grid; grid-template-columns: 240px 1fr; gap: 16px; align-items: start; }
.shop__bal { display: grid; justify-items: center; gap: 5px; text-align: center; position: sticky; top: 20px; background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 18px; }
.shop__bal-label { font-size: 10px; letter-spacing: 0.18em; color: var(--muted); font-weight: 800; }
.shop__bal-num { font-family: var(--font-display); font-size: 34px; color: #fff; }
.shop__bal-sub { font-size: 11px; color: var(--pink-soft); margin-bottom: 8px; }
.shop__hint { font-size: 11px; color: var(--muted); margin-top: 6px; }
.shop__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.shop__item { background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--line); border-radius: 14px; padding: 18px; display: grid; gap: 8px; justify-items: start; transition: transform 0.3s, border-color 0.3s; }
.shop__item:hover { transform: translateY(-4px); border-color: rgba(244, 24, 116, 0.4); }
.shop__tag { font-size: 9px; font-weight: 800; letter-spacing: 0.1em; color: var(--pink-soft); background: rgba(244, 24, 116, 0.1); border: 1px solid var(--line); padding: 2px 8px; border-radius: 999px; }
.shop__name { font-weight: 800; font-size: 15px; }
.shop__cost { font-family: var(--font-display); color: #fff; font-size: 18px; }
.shop__cost small { font-size: 10px; color: var(--muted); font-family: var(--font-body); letter-spacing: 0.1em; font-weight: 800; margin-left: 4px; }
.shop__btn { margin-top: 4px; width: 100%; }

/* ---------- raffles ---------- */
.raffles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.raffle { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; display: grid; gap: 11px; transition: transform 0.3s, border-color 0.3s; }
.raffle:hover { transform: translateY(-5px); border-color: rgba(244, 24, 116, 0.45); }
.raffle__ends { font-size: 11px; color: var(--pink-soft); font-weight: 700; }
.raffle__prize { font-family: var(--font-display); font-size: 22px; }
.raffle__meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); }
.raffle__meta b { color: #fff; }
.raffle__bar { height: 6px; border-radius: 99px; background: rgba(255, 255, 255, 0.08); overflow: hidden; }
.raffle__bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--pink), var(--pink-hot)); }
.raffle__enter { width: 100%; margin-top: 2px; }

/* ---------- latest content ---------- */
.content { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.vid { display: block; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--panel); transition: transform 0.3s, border-color 0.3s; }
.vid:hover { transform: translateY(-5px); border-color: rgba(244, 24, 116, 0.45); }
.vid__thumb { position: relative; aspect-ratio: 16 / 9; background: linear-gradient(135deg, var(--pink-deep), #14060d); display: grid; place-items: center; overflow: hidden; }
.vid__thumb::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 40%, rgba(244, 24, 116, 0.25), transparent 60%); }
.vid__play { position: relative; z-index: 1; width: 46px; height: 46px; border-radius: 50%; background: rgba(0, 0, 0, 0.5); border: 1px solid rgba(255, 255, 255, 0.3); display: grid; place-items: center; color: #fff; transition: transform 0.3s; }
.vid:hover .vid__play { transform: scale(1.14); }
.vid__dur { position: absolute; z-index: 1; right: 8px; bottom: 8px; font-size: 11px; font-weight: 700; background: rgba(0, 0, 0, 0.72); padding: 2px 7px; border-radius: 6px; }
.vid__body { padding: 12px 14px; display: grid; gap: 4px; }
.vid__title { font-weight: 700; font-size: 13px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.vid__date { font-size: 11px; color: var(--muted); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .hunt__stats { grid-template-columns: repeat(3, 1fr); }
  .shop { grid-template-columns: 1fr; }
  .shop__bal { position: static; }
  .shop__grid { grid-template-columns: repeat(2, 1fr); }
  .raffles { grid-template-columns: 1fr; }
  .content { grid-template-columns: repeat(2, 1fr); }
  .daily { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 620px) {
  .hunt__stats { grid-template-columns: repeat(2, 1fr); }
  .hunt__row { grid-template-columns: 24px 1fr 66px 74px; }
  .hunt__bet { display: none; }
  .shop__grid { grid-template-columns: 1fr; }
  .content { grid-template-columns: 1fr; }
  .daily { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Login with Kick ---------- */
.authbox { margin-top: 14px; }
.authbox__btn { width: 100%; }
.authbox__user { display: flex; align-items: center; gap: 10px; background: rgba(244, 24, 116, 0.06); border: 1px solid var(--line); border-radius: 12px; padding: 8px 10px; }
.authbox__user img, .authbox__ph { width: 34px; height: 34px; border-radius: 50%; flex: none; object-fit: cover; }
.authbox__ph { display: grid; place-items: center; background: linear-gradient(135deg, var(--pink), var(--pink-deep)); color: #fff; font-weight: 800; font-size: 15px; }
.authbox__meta { display: grid; line-height: 1.2; min-width: 0; }
.authbox__meta strong { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.authbox__meta span { font-size: 11px; color: var(--pink-soft); }
.authbox__out { margin-left: auto; color: var(--muted); font-size: 15px; padding: 4px 6px; border-radius: 8px; }
.authbox__out:hover { color: var(--pink-hot); background: rgba(244, 24, 116, 0.1); }

/* ============================================================
   HUMAN-MADE PASS — Anton type, real clip thumbs, svg icons,
   section mascots
   ============================================================ */

/* Anton is condensed & single-weight — open it up slightly */
.hero__title { letter-spacing: 0.015em; }
.section__title { letter-spacing: 0.02em; }
.hero__prize-amount { letter-spacing: 0.01em; }

/* mini inline icons (replace emoji) */
.ic-mini { width: 13px; height: 13px; vertical-align: -2px; }
.ic-trophy { color: #ffd76a; }
.tabs__ic { width: 14px; height: 14px; fill: currentColor; vertical-align: -2px; margin-right: 4px; }
.podium__crown svg { width: 24px; height: 24px; color: #ffd76a; filter: drop-shadow(0 0 8px rgba(255, 200, 70, 0.6)); }
.raffle__ends .ic-mini { color: var(--pink-hot); }

/* real clip thumbnails */
.vid__thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vid__thumb::after { background: linear-gradient(180deg, transparent 40%, rgba(8, 6, 10, 0.55)); }
.vid:hover .vid__thumb img { transform: scale(1.05); }
.vid__thumb img { transition: transform 0.4s ease; }

/* section mascots — break the grid symmetry */
.section--mascot { position: relative; }
.sec-mascot { position: absolute; z-index: 1; pointer-events: none; filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.5)); }
.sec-mascot--flex { top: -34px; right: 8px; width: clamp(110px, 13vw, 168px); transform: rotate(4deg); }
.sec-mascot--selfie { top: -44px; right: 4px; width: clamp(130px, 15vw, 196px); transform: rotate(-3deg); }
@media (max-width: 900px) { .sec-mascot { width: 92px; top: -20px; opacity: 0.85; } }

/* numbered section titles — editorial, less template-y */
main { counter-reset: sec; }
.section .section__title::before {
  counter-increment: sec;
  content: counter(sec, decimal-leading-zero);
  display: inline-block; margin-right: 12px;
  font-size: 0.55em; vertical-align: 0.25em;
  -webkit-text-fill-color: var(--pink);
  opacity: 0.75; letter-spacing: 0.05em;
}

/* ---------- floating account chip ---------- */
.userchip { position: fixed; top: 16px; right: 20px; z-index: 85; }
.userchip__login { box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45), 0 0 22px rgba(83, 252, 24, 0.25); }
.userchip__user {
  display: flex; align-items: center; gap: 10px;
  background: rgba(20, 15, 26, 0.92); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 10px 6px 6px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
}
.userchip__avatar { width: 30px; height: 30px; border-radius: 50%; overflow: hidden; display: grid; place-items: center; background: linear-gradient(135deg, var(--pink), var(--pink-deep)); color: #fff; font-weight: 800; font-size: 13px; flex: none; }
.userchip__avatar img { width: 100%; height: 100%; object-fit: cover; }
.userchip__meta { display: grid; line-height: 1.15; }
.userchip__meta b { font-size: 12.5px; max-width: 120px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.userchip__meta small { font-size: 10.5px; color: var(--pink-soft); font-weight: 700; }
.userchip__out { color: var(--muted); font-size: 14px; padding: 3px 6px; border-radius: 8px; }
.userchip__out:hover { color: var(--pink-hot); background: rgba(244, 24, 116, 0.1); }
@media (max-width: 900px) { .userchip { top: 62px; right: 12px; } }

/* the `hidden` attribute must ALWAYS win, even over display:flex classes */
[hidden] { display: none !important; }

/* ============================================================
   ULTRA OVERHAUL — solid inks, hard edges, streetwear-casino.
   Appended last so single-class rules win by cascade order.
   Goal: kill every "AI template" tell (blurred glows, gradient
   soup, uniform soft cards) and replace with confident design.
   ============================================================ */
:root {
  --pink: #ff1478;
  --pink-hot: #ff4da2;
  --pink-soft: #ff9ac6;
  --ink: #07060a;
  --card: #100b16;
  --card-2: #17101f;
  --stroke: rgba(255, 255, 255, 0.10);
  --stroke-pink: rgba(255, 20, 120, 0.4);
  --hard: 5px 5px 0 var(--pink);
  --hard-white: 5px 5px 0 #fff;
}

/* ---- 1. kill the blurred AI glow orbs; make bg graphic, not gradient-soup ---- */
.bg-orb { display: none !important; }
.bg-grid {
  opacity: 1;
  background-image:
    linear-gradient(rgba(255, 20, 120, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 20, 120, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: none; -webkit-mask-image: none;
}
body { background: var(--ink); }

/* ---- 2. TABS — bulletproof: only the active pane ever shows ---- */
.tabpane:not(.is-active) { display: none !important; }
.tabs { background: #000; border: 1.5px solid var(--stroke); }
.tabs__glider { background: var(--pink); box-shadow: none; }
.tabs__btn.is-active { color: #0a0207; }

/* ---- 3. SURFACES — solid fills + hard 1.5px borders (no more gradient cards) ---- */
.podium__card, .steps__card, .rewards__card, .tier, .shop__item, .raffle,
.vid, .day, .faq__item, .board, .hunt, .wins__side, .shop__bal, .stream__side,
.countdown__cell, .total, .watchhead, .ticker, .hunt__stat, .settings-panel {
  background: var(--card) !important;
  border: 1.5px solid var(--stroke);
  box-shadow: none;
}
.rewards__glow { display: none; } /* soft radial glow — an AI tell */

/* featured / hero cards get the confident hard offset shadow instead of soft glow */
.podium__card--1 {
  background: var(--card) !important;
  border: 2px solid var(--pink);
  box-shadow: var(--hard);
}
.tier--featured { border: 2px solid var(--pink); box-shadow: var(--hard); }
.win--big { background: #17120a !important; border: 1.5px solid #ffcf4a; }

/* hover = tactile "press" with a hard shadow, not a soft float */
.podium__card, .steps__card, .rewards__card, .tier, .shop__item, .raffle, .vid, .day {
  transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}
.podium__card:hover, .steps__card:hover, .rewards__card:hover, .tier:hover,
.shop__item:hover, .raffle:hover, .vid:hover, .day:hover {
  transform: translate(-3px, -3px) !important;
  border-color: var(--pink);
  box-shadow: var(--hard);
}

/* ---- 4. BUTTONS — solid, chunky, hard shadow on hover ---- */
.btn { border-radius: 8px; }
.btn--pink {
  background: var(--pink); color: #fff;
  box-shadow: none; border: 1.5px solid var(--pink);
}
.btn--pink:hover { transform: translate(-2px, -2px); box-shadow: var(--hard-white); background: var(--pink); }
.btn--ghost { border: 1.5px solid var(--stroke); background: transparent; color: #fff; border-radius: 8px; }
.btn--ghost:hover { border-color: var(--pink); background: rgba(255, 20, 120, 0.08); transform: translate(-2px, -2px); box-shadow: none; }
.btn--kick { border-radius: 8px; border: 1.5px solid var(--kick); }

/* ---- 5. TYPE — big, tight, ink-solid. Titles get a pink index + underline ---- */
.section__title {
  background: none !important; -webkit-text-fill-color: #fff; color: #fff !important;
  font-size: clamp(28px, 4.2vw, 52px); letter-spacing: -0.01em; line-height: 0.95;
  text-transform: uppercase;
}
.section__head { align-items: flex-end; gap: 14px; position: relative; }
.section__head::after {
  content: ""; position: absolute; left: 0; bottom: -10px; width: 64px; height: 5px;
  background: var(--pink);
}
.section .section__title::before {
  -webkit-text-fill-color: var(--pink); color: var(--pink);
  opacity: 1; font-size: 0.5em; vertical-align: 0.35em; margin-right: 14px;
}
.hero__title {
  background: none !important; -webkit-text-fill-color: #fff; color: #fff;
  font-size: clamp(34px, 5.4vw, 72px); letter-spacing: -0.02em; line-height: 0.92;
}
/* prize = solid hot pink slab with a black knockout stroke — reads like signage */
.hero__prize-amount {
  background: none !important; -webkit-text-fill-color: var(--pink); color: var(--pink);
  filter: none;
  -webkit-text-stroke: 2px #0a0207;
  text-shadow: 5px 5px 0 rgba(0, 0, 0, 0.55);
  animation: prizefloat 5s ease-in-out infinite;
}
.total__num {
  background: none !important; -webkit-text-fill-color: #fff; color: #fff;
  animation: none; text-shadow: 4px 4px 0 var(--pink);
}
.liveband__title { background: none !important; -webkit-text-fill-color: #fff; color: #fff; }

/* ---- 6. BRAND MARQUEE — the streetwear signature band ---- */
.marquee {
  overflow: hidden; margin: 22px 0 10px;
  background: var(--pink); border-top: 2px solid #000; border-bottom: 2px solid #000;
  transform: rotate(-1deg) scale(1.02);
}
.marquee__track {
  display: flex; align-items: center; gap: 22px; width: max-content;
  padding: 9px 0; animation: marquee 22s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display); font-size: 20px; letter-spacing: 0.02em;
  color: #0a0207; text-transform: uppercase; white-space: nowrap;
}
.marquee__track i { color: #0a0207; font-style: normal; font-size: 14px; opacity: 0.7; }
@keyframes marquee { to { transform: translateX(-33.333%); } }

/* ---- 7. HERO polish — tone the soft halo, keep the graphic rings ---- */
.hero__halo { background: radial-gradient(circle, rgba(255, 20, 120, 0.22) 0%, transparent 62%); }
.hero__ring { border-color: rgba(255, 20, 120, 0.35); }
.code-mini { background: var(--pink); color: #fff; border: 0; border-radius: 5px; }

/* ---- 8. leaderboard rows — solid, sharper ---- */
.board { border-radius: 12px; }
.board__row--head { background: #000; }
.board__row:not(.board__row--head):hover { background: rgba(255, 20, 120, 0.08); }
.podium__prize, .podium__card--1 .podium__prize { background: var(--pink); color: #fff; border: 0; box-shadow: none; }

/* ---- 9. countdown = mono digit slabs ---- */
.countdown__cell { border-radius: 8px; border: 1.5px solid var(--stroke); }
.countdown__cell b { color: var(--pink); }

/* respect reduced-motion for the marquee too */
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---- 10. live banner: solid panel + bold border (drop the blurred aurora) ---- */
.liveband {
  background: #0d0710 !important;
  border: 2px solid rgba(83, 252, 24, 0.55);
  box-shadow: none; animation: none; border-radius: 14px;
}
.liveband.is-off { border-color: var(--stroke); }
.liveband__aurora { display: none; }
.liveband__scan { opacity: 0.25; }

/* ---- 11. sidebar: flat ink, sharper active state ---- */
.sidebar { background: #0a070d; }
.sidebar__link.is-active { background: var(--pink); color: #0a0207; box-shadow: none; }
.sidebar__link.is-active .ic { fill: #0a0207; }
.sidebar__link { border-radius: 8px; }

/* ---- 12. keep the hero prize unmistakably SOLID (no gradient leak) ---- */
.hero__prize-amount { -webkit-text-fill-color: var(--pink); background-image: none !important; }

/* ============================================================
   GAME (HALO SPIN) + BUY + letter-spacing + raffle states
   ============================================================ */

/* ---- letter-spacing: open up the condensed Anton headings ---- */
.hero__title { letter-spacing: 0.012em; }
.section__title { letter-spacing: 0.022em; }
.liveband__title { letter-spacing: 0.012em; }
.hero__prize-amount, .total__num, .podium__wagered, .countdown__cell b { letter-spacing: 0.01em; }
.marquee__track span { letter-spacing: 0.05em; }

/* ---- HALO SPIN ---- */
.game { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: center; }
.game__stage { position: relative; width: clamp(260px, 40vw, 440px); aspect-ratio: 1; margin: 0 auto; }
.game__pointer {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%); z-index: 4;
  width: 0; height: 0; border-left: 15px solid transparent; border-right: 15px solid transparent;
  border-top: 26px solid #fff; filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.6));
}
.game__wheel {
  width: 100%; height: 100%; border-radius: 50%; position: relative;
  border: 7px solid #0a0207;
  box-shadow: 0 0 0 4px var(--pink), 0 20px 60px rgba(0, 0, 0, 0.6);
  will-change: transform;
}
.game__seg {
  position: absolute; left: 50%; top: 0; height: 50%; width: 46px; margin-left: -23px;
  transform-origin: bottom center; text-align: center; padding-top: 15px;
  font-family: var(--font-display); font-size: clamp(13px, 1.7vw, 20px);
  pointer-events: none; text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
.game__cap {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3;
  width: 24%; aspect-ratio: 1; border-radius: 50%; background: #0a0207; border: 3px solid var(--pink);
  display: grid; place-items: center; font-family: var(--font-display);
  font-size: clamp(10px, 1.3vw, 15px); color: var(--pink); letter-spacing: 0.04em;
  box-shadow: 0 0 22px rgba(255, 20, 120, 0.5);
}
.game__side { display: grid; gap: 14px; align-content: center; }
.game__bal { background: var(--card); border: 1.5px solid var(--stroke); border-radius: 12px; padding: 16px 18px; text-align: center; }
.game__bal-label { font-size: 10px; font-weight: 800; letter-spacing: 0.2em; color: var(--muted); }
.game__bal-num { display: block; font-family: var(--font-display); font-size: clamp(34px, 5vw, 54px); color: #fff; text-shadow: 3px 3px 0 var(--pink); font-variant-numeric: tabular-nums; margin-top: 4px; }
.game__spin { width: 100%; font-size: 16px; padding: 16px; }
.game__spin:disabled { opacity: 0.6; cursor: wait; }
.game__result { min-height: 24px; text-align: center; font-weight: 800; font-size: 15px; }
.game__result.is-win { color: var(--kick); }
.game__result.is-jackpot { color: #ffcf4a; font-family: var(--font-display); font-size: 20px; letter-spacing: 0.03em; }
.game__result.is-lose { color: var(--muted); }
.game__row { display: flex; align-items: center; justify-content: space-between; }
.game__link { color: var(--pink-soft); font-size: 13px; font-weight: 700; }
.game__link:hover { color: var(--pink-hot); }
.game__mute { width: 34px; height: 34px; display: grid; place-items: center; border: 1.5px solid var(--stroke); border-radius: 8px; color: var(--pink-soft); }
.game__mute:hover { border-color: var(--pink); }
.game__mute svg { width: 18px; height: 18px; }
.game__mute.is-muted { color: var(--muted); }
.game__fine { font-size: 11px; color: var(--muted); text-align: center; }
@media (max-width: 860px) { .game { grid-template-columns: 1fr; } .game__side { max-width: 360px; margin: 0 auto; width: 100%; } }

/* ---- raffle enter states ---- */
.raffle__enter { width: 100%; transition: background 0.2s, transform 0.15s; }
.raffle__enter.is-done { background: var(--kick) !important; color: #04120a !important; border-color: var(--kick) !important; }

/* ---- BUY / GET POINTS ---- */
.buy { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.buy__card { background: var(--card); border: 1.5px solid var(--stroke); border-radius: 14px; padding: 22px; display: grid; gap: 8px; justify-items: start; align-content: start; }
.buy__card h3 { font-size: 17px; }
.buy__card p { color: var(--muted); font-size: 13.5px; margin-bottom: 6px; }
.buy__tag { font-size: 9px; font-weight: 800; letter-spacing: 0.14em; color: #0a0207; background: var(--kick); padding: 3px 9px; border-radius: 5px; }
.buy__tag--soon { background: #3a3340; color: #cbb9d0; }
.buy__card--soon { border-style: dashed; opacity: 0.82; }
.buy__card--soon h3 { color: var(--muted); }
@media (max-width: 860px) { .buy { grid-template-columns: 1fr; } }

/* ============================================================
   PREMIUM CASINO WHEEL (overrides the flat first version)
   ============================================================ */
.game__stage { position: relative; width: clamp(280px, 42vw, 460px); aspect-ratio: 1; margin: 12px auto; }
.game__rim {
  position: absolute; inset: -13px; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle at 50% 28%, #2c2018, #0a0709 72%);
  border: 2px solid #7a5a1a;
  box-shadow: 0 0 0 3px #0a0709, 0 18px 55px rgba(0, 0, 0, 0.65), inset 0 0 26px rgba(0, 0, 0, 0.85);
}
.game__wheel {
  position: absolute; inset: 0; border-radius: 50%; z-index: 1;
  border: 5px solid #0a0709; background: #0d0810;
  box-shadow: inset 0 0 0 3px rgba(255, 207, 74, 0.65), inset 0 8px 30px rgba(0, 0, 0, 0.5);
}
.game__wheel::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; pointer-events: none; z-index: 2;
  background: repeating-conic-gradient(from -0.4deg, rgba(255, 207, 74, 0.85) 0 0.8deg, transparent 0.8deg 30deg);
}
.game__seg {
  position: absolute; left: 50%; top: 0; height: 50%; width: 44px; margin-left: -22px;
  transform-origin: bottom center; text-align: center; padding-top: 15px;
  font-family: var(--font-display); font-size: clamp(13px, 1.7vw, 20px);
  pointer-events: none; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45); z-index: 1;
}
.game__gloss {
  position: absolute; inset: 4px; border-radius: 50%; z-index: 3; pointer-events: none;
  background: radial-gradient(circle at 36% 24%, rgba(255, 255, 255, 0.22), transparent 46%);
}
.game__pegs { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.game__peg { position: absolute; left: 50%; top: 1.5%; height: 48.5%; transform-origin: bottom center; }
.game__peg::before {
  content: ""; position: absolute; left: -5px; top: -5px; width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, #ffcf4a 45%, #7a5a1a);
  box-shadow: 0 0 7px rgba(255, 207, 74, 0.7), 0 1px 2px rgba(0, 0, 0, 0.7);
}
.game__pointer {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%); z-index: 7;
  width: 0; height: 0; border-left: 16px solid transparent; border-right: 16px solid transparent;
  border-top: 30px solid #ffcf4a; filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.75));
}
.game__hub {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 6;
  width: 27%; aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  border: 4px solid #ffcf4a; background: #0a0709;
  box-shadow: 0 0 0 3px #0a0709, 0 5px 18px rgba(0, 0, 0, 0.7), 0 0 28px rgba(255, 20, 120, 0.45);
}
.game__hub img { width: 128%; height: 128%; object-fit: cover; margin: -14%; }

/* daily reward: claimed state */
.day__got { font-size: 11px; font-weight: 800; color: var(--kick); margin-top: 3px; }

/* Kick logo sits snug in the login buttons */
[data-kick-login] svg, .authbox__btn svg, .userchip__login svg { flex: none; }

/* ============================================================
   WHEEL: mascot fit fix + SPIN JUICE
   ============================================================ */
/* show the whole mascot in the hub (was getting cropped by cover) */
.game__hub img { width: 100% !important; height: 100% !important; object-fit: contain !important; margin: 0 !important; padding: 6%; }

/* idle spin button breathes to invite clicks */
.game__spin:not(:disabled) { animation: spinPulse 2.4s ease-in-out infinite; }
@keyframes spinPulse { 0%, 100% { box-shadow: 0 0 0 rgba(255, 20, 120, 0); } 50% { box-shadow: 0 0 26px rgba(255, 20, 120, 0.6); } }

/* wheel reacts on result */
.game__stage.is-won { animation: wheelWin 0.7s cubic-bezier(.2,.8,.2,1); }
.game__stage.is-jackpot { animation: wheelJackpot 0.75s ease; }
.game__stage.is-lose { animation: wheelLose 0.36s ease; }
@keyframes wheelWin { 0% { transform: scale(1); } 35% { transform: scale(1.045); } 70% { transform: scale(0.99); } 100% { transform: scale(1); } }
@keyframes wheelJackpot { 0%, 100% { transform: translateX(0) rotate(0); } 12% { transform: translateX(-7px) rotate(-1.2deg); } 28% { transform: translateX(7px) rotate(1.2deg); } 44% { transform: translateX(-5px) rotate(-0.8deg); } 60% { transform: translateX(5px) rotate(0.8deg); } 80% { transform: translateX(-2px); } }
@keyframes wheelLose { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }

/* gold rim glow-pulse on any win */
.game__stage.is-won .game__rim, .game__stage.is-jackpot .game__rim { animation: rimGlow 0.85s ease; }
@keyframes rimGlow {
  0%, 100% { box-shadow: 0 0 0 3px #0a0709, 0 18px 55px rgba(0, 0, 0, 0.65), inset 0 0 26px rgba(0, 0, 0, 0.85); }
  50% { box-shadow: 0 0 0 3px #ffcf4a, 0 0 66px rgba(255, 207, 74, 0.85), inset 0 0 26px rgba(0, 0, 0, 0.85); }
}

/* gold flash burst at the pointer on land */
.game__flash { position: absolute; top: -8px; left: 50%; transform: translateX(-50%); z-index: 6; width: 62%; height: 42%; pointer-events: none; opacity: 0; background: radial-gradient(ellipse at 50% 0%, rgba(255, 207, 74, 0.9), transparent 70%); }
.game__flash.on { animation: flashPop 0.55s ease; }
@keyframes flashPop { 0% { opacity: 0; transform: translateX(-50%) scale(0.6); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateX(-50%) scale(1.25); } }

/* balance number pops when it goes up */
.game__bal-num.is-bump { animation: balBump 0.45s ease; }
@keyframes balBump { 0% { transform: scale(1); } 40% { transform: scale(1.14); color: var(--kick); text-shadow: 3px 3px 0 var(--pink); } 100% { transform: scale(1); } }

@media (prefers-reduced-motion: reduce) { .game__spin:not(:disabled) { animation: none; } }

/* ============================================================
   DEALS / FREE SPINS + COMING SOON gating
   ============================================================ */
.deal {
  background: var(--card); border: 2px solid var(--pink); border-radius: 14px;
  padding: 26px 26px 22px; box-shadow: var(--hard);
}
.deal__top { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.deal__casino {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.16em;
  background: #fff; color: #0a0207; padding: 3px 10px; border-radius: 5px; text-transform: uppercase;
}
.deal__headline { font-family: var(--font-display); font-size: clamp(30px, 4.4vw, 54px); line-height: 0.95; margin-top: 8px; color: #fff; text-shadow: 3px 3px 0 var(--pink); letter-spacing: 0.02em; }
.deal__req { color: var(--muted); font-size: 14px; margin-top: 6px; }
.deal__cta { font-size: 15px; padding: 15px 26px; }
.deal__steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 14px 0 18px; padding: 0; }
.deal__steps li { background: #0b0710; border: 1.5px solid var(--stroke); border-radius: 10px; padding: 12px 14px; font-size: 13px; color: #d8cce0; display: flex; gap: 10px; align-items: flex-start; }
.deal__steps b { font-family: var(--font-display); color: var(--pink); font-size: 15px; flex: none; }
.deal__pick { font-size: 10.5px; font-weight: 800; letter-spacing: 0.24em; color: var(--pink-soft); margin-bottom: 10px; }
.deal__games { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.deal__game { display: block; border-radius: 10px; overflow: hidden; border: 1.5px solid var(--stroke); transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s; }
.deal__game img { width: 100%; height: 100%; object-fit: cover; display: block; }
.deal__game:hover { transform: translate(-3px, -3px); border-color: var(--pink); box-shadow: var(--hard); }
.deal__fine { margin-top: 14px; font-size: 11px; color: var(--muted); }
@media (max-width: 860px) {
  .deal__steps, .deal__games { grid-template-columns: 1fr; }
  .deal__cta { width: 100%; }
}

/* ---- COMING SOON sections (points economy off) ---- */
.soon-badge {
  display: inline-block; margin-left: 14px; vertical-align: middle;
  font-family: var(--font-body); font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
  background: #ffcf4a; color: #1a1206; padding: 5px 12px; border-radius: 6px;
  transform: rotate(-2deg);
}
.section--soon > *:not(.section__head) { opacity: 0.35; filter: grayscale(0.5); pointer-events: none; user-select: none; }
.section--soon .btn.is-off, .section--soon button { cursor: not-allowed; }

.hero__link { color: var(--pink-soft); font-weight: 700; text-decoration: underline; }
.hero__link:hover { color: var(--pink-hot); }

/* deal logo + watchtime coming soon pane */
.deal__logo { height: 44px; width: auto; display: block; }
.pane--soon .board, .pane--soon .watchhead img, .pane--soon .watchhead p { opacity: 0.35; filter: grayscale(0.5); pointer-events: none; user-select: none; }
.pane--soon .soon-badge { margin-left: 12px; }
