* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --void: #080B12;
  --panel: #0D141F;
  --panel-2: #111B29;
  --cyan: #3DDBFF;
  --violet: #7B61FF;
  --frost: #E8F4FF;
  --ice-dim: #6B8299;
  --line: #1C2838;
  --line-bright: #24384D;
  --warn: #FF6B4A;

  --f-display: 'Unbounded', sans-serif;
  --f-body: 'Inter', sans-serif;
  --f-mono: 'JetBrains Mono', monospace;

  --radius: 4px;
  --ease: cubic-bezier(.16,.84,.44,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--frost);
  font-family: var(--f-body);
  overflow-x: hidden;
  position: relative;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
svg { display: block; }

::selection { background: var(--cyan); color: var(--void); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--line-bright); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

.bg-ambient {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 900px 600px at 82% -5%, rgba(61,219,255,.14), transparent 60%),
    radial-gradient(ellipse 700px 500px at -5% 40%, rgba(123,97,255,.10), transparent 60%),
    linear-gradient(var(--void), var(--void));
}
.bg-ambient::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(61,219,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,219,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 60% 0%, black 20%, transparent 75%);
}

#cursorGlow {
  position: fixed; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,219,255,.10), transparent 70%);
  transform: translate(-50%,-50%);
  pointer-events: none; z-index: 1; opacity: 0; transition: opacity .4s;
}
#cursorGlow.on { opacity: 1; }

#sparkCanvas { position: fixed; inset: 0; z-index: 1; pointer-events: none; }

#loader {
  position: fixed; inset: 0; z-index: 999;
  background: var(--void);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  transition: opacity .5s var(--ease), visibility .5s;
}
#loader.hide { opacity: 0; visibility: hidden; }
.loader-logo { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--cyan); filter: drop-shadow(0 0 20px rgba(61,219,255,.5)); }
.loader-text { font-family: var(--f-mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--ice-dim); }
.loader-bar { width: 200px; height: 2px; background: var(--line); overflow: hidden; position: relative; }
.loader-bar::after {
  content: ""; position: absolute; inset: 0; width: 40%;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: loaderSweep 1.1s ease-in-out infinite;
}
@keyframes loaderSweep { 0% { left: -40%; } 100% { left: 100%; } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.section-eyebrow {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--cyan); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.section-eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--cyan); }
.soon-badge {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--void); background: var(--cyan); padding: 4px 10px; border-radius: 999px;
  margin-left: 10px; animation: pulseDot 1.8s ease-in-out infinite;
}
.section-title {
  font-family: var(--f-display); font-weight: 700; font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -.01em; line-height: 1.08; margin-bottom: 14px; text-transform: uppercase;
}
.section-sub { color: var(--ice-dim); font-size: 15px; max-width: 560px; line-height: 1.65; }

main { position: relative; z-index: 2; }
section, .section-block { padding: 110px 8vw; position: relative; }
@media (max-width: 720px) { section, .section-block { padding: 70px 6vw; } }

.nav {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  z-index: 100; width: min(94vw, 1180px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 10px 10px 10px 18px;
  background: rgba(13,20,31,.72);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  transition: border-color .35s, box-shadow .35s, background .35s;
}
.nav.scrolled { border-color: rgba(61,219,255,.4); box-shadow: 0 8px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(61,219,255,.08); background: rgba(8,11,18,.88); }

.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-brand img { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--cyan); }
.nav-brand-name { font-family: var(--f-display); font-weight: 700; font-size: 15px; letter-spacing: .02em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links .lnk {
  font-family: var(--f-mono); font-size: 12px; color: var(--ice-dim); padding: 9px 15px;
  border-radius: 999px; transition: color .25s, background .25s; letter-spacing: .02em;
}
.nav-links .lnk:hover { color: var(--frost); background: rgba(61,219,255,.08); }

.nav-cta { display: flex; align-items: center; gap: 8px; }
.btn-nav {
  display: inline-flex; align-items: center; gap: 7px; padding: 10px 16px;
  font-family: var(--f-mono); font-size: 12px; font-weight: 500; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s;
  white-space: nowrap;
}
.btn-nav svg, .btn-nav img { width: 14px; height: 14px; }
.btn-nav-kick { background: rgba(61,219,255,.08); color: var(--cyan); border: 1px solid rgba(61,219,255,.25); }
.btn-nav-kick:hover { background: rgba(61,219,255,.16); transform: translateY(-1px); }
.btn-nav-blox { background: var(--cyan); color: var(--void); font-weight: 700; }
.btn-nav-blox img { filter: brightness(0); }
.btn-nav-blox:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(61,219,255,.4); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 20px; height: 2px; background: var(--frost); transition: transform .3s, opacity .3s; }
.hamburger.x span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.x span:nth-child(2) { opacity: 0; }
.hamburger.x span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--void);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  opacity: 0; visibility: hidden; transform: translateY(-14px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu > a { font-family: var(--f-display); font-size: 22px; text-transform: uppercase; color: var(--frost); }
.mobile-menu .m-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; width: 240px; }
.mobile-menu .m-cta .btn-nav {
  justify-content: center; font-size: 12px; padding: 13px 14px;
  white-space: nowrap; gap: 8px;
}
.mobile-menu .m-cta .btn-nav svg,
.mobile-menu .m-cta .btn-nav img { width: 14px; height: 14px; flex-shrink: 0; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

.hero {
  position: relative; min-height: 100vh; display: grid; grid-template-columns: 1.15fr .85fr;
  align-items: stretch; padding: 0; overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, var(--void) 0%, var(--void) 54%, var(--panel) 54.4%, var(--panel-2) 100%);
  z-index: 0;
}
.hero-numeral {
  position: absolute; top: 50%; right: -6%; transform: translateY(-50%) rotate(-9deg);
  font-family: var(--f-display); font-weight: 700; font-size: clamp(280px, 34vw, 620px);
  color: transparent; -webkit-text-stroke: 1.5px rgba(61,219,255,.16);
  z-index: 0; line-height: .8; user-select: none; pointer-events: none;
  letter-spacing: -.03em;
}
.hero-copy {
  position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center;
  padding: 160px 5vw 80px 8vw;
}
.hero-eyebrow {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--cyan); display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan); animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.hero h1 {
  font-family: var(--f-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(46px, 6.4vw, 92px); line-height: .95; letter-spacing: -.015em; margin-bottom: 26px;
}
.hero h1 em {
  display: block; font-style: normal; color: var(--cyan);
  text-shadow: 0 0 40px rgba(61,219,255,.4);
}
.hero-lead { font-size: 16px; color: var(--ice-dim); max-width: 460px; line-height: 1.7; margin-bottom: 30px; }
.hero-lead b { color: var(--frost); font-weight: 600; }

.code-block {
  width: fit-content; position: relative;
  border: 1px solid rgba(61,219,255,.3); border-radius: 10px;
  background: linear-gradient(160deg, rgba(61,219,255,.08), rgba(13,20,31,.7));
  backdrop-filter: blur(10px);
  padding: 4px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.code-block::before {
  content: ""; position: absolute; top: -1px; left: -1px; width: 22px; height: 22px;
  border-top: 2px solid var(--cyan); border-left: 2px solid var(--cyan); border-radius: 10px 0 0 0;
}
.code-block::after {
  content: ""; position: absolute; bottom: -1px; right: -1px; width: 22px; height: 22px;
  border-bottom: 2px solid var(--cyan); border-right: 2px solid var(--cyan); border-radius: 0 0 10px 0;
}
.code-block-row {
  display: flex; align-items: center; gap: 16px; padding: 14px 18px;
}
.cb-tag {
  font-family: var(--f-mono); font-size: 11px; color: var(--ice-dim); letter-spacing: .04em;
  white-space: nowrap;
}
.cb-code {
  font-family: var(--f-mono); font-weight: 800; font-size: 18px; color: var(--frost);
  letter-spacing: .1em; background: rgba(61,219,255,.1); padding: 6px 14px; border-radius: 6px;
  border: 1px dashed rgba(61,219,255,.4);
}
.cb-copy {
  display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%;
  font-family: var(--f-mono); font-size: 12px; font-weight: 700; letter-spacing: .05em;
  color: var(--void); background: var(--cyan); padding: 12px; border-radius: 7px;
  transition: background .2s, transform .2s var(--ease);
}
.cb-copy:hover { background: var(--frost); transform: translateY(-1px); }
.cb-copy svg { flex-shrink: 0; }

@media (max-width: 480px) {
  .code-block-row { flex-direction: column; align-items: flex-start; gap: 10px; }
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 9px; padding: 15px 26px;
  font-family: var(--f-mono); font-size: 13px; font-weight: 600; letter-spacing: .03em;
  border-radius: 3px; transition: transform .25s var(--ease), box-shadow .25s, background .25s, border-color .25s;
}
.btn-primary { background: var(--cyan); color: var(--void); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(61,219,255,.35); }
.btn-ghost { border: 1px solid var(--line-bright); color: var(--frost); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }

.hero-visual {
  position: relative; z-index: 2; display: flex; align-items: center; justify-content: center;
  padding: 160px 6vw 80px 2vw;
}
.pool-card {
  position: relative; width: 100%; max-width: 380px;
  background: radial-gradient(ellipse 140% 100% at 30% 0%, rgba(123,97,255,.14), transparent 55%), rgba(13,20,31,.6);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-bright); border-radius: 18px;
  padding: 30px 30px 26px; text-align: left;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.04);
}
.pool-card-tag {
  position: absolute; top: -13px; left: 28px;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--void); background: var(--cyan); padding: 6px 14px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(61,219,255,.4);
}
.pct-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--void); }
.pool-card-brand {
  display: flex; align-items: center; gap: 10px; margin: 14px 0 24px;
}
.pool-card-brand img { width: 50px; border-radius: 50%; border: 1px solid var(--line-bright); }
.pool-card-brand span { font-family: var(--f-mono); font-size: 16px; color: var(--ice-dim); letter-spacing: .06em; text-transform: uppercase; }
.pool-card-amount {
  display: flex; align-items: baseline; gap: 4px; font-family: var(--f-display);
  font-weight: 700; letter-spacing: -.01em; margin-bottom: 6px;
}
.pca-num { font-size: 44px; color: var(--frost); }
.pca-plus { font-size: 26px; color: var(--cyan); }
.pca-unit { font-family: var(--f-mono); font-size: 15px; color: var(--ice-dim); margin-left: 6px; align-self: center; }
.pool-card-usd { font-family: var(--f-mono); font-size: 12.5px; color: var(--cyan); margin-bottom: 26px; }
.pool-card-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); padding-top: 20px; }
.pcs-item { display: flex; flex-direction: column; gap: 4px; position: relative; padding: 0 6px; text-align: center; }
.pcs-item:not(:last-child)::after {
  content: ""; position: absolute; top: 2px; right: 0; bottom: 2px; width: 1px; background: var(--line);
}
.pcs-num { font-family: var(--f-mono); font-weight: 700; font-size: 20px; color: var(--frost); }
.pcs-lbl { font-family: var(--f-mono); font-size: 9.5px; color: var(--ice-dim); text-transform: uppercase; letter-spacing: .08em; }

@media (max-width: 480px) {
  .pca-num { font-size: 36px; }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero::before {
    background:
      radial-gradient(ellipse 120% 55% at 50% 0%, rgba(61,219,255,.16), transparent 60%),
      radial-gradient(ellipse 90% 50% at 100% 30%, rgba(123,97,255,.14), transparent 65%),
      var(--void);
  }
  .hero-numeral { display: none; }

  .hero-copy {
    padding: 108px 6vw 32px;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
  }
  .hero-eyebrow { justify-content: center; margin-bottom: 16px; }
  .hero-copy h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: clamp(40px, 11vw, 56px);
    margin-bottom: 18px;
  }
  .hero-lead {
    max-width: 100%;
    font-size: 15px;
    margin-bottom: 24px;
  }
  .code-block { margin: 0 auto; }
  .hero-actions {
    justify-content: center;
    width: 100%;
    margin-top: 20px !important;
  }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }

  .hero-visual {
    padding: 8px 6vw 56px;
  }
  .pool-card { max-width: 420px; }
}

@media (max-width: 480px) {
  .hero-copy { padding: 96px 6vw 28px; }
  .hero-eyebrow { font-size: 11px; }
  .hero-copy h1 { font-size: clamp(34px, 12vw, 44px); }
  .hero-lead { font-size: 14px; line-height: 1.6; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .pool-card { padding: 24px 22px 20px; }
  .pca-num { font-size: 32px; }
}

.stats-bar {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--panel); overflow: hidden; padding: 0;
}
.ticker-track {
  display: flex; width: max-content;
  animation: tickerScroll 26s linear infinite;
}
.stats-bar:hover .ticker-track { animation-play-state: paused; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  display: flex; align-items: center; gap: 14px; padding: 22px 40px;
  border-right: 1px solid var(--line); white-space: nowrap;
}
.ticker-num { font-family: var(--f-mono); font-weight: 700; font-size: 22px; color: var(--cyan); }
.ticker-label { font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ice-dim); }
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 8px var(--violet); }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

.leaderboard-section { padding-top: 110px; }
.lb-header {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px;
  flex-wrap: wrap; margin-bottom: 60px;
}
.countdown-pill {
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--line-bright); border-radius: 999px; padding: 10px 20px 10px 22px;
  background: var(--panel);
}
.countdown-label { font-family: var(--f-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ice-dim); }
#countdown { display: flex; align-items: baseline; gap: 4px; font-family: var(--f-mono); font-weight: 700; font-size: 17px; color: var(--cyan); }
#countdown small { font-size: 9px; color: var(--ice-dim); margin-right: 4px; font-weight: 400; }
.countdown-sep { color: var(--line-bright); }

.podium-grid {
  position: relative; display: flex; justify-content: center; align-items: flex-end;
  gap: 0; margin-bottom: 70px; padding: 40px 0 0;
  min-height: 340px;
}
.pcard {
  position: relative; width: 220px; text-align: center;
  background: var(--panel); border: 1px solid var(--line-bright); border-radius: 12px;
  padding: 30px 20px 24px; transition: transform .4s var(--ease), box-shadow .4s;
  margin: 0 -8px;
}
.pcard:nth-child(1) { transform: translateY(30px) rotate(-3deg); z-index: 1; }
.pcard:nth-child(2) { transform: translateY(-24px); z-index: 3; border-color: rgba(61,219,255,.5); box-shadow: 0 20px 60px rgba(61,219,255,.15); }
.pcard:nth-child(3) { transform: translateY(30px) rotate(3deg); z-index: 1; }
.pcard:hover { transform: translateY(-8px) !important; box-shadow: 0 24px 50px rgba(0,0,0,.4); }
.pcard.first { padding-top: 40px; }
.crown-svg { width: 26px; height: 26px; color: var(--cyan); margin: 0 auto 8px; filter: drop-shadow(0 0 12px rgba(61,219,255,.6)); }
.p-rankbadge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-family: var(--f-mono); font-size: 11px; font-weight: 700; color: var(--void);
  background: var(--cyan); padding: 4px 10px; border-radius: 999px;
}
.p-av {
  width: 58px; height: 58px; border-radius: 50%; margin: 10px auto 14px;
  background: var(--panel-2); border: 2px solid var(--line-bright);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 700; font-size: 20px; color: var(--cyan);
  overflow: hidden;
}
.pcard:nth-child(2) .p-av { border-color: var(--cyan); box-shadow: 0 0 20px rgba(61,219,255,.35); }
.p-av img { width: 100%; height: 100%; object-fit: cover; }
.p-uname { font-family: var(--f-body); font-weight: 700; font-size: 14px; margin-bottom: 14px; word-break: break-word; }
.p-wlabel { font-family: var(--f-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--ice-dim); margin-bottom: 4px; }
.wag-num { font-family: var(--f-mono); font-size: 15px; font-weight: 700; color: var(--frost); margin-bottom: 16px; display: block; }
.wag-num.small { font-size: 12px; margin-bottom: 0; }
.p-prize { border-top: 1px solid var(--line); padding-top: 14px; display: flex; flex-direction: column; gap: 3px; }
.p-fc { font-family: var(--f-mono); font-weight: 700; font-size: 16px; color: var(--cyan); }
.p-usd { font-family: var(--f-mono); font-size: 11px; color: var(--ice-dim); }

@media (max-width: 720px) {
  .podium-grid { flex-direction: column; align-items: center; gap: 20px; }
  .pcard, .pcard:nth-child(1), .pcard:nth-child(2), .pcard:nth-child(3) { transform: none; margin: 0; width: 100%; max-width: 300px; }
}

.board-wrap-v2 { display: flex; flex-direction: column; gap: 8px; }
.board-head-v2 {
  display: grid; grid-template-columns: 46px 1fr 140px 150px; gap: 12px;
  padding: 0 22px 10px; font-family: var(--f-mono); font-size: 10px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ice-dim);
}
.bh-wag-v2, .bh-prize-v2 { text-align: right; }
.board-row {
  display: grid; grid-template-columns: 46px 1fr 140px 150px; gap: 12px; align-items: center;
  padding: 14px 22px; border: 1px solid var(--line); border-left: 3px solid var(--line);
  border-radius: 8px; background: var(--panel);
  transition: background .25s, border-color .25s, transform .25s var(--ease); position: relative;
}
.board-row:hover { background: var(--panel-2); border-color: rgba(61,219,255,.3); border-left-color: var(--cyan); transform: translateX(3px); }
.board-row:nth-child(-n+3) { border-left-color: var(--cyan); }
.br-rank {
  font-family: var(--f-mono); font-weight: 700; font-size: 13px; color: var(--ice-dim);
  width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
  border-radius: 6px; background: var(--panel-2);
}
.board-row:nth-child(-n+3) .br-rank { color: var(--cyan); background: rgba(61,219,255,.1); }
.br-who { display: flex; align-items: center; gap: 12px; }
.br-mini {
  width: 30px; height: 30px; border-radius: 8px; background: var(--panel-2); border: 1px solid var(--line-bright);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 12px; font-weight: 700; color: var(--ice-dim); overflow: hidden;
}
.br-mini.lit { border-color: var(--cyan); color: var(--cyan); box-shadow: 0 0 12px rgba(61,219,255,.2); }
.br-mini img { width: 100%; height: 100%; object-fit: cover; }
.br-name { font-weight: 600; font-size: 14px; }
.br-prize { text-align: right; display: flex; flex-direction: column; gap: 2px; }
.br-prize.none { color: var(--ice-dim); font-family: var(--f-mono); }
.bp-fc { font-family: var(--f-mono); font-weight: 700; font-size: 13px; color: var(--cyan); }
.bp-usd { font-family: var(--f-mono); font-size: 10px; color: var(--ice-dim); }
.br-wag { text-align: right; font-family: var(--f-mono); }

.board-data-note { font-family: var(--f-mono); font-size: 11px; color: var(--ice-dim); margin-top: 16px; letter-spacing: .02em; }

@media (max-width: 640px) {
  .board-head-v2, .board-row { grid-template-columns: 34px 1fr 90px; }
  .bh-wag-v2, .br-wag { display: none; }
}

.win-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 50px;
}
.win-card {
  border: 1px solid var(--line-bright); border-radius: 14px; padding: 28px 22px;
  background: var(--panel); position: relative; overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.win-card::after {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .3s;
  background: radial-gradient(circle at 20% 0%, rgba(61,219,255,.14), transparent 65%);
}
.win-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.win-card:hover::after { opacity: 1; }
.win-card-champion {
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border-color: rgba(61,219,255,.4); box-shadow: 0 20px 50px rgba(61,219,255,.1);
}
.win-icon {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--panel-2); border: 1px solid var(--line-bright); color: var(--cyan);
  position: relative; z-index: 1;
}
.win-card-champion .win-icon { color: var(--void); background: var(--cyan); box-shadow: 0 0 24px rgba(61,219,255,.4); }
.win-icon svg { width: 22px; height: 22px; }
.win-tag { font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ice-dim); margin-bottom: 12px; position: relative; z-index: 1; }
.win-amt { font-family: var(--f-display); font-weight: 700; font-size: 22px; color: var(--frost); position: relative; z-index: 1; }
.win-usd { font-family: var(--f-mono); font-size: 12px; color: var(--cyan); margin-top: 6px; position: relative; z-index: 1; }
.win-card-wide { grid-column: span 1; }

@media (max-width: 900px) {
  .win-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .win-grid { grid-template-columns: 1fr; }
}

.prize-notice {
  display: flex; align-items: center; gap: 10px; margin-top: 32px; padding: 16px 20px;
  border: 1px solid var(--line); border-radius: 8px; background: var(--panel);
  font-size: 13px; color: var(--ice-dim); line-height: 1.5;
}
.prize-notice svg { flex-shrink: 0; color: var(--cyan); }

.partner-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.partner-card-wrap { position: sticky; top: 110px; }
.shard-card {
  background: var(--panel); border: 1px solid var(--line-bright); border-radius: 14px;
  padding: 40px 32px; position: relative; overflow: hidden;
}
.shard-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
}
.partner-logo-display { display: flex; align-items: center; gap: 12px; font-family: var(--f-display); font-weight: 700; font-size: 22px; text-transform: uppercase; margin-bottom: 8px; }
.partner-logo-display span { color: var(--cyan); }
.partner-tagline { color: var(--ice-dim); font-size: 13px; margin-bottom: 28px; }
.code-display {
  display: flex; align-items: center; border: 1px solid var(--line-bright); border-radius: 8px;
  overflow: hidden; margin-bottom: 22px;
}
.code-label { font-family: var(--f-mono); font-size: 10px; color: var(--ice-dim); padding: 12px 14px; letter-spacing: .08em; text-transform: uppercase; }
.code-value { font-family: var(--f-mono); font-weight: 700; font-size: 15px; color: var(--cyan); padding: 12px; flex: 1; border-left: 1px solid var(--line-bright); border-right: 1px solid var(--line-bright); }
.code-copy-btn { padding: 12px 16px; color: var(--frost); transition: color .2s, background .2s; }
.code-copy-btn:hover { color: var(--cyan); background: rgba(61,219,255,.08); }

.flow { display: flex; flex-direction: column; margin-top: 4px; }
.flow-step {
  display: grid; grid-template-columns: 52px 1fr; column-gap: 20px;
  opacity: 0; transform: translateX(-14px);
  animation: flowIn .6s var(--ease) forwards;
  animation-delay: calc(var(--flow-i, 0) * .15s);
}
.flow-step:nth-child(1) { --flow-i: 0; }
.flow-step:nth-child(2) { --flow-i: 1; }
.flow-step:nth-child(3) { --flow-i: 2; }
.flow-step:nth-child(4) { --flow-i: 3; }
@keyframes flowIn { to { opacity: 1; transform: none; } }

.flow-node {
  width: 52px; height: 52px; border-radius: 50%; grid-row: 1;
  display: flex; align-items: center; justify-content: center;
  background: var(--panel); border: 1.5px solid var(--cyan); color: var(--cyan);
  box-shadow: 0 0 22px rgba(61,219,255,.3); flex-shrink: 0;
}
.flow-node svg { width: 22px; height: 22px; }
.flow-node-end { background: var(--cyan); color: var(--void); }
.flow-connector {
  grid-column: 1; width: 52px; display: flex; justify-content: center; padding: 4px 0;
  position: relative;
}
.flow-connector::before {
  content: ""; position: absolute; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(var(--cyan), var(--violet)); opacity: .3;
}
.flow-connector span {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: flowPulse 2.2s ease-in-out infinite;
}
.flow-step:nth-child(2) .flow-connector span { animation-delay: .3s; }
.flow-step:nth-child(3) .flow-connector span { animation-delay: .6s; }
@keyframes flowPulse {
  0% { top: 0; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.flow-body { padding: 6px 0 30px; display: flex; flex-direction: column; gap: 6px; }
.flow-step:last-child .flow-body { padding-bottom: 0; }
.flow-body strong { font-family: var(--f-display); font-size: 15px; text-transform: uppercase; letter-spacing: .01em; }
.flow-body span { color: var(--ice-dim); font-size: 13px; line-height: 1.6; max-width: 380px; }

@media (prefers-reduced-motion: reduce) {
  .flow-step { opacity: 1; transform: none; animation: none; }
  .flow-connector span { animation: none; opacity: .6; }
}

@media (max-width: 900px) {
  .partner-section { grid-template-columns: 1fr; }
  .partner-card-wrap { position: static; }
}

.community-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 110px;
  gap: 14px; margin-top: 50px;
}
.social-card {
  display: flex; align-items: center; gap: 16px; padding: 22px;
  border: 1px solid var(--line); border-radius: 12px; background: var(--panel);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.social-card::after {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .3s;
  background: radial-gradient(circle at 30% 20%, rgba(61,219,255,.12), transparent 70%);
}
.social-card:hover { transform: translateY(-5px); border-color: var(--line-bright); box-shadow: 0 16px 40px rgba(0,0,0,.35); }
.social-card:hover::after { opacity: 1; }
.social-card.big { grid-column: span 2; grid-row: span 2; flex-direction: column; align-items: flex-start; justify-content: flex-end; }
.social-card.mid { grid-column: span 1; grid-row: span 2; flex-direction: column; align-items: flex-start; justify-content: flex-end; }

.social-icon {
  width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: var(--panel-2); border: 1px solid var(--line-bright); flex-shrink: 0; position: relative; z-index: 1;
}
.social-icon svg, .social-icon img { width: 22px; height: 22px; }
.big .social-icon { width: 54px; height: 54px; margin-bottom: 6px; }
.big .social-icon svg, .big .social-icon img { width: 28px; height: 28px; }
.icon-kick { color: var(--cyan); }
.icon-blox { color: var(--cyan); }
.icon-discord { color: var(--violet); }
.icon-youtube { color: #FF5C5C; }
.icon-twitter { color: var(--frost); }
.social-platform { font-family: var(--f-display); font-weight: 700; font-size: 14px; text-transform: uppercase; position: relative; z-index: 1; }
.big .social-platform { font-size: 20px; }
.social-handle { font-family: var(--f-mono); font-size: 11px; color: var(--ice-dim); margin-top: 3px; position: relative; z-index: 1; }

@media (max-width: 860px) {
  .community-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .social-card.big { grid-column: span 2; grid-row: span 1; flex-direction: row; align-items: center; justify-content: flex-start; }
  .social-card.mid { grid-column: span 2; grid-row: span 1; flex-direction: row; align-items: center; justify-content: flex-start; }
  .big .social-icon { width: 44px; height: 44px; margin-bottom: 0; }
  .big .social-icon svg, .big .social-icon img { width: 22px; height: 22px; }
  .big .social-platform { font-size: 14px; }
}
@media (max-width: 520px) {
  .community-grid { grid-template-columns: 1fr; }
  .social-card.big { grid-column: span 1; }
  .social-card.mid { grid-column: span 1; }
}

footer {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.footer-crest {
  background: var(--panel); padding: 80px 6vw; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
}
.footer-crest img { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--cyan); margin-bottom: 20px; }
.footer-crest-name {
  font-family: var(--f-display); font-weight: 700; font-size: clamp(46px, 6vw, 84px);
  text-transform: uppercase; letter-spacing: -.02em; line-height: .95; color: var(--frost);
}
.footer-crest-sub { font-family: var(--f-mono); font-size: 12px; color: var(--ice-dim); margin: 14px 0 26px; letter-spacing: .04em; }
.footer-soc { display: flex; gap: 10px; }
.footer-soc a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-bright);
  display: flex; align-items: center; justify-content: center; color: var(--ice-dim);
  transition: color .25s, border-color .25s, transform .25s;
}
.footer-soc a:hover { color: var(--cyan); border-color: var(--cyan); transform: translateY(-3px); }
.footer-soc .bloxflip-link:hover div {
    background-color: var(--cyan);
}
.footer-soc a svg { width: 18px; height: 18px; }
.footer-soc .bloxflip-link div {
    width: 19px;
    height: 100%;
    margin-left: 1.5px;
    background-color: var(--ice-dim);

    -webkit-mask: url("bloxflip-logo-white.svg") no-repeat center;
    mask: url("bloxflip-logo-white.svg") no-repeat center;

    -webkit-mask-size: contain;
    mask-size: contain;
}

.footer-legal {
  background: var(--void); padding: 80px 6vw; display: flex; flex-direction: column;
  justify-content: center; gap: 20px; border-left: 1px solid var(--line);
}
.footer-disclaimer { font-size: 12.5px; color: var(--ice-dim); line-height: 1.75; }
.footer-disclaimer b { color: var(--frost); }
.footer-copyright { font-family: var(--f-mono); font-size: 11px; color: var(--ice-dim); letter-spacing: .04em; }

@media (max-width: 860px) {
  footer { grid-template-columns: 1fr; }
  .footer-legal { border-left: none; border-top: 1px solid var(--line); }
  .footer-crest, .footer-legal { padding: 56px 7vw; }
}

#toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--panel); border: 1px solid var(--cyan); color: var(--frost);
  font-family: var(--f-mono); font-size: 12.5px; padding: 13px 22px; border-radius: 999px;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease);
  z-index: 200; box-shadow: 0 12px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(61,219,255,.1);
  white-space: nowrap;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }