/* =====================================================================
   WETT ARENA — vvettarena.pl
   Cyberpunk / neon esports betting platform
   Design system + components
   ===================================================================== */

/* ------------------------------- RESET ------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  /* palette */
  --bg:        #07070C;
  --bg-2:      #0B0B14;
  --surface:   #10101C;
  --surface-2: #16162A;
  --line:      #23233c;

  --cyan:      #00F0FF;
  --cyan-dim:  #0891a8;
  --magenta:   #FF1B76;
  --magenta-2: #FF006E;
  --lime:      #B6FF3A;
  --purple:    #A855F7;
  --gold:      #FFC53D;

  --text:      #ECECF7;
  --muted:     #8A8AB0;
  --muted-2:   #5B5B7A;

  /* effects */
  --glow-cyan:    0 0 8px rgba(0,240,255,.55), 0 0 22px rgba(0,240,255,.28);
  --glow-magenta: 0 0 8px rgba(255,27,118,.6), 0 0 24px rgba(255,27,118,.3);
  --glow-lime:    0 0 8px rgba(182,255,58,.55), 0 0 22px rgba(182,255,58,.28);
  --shadow:       0 20px 50px -20px rgba(0,0,0,.8);

  --radius:  14px;
  --radius-s: 8px;

  /* fonts */
  --f-display: "Chakra Petch", system-ui, sans-serif;
  --f-body:    "Sora", system-ui, sans-serif;
  --f-mono:    "Space Mono", ui-monospace, monospace;

  --nav-h: 66px;
  --hud-h: 40px;
}

/* ------------------------------- BASE ------------------------------- */
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* atmospheric background layers */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(900px 600px at 15% -5%, rgba(168,85,247,.16), transparent 60%),
    radial-gradient(1000px 700px at 100% 0%, rgba(0,240,255,.14), transparent 55%),
    radial-gradient(800px 800px at 50% 120%, rgba(255,27,118,.12), transparent 60%),
    var(--bg);
}
/* subtle grid + scanlines */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(120,140,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,140,255,.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 85%);
}

/* grain overlay */
.grain {
  position: fixed; inset: 0; z-index: 999; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

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

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

/* scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--cyan-dim), var(--purple)); border-radius: 10px; }

/* --------------------------- TYPOGRAPHY ----------------------------- */
h1,h2,h3,h4 { font-family: var(--f-display); font-weight: 700; line-height: 1.05; letter-spacing: -.01em; }
.mono { font-family: var(--f-mono); }
.eyebrow {
  font-family: var(--f-mono);
  font-size: .74rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--cyan); box-shadow: var(--glow-cyan); }

.neon-cyan    { color: var(--cyan);    text-shadow: var(--glow-cyan); }
.neon-magenta { color: var(--magenta); text-shadow: var(--glow-magenta); }
.neon-lime    { color: var(--lime);    text-shadow: var(--glow-lime); }

/* ---------------------------- LAYOUT -------------------------------- */
.wrap { width: min(1240px, 92vw); margin-inline: auto; }
section { padding: 96px 0; position: relative; }
.section-head { margin-bottom: 46px; max-width: 760px; }
.section-head h2 {
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  margin: 14px 0 12px;
  text-transform: uppercase;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }
.center { text-align: center; margin-inline: auto; }
.center .eyebrow { justify-content: center; }

/* angular esports card corner */
.clip {
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

/* --------------------------- BUTTONS -------------------------------- */
.btn {
  --c: var(--cyan);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #05060a;
  background: var(--c);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: transform .18s ease, box-shadow .25s ease, filter .2s ease;
  box-shadow: 0 0 0 rgba(0,240,255,0);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 0 22px -2px var(--c); filter: brightness(1.08); }
.btn:active { transform: translateY(0); }
.btn.magenta { --c: var(--magenta); color: #fff; }
.btn.lime    { --c: var(--lime); }
.btn.ghost {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 1px transparent;
}
.btn.ghost:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: inset 0 0 20px -8px var(--cyan); }
.btn.sm { padding: 10px 18px; font-size: .8rem; }
.btn.lg { padding: 17px 34px; font-size: 1rem; }

/* ----------------------------- HUD BAR ------------------------------ */
.hud {
  height: var(--hud-h);
  background: linear-gradient(90deg, rgba(168,85,247,.15), rgba(0,240,255,.12));
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  font-family: var(--f-mono);
  font-size: .78rem;
  position: relative;
  z-index: 60;
}
.hud .wrap { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hud-user { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.hud-user strong { color: var(--lime); }
.hud-stat { display: flex; align-items: center; gap: 7px; color: var(--muted); }
.hud-stat b { color: var(--text); }
.hud-xp {
  width: 120px; height: 7px; background: var(--surface-2); border-radius: 6px;
  overflow: hidden; border: 1px solid var(--line);
}
.hud-xp span { display: block; height: 100%; width: 78%;
  background: linear-gradient(90deg, var(--cyan), var(--purple)); box-shadow: var(--glow-cyan); }
.hud-coins { color: var(--gold); margin-left: auto; }
.hud-coins b { color: var(--gold); }

/* ------------------------------ NAV --------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  backdrop-filter: blur(14px);
  background: rgba(8,8,15,.72);
  border-bottom: 1px solid var(--line);
  transition: background .3s;
}
.nav .wrap { height: 100%; display: flex; align-items: center; gap: 22px; }
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--f-display); font-weight: 700; letter-spacing: .02em; }

/* ---------------------------- ANIMATED LOGO ------------------------- */
.logo-mark { position: relative; width: 40px; height: 40px; flex: none; display: grid; place-items: center; }
/* rotating conic aura */
.logo-mark::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%; z-index: 0;
  background: conic-gradient(from 0deg,
    transparent 0 32%, rgba(0,240,255,.62) 44%, rgba(168,85,247,.55) 58%,
    rgba(255,27,118,.62) 70%, transparent 84% 100%);
  filter: blur(7px); opacity: .5; animation: logoSpin 4.5s linear infinite; transition: opacity .35s;
}
.logo:hover .logo-mark::before { opacity: 1; }
.logo-svg { position: relative; z-index: 1; width: 40px; height: 40px; display: block; overflow: visible; }
.logo:hover .logo-svg { animation: logoTilt .6s ease; }
.logo-svg .hexFill { fill: #0a0a15; }
.logo-svg .hexRing {
  fill: none; stroke: url(#lgRing); stroke-width: 2.4; stroke-linejoin: round;
  filter: drop-shadow(0 0 4px rgba(0,240,255,.55));
  stroke-dasharray: 112; stroke-dashoffset: 112; animation: logoDraw 1.3s ease .1s forwards;
}
.logo-svg .wPath {
  fill: none; stroke: url(#lgW); stroke-width: 3.4; stroke-linecap: round; stroke-linejoin: round;
  filter: drop-shadow(0 0 3px rgba(150,250,255,.85));
  stroke-dasharray: 52; stroke-dashoffset: 52; animation: logoDraw 1s ease .55s forwards;
}
/* wordmark with holographic light sweep */
.logo-word { display: inline-flex; font-family: var(--f-display); font-weight: 800; font-size: 1.16rem; letter-spacing: .04em; line-height: 1; }
.logo-word .lw1, .logo-word .lw2 {
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  background-size: 250% 100%; background-repeat: no-repeat; animation: logoShine 5s linear infinite;
}
.logo-word .lw1 { background-image: linear-gradient(100deg, #E7E7F5 0 40%, #ffffff 50%, #E7E7F5 60% 100%); }
.logo-word .lw2 { background-image: linear-gradient(100deg, #0bb9c7 0 40%, #C6FEFF 50%, #00F0FF 60% 100%); }

@keyframes logoSpin  { to { transform: rotate(360deg); } }
@keyframes logoDraw  { to { stroke-dashoffset: 0; } }
@keyframes logoShine { 0%, 12% { background-position: 100% 0; } 88%, 100% { background-position: 0% 0; } }
@keyframes logoTilt  { 0%,100% { transform: rotate(0) scale(1); } 30% { transform: rotate(-6deg) scale(1.06); } 70% { transform: rotate(4deg) scale(1.03); } }

@media (prefers-reduced-motion: reduce) {
  .logo-mark::before,
  .logo-word .lw1, .logo-word .lw2 { animation: none; }
  .logo-svg .hexRing, .logo-svg .wPath { animation: none; stroke-dashoffset: 0; }
}
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav-links a {
  font-size: .86rem; font-weight: 500; color: var(--muted);
  padding: 8px 12px; border-radius: 8px; transition: color .2s, background .2s;
  position: relative; white-space: nowrap;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.04); }
.nav-links a .tag {
  font-family: var(--f-mono); font-size: .55rem; color: var(--bg); background: var(--lime);
  padding: 1px 5px; border-radius: 4px; margin-left: 5px; vertical-align: middle; letter-spacing: .05em;
}
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.burger { display: none; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 8px; }
.burger span { display: block; width: 18px; height: 2px; background: var(--text); margin: 3px auto; transition: .3s; }

/* --------------------------- HERO ----------------------------------- */
.hero { padding: 70px 0 90px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center;
}
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.pill {
  font-family: var(--f-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 12px; border: 1px solid var(--line); border-radius: 40px; color: var(--muted);
  display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.02);
}
.pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: var(--glow-lime); }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 .l1 { display: block; color: var(--text); }
.hero h1 .l2 { display: block; color: var(--cyan); text-shadow: var(--glow-cyan); }
.hero h1 .l3 { display: block;
  background: linear-gradient(90deg, var(--magenta), var(--purple));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: 1.14rem; color: var(--muted); max-width: 500px; margin-bottom: 30px; }
.hero-sub b { color: var(--text); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-metrics { display: flex; gap: 34px; flex-wrap: wrap; }
.metric b { font-family: var(--f-display); font-size: 1.7rem; display: block; color: var(--text); }
.metric span { font-family: var(--f-mono); font-size: .72rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }
.metric b.c { color: var(--cyan); }
.metric b.m { color: var(--magenta); }
.metric b.l { color: var(--lime); }

/* hero visual — animated arena card / live match */
.hero-visual { position: relative; }
.arena-screen {
  position: relative; border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  box-shadow: var(--shadow), inset 0 0 60px rgba(0,240,255,.05);
  padding: 22px;
}
.arena-screen::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(180deg, transparent 0 3px, rgba(0,0,0,.14) 3px 4px);
  opacity: .5;
}
.as-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; position: relative; }
.live-dot { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: .72rem; color: var(--magenta); text-transform: uppercase; letter-spacing: .1em; }
.live-dot i { width: 8px; height: 8px; border-radius: 50%; background: var(--magenta); box-shadow: var(--glow-magenta); animation: pulse 1.4s infinite; }
.as-league { font-family: var(--f-mono); font-size: .7rem; color: var(--muted); }
.as-teams { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; margin-bottom: 20px; position: relative; }
.as-team { text-align: center; }
.as-team .badge-team {
  width: 58px; height: 58px; margin: 0 auto 10px; border-radius: 14px; display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 700; font-size: 1.3rem;
  background: var(--surface-2); border: 1px solid var(--line);
}
.as-team.t1 .badge-team { color: var(--cyan); box-shadow: inset 0 0 20px rgba(0,240,255,.2); }
.as-team.t2 .badge-team { color: var(--magenta); box-shadow: inset 0 0 20px rgba(255,27,118,.2); }
.as-team span { font-family: var(--f-display); font-weight: 600; font-size: .92rem; }
.as-score { font-family: var(--f-mono); font-size: 1.9rem; color: var(--text); }
.as-score small { display: block; font-size: .62rem; color: var(--muted); letter-spacing: .1em; text-align: center; }
.as-odds { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; position: relative; }
.odd {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; padding: 11px 8px;
  text-align: center; transition: .2s; cursor: pointer;
}
.odd:hover { border-color: var(--cyan); box-shadow: inset 0 0 18px rgba(0,240,255,.14); }
.odd small { display: block; font-family: var(--f-mono); font-size: .64rem; color: var(--muted); margin-bottom: 4px; text-transform: uppercase; }
.odd b { font-family: var(--f-mono); font-size: 1.05rem; color: var(--lime); transition: color .3s; }
.odd.up b { color: var(--lime); } .odd.down b { color: var(--magenta); }
.floating-badge {
  position: absolute; z-index: 3;
  font-family: var(--f-mono); font-size: .68rem; padding: 8px 12px; border-radius: 10px;
  background: rgba(16,16,28,.9); border: 1px solid var(--line); backdrop-filter: blur(6px);
  display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
}
.floating-badge .ico { font-size: 1rem; }
.fb-xp  { top: -18px; right: -14px; color: var(--lime); border-color: rgba(182,255,58,.4); }
.fb-win { bottom: -18px; left: -14px; color: var(--cyan); border-color: rgba(0,240,255,.4); animation-delay: 1.5s; }

/* --------------------- MARQUEE / TRUST STRIP ------------------------ */
.marquee {
  border-block: 1px solid var(--line); overflow: hidden; padding: 16px 0;
  background: rgba(255,255,255,.015);
}
.marquee-track { display: flex; gap: 46px; white-space: nowrap; animation: scroll 26s linear infinite; width: max-content; }
.marquee-track span {
  font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  color: var(--muted-2); font-size: 1.05rem; display: inline-flex; align-items: center; gap: 46px;
}
.marquee-track span b { color: var(--cyan); }

/* ------------------------- GENERIC CARD ----------------------------- */
.card {
  background: linear-gradient(165deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; position: relative; transition: border-color .25s, transform .25s, box-shadow .25s;
}
.card:hover { border-color: rgba(0,240,255,.4); transform: translateY(-4px); box-shadow: var(--shadow); }

/* ------------------------- ARENA / LIVE ----------------------------- */
.arena-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.match {
  background: linear-gradient(165deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; position: relative; overflow: hidden;
  transition: .25s;
}
.match:hover { border-color: rgba(0,240,255,.4); transform: translateY(-3px); }
.match-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; font-family: var(--f-mono); font-size: .68rem; }
.match-league { color: var(--muted); display: flex; align-items: center; gap: 7px; }
.match-league .g { color: var(--cyan); }
.match-live { color: var(--magenta); display: inline-flex; align-items: center; gap: 6px; }
.match-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--magenta); box-shadow: var(--glow-magenta); animation: pulse 1.4s infinite; }
.match-teams { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.mt-row { display: flex; justify-content: space-between; align-items: center; }
.mt-row .t { display: flex; align-items: center; gap: 10px; font-weight: 600; font-family: var(--f-display); }
.mt-row .t .ti { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: var(--surface-2); font-size: .8rem; font-family: var(--f-display); }
.mt-row .sc { font-family: var(--f-mono); font-size: 1.05rem; color: var(--text); }
.match-odds { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.match-time { position: absolute; top: 0; right: 0; }

/* --------------------------- MISSIONS ------------------------------- */
.missions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 16px; }
.mission { padding: 20px; }
.mission-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.mission-ico {
  width: 44px; height: 44px; flex: none; border-radius: 12px; display: grid; place-items: center; font-size: 1.3rem;
  background: var(--surface-2); border: 1px solid var(--line);
}
.mission h4 { font-size: 1rem; margin-bottom: 3px; }
.mission-reward { font-family: var(--f-mono); font-size: .72rem; color: var(--lime); }
.mission-reward .plus { color: var(--gold); }
.progress { height: 9px; border-radius: 6px; background: var(--surface-2); border: 1px solid var(--line); overflow: hidden; margin: 6px 0 8px; }
.progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--cyan), var(--lime)); box-shadow: var(--glow-cyan); border-radius: 6px; transition: width 1s ease; }
.progress-label { display: flex; justify-content: space-between; font-family: var(--f-mono); font-size: .68rem; color: var(--muted); }
.mission.done { border-color: rgba(182,255,58,.4); }
.mission.done .progress span { background: linear-gradient(90deg, var(--lime), var(--lime)); }

/* ------------------------- LEADERBOARD ------------------------------ */
.lb-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 26px; align-items: start; }
.lb-tabs { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.lb-tab {
  font-family: var(--f-mono); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 8px 16px; border: 1px solid var(--line); border-radius: 30px; color: var(--muted); transition: .2s;
}
.lb-tab.active, .lb-tab:hover { color: var(--bg); background: var(--cyan); border-color: var(--cyan); box-shadow: var(--glow-cyan); }
.lb-tab.active { font-weight: 700; }
.lb-list { display: flex; flex-direction: column; gap: 8px; }
.lb-row {
  display: grid; grid-template-columns: 40px 1fr auto auto; align-items: center; gap: 14px;
  padding: 12px 16px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--surface); transition: .2s;
}
.lb-row:hover { border-color: rgba(0,240,255,.3); }
.lb-rank { font-family: var(--f-mono); font-weight: 700; font-size: 1rem; color: var(--muted); text-align: center; }
.lb-row.top1 { border-color: rgba(255,197,61,.5); background: linear-gradient(90deg, rgba(255,197,61,.08), transparent); }
.lb-row.top2 { border-color: rgba(200,200,220,.4); }
.lb-row.top3 { border-color: rgba(205,127,50,.4); }
.lb-row.top1 .lb-rank { color: var(--gold); text-shadow: 0 0 10px rgba(255,197,61,.5); }
.lb-row.top2 .lb-rank { color: #d5d5e5; }
.lb-row.top3 .lb-rank { color: #cd7f32; }
.lb-user { display: flex; align-items: center; gap: 11px; min-width: 0; }
.lb-ava { width: 38px; height: 38px; flex: none; border-radius: 10px; display: grid; place-items: center; font-family: var(--f-display); font-weight: 700; }
.lb-name { font-weight: 600; font-family: var(--f-display); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lb-name small { display: block; font-family: var(--f-mono); font-size: .62rem; color: var(--muted); font-weight: 400; }
.lb-lvl { font-family: var(--f-mono); font-size: .74rem; color: var(--purple); }
.lb-xp { font-family: var(--f-mono); font-size: .82rem; color: var(--lime); text-align: right; }
.lb-side .card { padding: 26px; }
.lb-prize { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.lb-prize:last-child { border-bottom: none; }
.lb-prize .medal { font-size: 1.7rem; }
.lb-prize b { font-family: var(--f-mono); color: var(--gold); font-size: 1.1rem; }
.lb-prize span { color: var(--muted); font-size: .82rem; }

/* --------------------------- ESPORT --------------------------------- */
.esport-games { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 30px; }
.game-card {
  padding: 24px 20px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(165deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius); transition: .3s; cursor: pointer;
}
.game-card::after {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: .3s;
  background: radial-gradient(circle at 50% 0%, var(--gc,rgba(0,240,255,.18)), transparent 70%);
}
.game-card:hover { transform: translateY(-6px); border-color: var(--gc-b, rgba(0,240,255,.5)); }
.game-card:hover::after { opacity: 1; }
.game-ico { font-size: 2.4rem; margin-bottom: 12px; position: relative; }
.game-card h4 { font-size: 1.15rem; position: relative; }
.game-card p { font-family: var(--f-mono); font-size: .72rem; color: var(--muted); margin-top: 6px; position: relative; }
.game-card .gc-count { color: var(--lime); }
.esport-feature { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.ef { padding: 20px; display: flex; gap: 14px; align-items: flex-start; }
.ef .ei { font-size: 1.5rem; }
.ef h4 { font-size: 1rem; margin-bottom: 5px; }
.ef p { color: var(--muted); font-size: .86rem; }

/* --------------------------- BADGES --------------------------------- */
.badges-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 16px; }
.badge {
  text-align: center; padding: 26px 16px; position: relative;
  background: linear-gradient(165deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius); transition: .3s;
}
.badge:hover { transform: translateY(-4px); }
.badge-ring {
  width: 84px; height: 84px; margin: 0 auto 14px; border-radius: 50%; display: grid; place-items: center;
  font-size: 2.1rem; position: relative;
  background: radial-gradient(circle at 50% 35%, var(--surface-2), var(--bg-2));
  border: 2px solid var(--br, var(--line));
}
.badge-ring::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 1px solid var(--br, var(--line)); opacity: .4; }
.badge h4 { font-size: .98rem; margin-bottom: 6px; }
.badge p { font-family: var(--f-mono); font-size: .68rem; color: var(--muted); line-height: 1.5; }
.badge .tier { display: inline-block; margin-top: 10px; font-family: var(--f-mono); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; padding: 3px 9px; border-radius: 20px; }
.badge.bronze   { --br: #cd7f32; } .badge.bronze .tier   { color: #cd7f32; border: 1px solid #cd7f32; }
.badge.silver   { --br: #c7c7d6; } .badge.silver .tier   { color: #c7c7d6; border: 1px solid #c7c7d6; }
.badge.gold     { --br: var(--gold); } .badge.gold .tier   { color: var(--gold); border: 1px solid var(--gold); }
.badge.platinum { --br: var(--cyan); } .badge.platinum .tier { color: var(--cyan); border: 1px solid var(--cyan); }
.badge.legend   { --br: var(--magenta); } .badge.legend .tier { color: var(--magenta); border: 1px solid var(--magenta); }
.badge.legend .badge-ring { box-shadow: var(--glow-magenta); }
.badge.locked { opacity: .5; }
.badge.locked .badge-ring { filter: grayscale(1); }

/* --------------------------- LEVELS --------------------------------- */
.levels { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.level-tier { padding: 22px 18px; text-align: center; border-top: 3px solid var(--lt, var(--line)); }
.level-tier .lt-name { font-family: var(--f-display); font-size: 1.25rem; color: var(--lt); text-transform: uppercase; margin-bottom: 4px; }
.level-tier .lt-range { font-family: var(--f-mono); font-size: .72rem; color: var(--muted); margin-bottom: 12px; }
.level-tier ul { text-align: left; font-size: .82rem; color: var(--muted); display: flex; flex-direction: column; gap: 6px; }
.level-tier li::before { content: "▸ "; color: var(--lt); }
.lt-bronze   { --lt: #cd7f32; } .lt-silver { --lt: #c7c7d6; } .lt-gold { --lt: var(--gold); }
.lt-plat     { --lt: var(--cyan); } .lt-legend { --lt: var(--magenta); }

/* --------------------------- CREWS ---------------------------------- */
.crew-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: center; }
.crew-features { display: flex; flex-direction: column; gap: 12px; }
.crew-feature { display: flex; gap: 14px; padding: 16px; align-items: flex-start; }
.crew-feature .ci { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--line); font-size: 1.2rem; }
.crew-feature h4 { font-size: 1rem; margin-bottom: 4px; }
.crew-feature p { color: var(--muted); font-size: .86rem; }
.crew-card { padding: 26px; }
.crew-card-top { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.crew-emblem { width: 60px; height: 60px; border-radius: 14px; display: grid; place-items: center; font-size: 1.8rem; background: linear-gradient(135deg, var(--purple), var(--magenta)); box-shadow: var(--glow-magenta); }
.crew-card h4 { font-size: 1.3rem; }
.crew-card .crew-tag { font-family: var(--f-mono); font-size: .72rem; color: var(--cyan); }
.crew-members { display: flex; margin: 16px 0; }
.crew-members .cm { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -10px; display: grid; place-items: center; font-family: var(--f-mono); font-size: .7rem; background: var(--surface-2); }
.crew-members .cm:first-child { margin-left: 0; }
.crew-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.crew-stat b { font-family: var(--f-mono); color: var(--cyan); font-size: 1.15rem; display: block; }
.crew-stat span { font-size: .68rem; color: var(--muted); font-family: var(--f-mono); text-transform: uppercase; }

/* -------------------------- CHALLENGES ------------------------------ */
.challenge-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.challenge { padding: 22px; position: relative; overflow: hidden; }
.challenge .ch-timer { position: absolute; top: 16px; right: 16px; font-family: var(--f-mono); font-size: .68rem; color: var(--magenta); display: flex; align-items: center; gap: 6px; }
.challenge .ch-ico { font-size: 2rem; margin-bottom: 14px; }
.challenge h4 { font-size: 1.08rem; margin-bottom: 8px; }
.challenge p { color: var(--muted); font-size: .86rem; margin-bottom: 16px; }
.challenge .ch-reward { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: .78rem; padding: 7px 14px; border-radius: 30px; border: 1px solid var(--line); color: var(--gold); }

/* --------------------------- PROMO ---------------------------------- */
.promo-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 18px; }
.promo {
  padding: 28px; position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, var(--surface), var(--bg-2));
}
.promo.feature { background: linear-gradient(150deg, rgba(168,85,247,.22), rgba(255,27,118,.14)), var(--surface); border-color: rgba(255,27,118,.4); }
.promo-tag { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 14px; display: inline-block; }
.promo h3 { font-size: 1.5rem; margin-bottom: 10px; text-transform: uppercase; }
.promo.feature h3 { font-size: 2rem; }
.promo .big { font-family: var(--f-display); font-size: 3rem; color: var(--lime); text-shadow: var(--glow-lime); line-height: 1; margin: 10px 0; }
.promo p { color: var(--muted); font-size: .9rem; margin-bottom: 18px; }
.promo small.terms { display: block; font-size: .66rem; color: var(--muted-2); margin-top: 12px; }

/* --------------------------- SHOP ----------------------------------- */
.shop-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.shop-item { padding: 20px; text-align: center; }
.shop-item .si-preview { height: 90px; border-radius: 10px; display: grid; place-items: center; font-size: 2.2rem; margin-bottom: 14px; background: var(--surface-2); border: 1px solid var(--line); }
.shop-item h4 { font-size: .96rem; margin-bottom: 4px; }
.shop-item .si-desc { font-size: .74rem; color: var(--muted); margin-bottom: 12px; }
.shop-price { display: inline-flex; align-items: center; gap: 6px; font-family: var(--f-mono); color: var(--gold); font-size: .92rem; }

/* --------------------------- STREAMER ------------------------------- */
.streamer { background: linear-gradient(150deg, rgba(0,240,255,.06), rgba(168,85,247,.08)), var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 46px; }
.streamer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.streamer-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.sp { display: flex; gap: 12px; align-items: flex-start; }
.sp .spi { font-size: 1.3rem; }
.sp h4 { font-size: .94rem; margin-bottom: 3px; }
.sp p { font-size: .8rem; color: var(--muted); }

/* --------------------------- PAYMENTS ------------------------------- */
.pay-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.pay-item {
  padding: 16px 24px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface);
  font-family: var(--f-display); font-weight: 600; color: var(--muted); transition: .25s; display: flex; align-items: center; gap: 10px;
}
.pay-item:hover { color: var(--text); border-color: var(--cyan); }
.pay-item .pi { font-size: 1.3rem; }
.pay-logo {
  background: #fff; border-radius: 10px; padding: 11px 18px; height: 60px; min-width: 96px;
  display: grid; place-items: center; border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pay-logo img { height: 32px; width: auto; display: block; }
.pay-logo:hover { transform: translateY(-3px); box-shadow: 0 6px 22px -6px rgba(0,240,255,.6); }

/* ----------------------------- FAQ ---------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; background: var(--surface); overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--f-display); font-weight: 600; font-size: 1rem; }
.faq-q .fq-ico { font-family: var(--f-mono); color: var(--cyan); transition: transform .3s; flex: none; }
.faq-item.open .fq-ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding: 0 22px; color: var(--muted); font-size: .92rem; }
.faq-item.open .faq-a { max-height: 320px; padding: 0 22px 20px; }

/* ------------------------- RESPONSIBLE STRIP ------------------------ */
.rg-strip { background: linear-gradient(90deg, rgba(255,27,118,.08), rgba(0,240,255,.06)); border-block: 1px solid var(--line); }
.rg-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; }
.rg-18 { width: 74px; height: 74px; border-radius: 50%; border: 3px solid var(--magenta); display: grid; place-items: center; font-family: var(--f-display); font-weight: 700; font-size: 1.5rem; color: var(--magenta); box-shadow: var(--glow-magenta); flex: none; }
.rg-inner h3 { font-size: 1.3rem; margin-bottom: 6px; }
.rg-inner p { color: var(--muted); font-size: .9rem; }
.rg-inner p b { color: var(--text); }

/* ---------------------------- FOOTER -------------------------------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 46px; }
.footer .logo { margin-bottom: 18px; }
.footer-about p { color: var(--muted); font-size: .86rem; margin-bottom: 16px; max-width: 340px; }
.footer-col h5 { font-family: var(--f-display); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--muted); font-size: .86rem; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-legal { border-top: 1px solid var(--line); padding: 30px 0; font-size: .78rem; color: var(--muted-2); line-height: 1.7; }
.footer-legal .company { color: var(--muted); font-family: var(--f-mono); font-size: .74rem; margin-bottom: 12px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 20px 0; }
.foot-badge { padding: 8px 14px; border: 1px solid var(--line); border-radius: 8px; font-family: var(--f-mono); font-size: .72rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.foot-badge.age { color: var(--magenta); border-color: var(--magenta); font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0 40px; border-top: 1px solid var(--line); flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: .78rem; color: var(--muted-2); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 10px; display: grid; place-items: center; color: var(--muted); transition: .2s; }
.footer-social a:hover { color: var(--cyan); border-color: var(--cyan); }

/* ------------------------- COOKIE BANNER ---------------------------- */
.cookie {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%) translateY(140%);
  width: min(920px, 94vw); z-index: 200; padding: 22px 26px;
  background: rgba(12,12,20,.96); border: 1px solid var(--line); border-radius: 16px;
  backdrop-filter: blur(16px); box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.cookie.show { transform: translateX(-50%) translateY(0); }
.cookie h4 { font-size: 1.05rem; margin-bottom: 6px; }
.cookie p { color: var(--muted); font-size: .82rem; }
.cookie p a { color: var(--cyan); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------------------------- MODAL --------------------------------- */
.modal-overlay { position: fixed; inset: 0; z-index: 300; background: rgba(4,4,8,.8); backdrop-filter: blur(6px); display: none; place-items: center; padding: 20px; }
.modal-overlay.show { display: grid; }
.modal {
  width: min(460px, 100%); background: linear-gradient(165deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: 18px; padding: 34px; position: relative;
  box-shadow: var(--shadow); animation: modalIn .35s cubic-bezier(.16,1,.3,1);
}
.modal-close { position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 8px; color: var(--muted); font-size: 1.1rem; }
.modal-close:hover { color: var(--magenta); border-color: var(--magenta); }
.modal h3 { font-size: 1.6rem; text-transform: uppercase; margin-bottom: 6px; }
.modal .modal-sub { color: var(--muted); font-size: .88rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--f-mono); font-size: .72rem; color: var(--muted); margin-bottom: 7px; letter-spacing: .05em; }
.field input {
  width: 100%; padding: 13px 15px; background: var(--bg); border: 1px solid var(--line); border-radius: 10px;
  color: var(--text); font-family: var(--f-body); font-size: .95rem; transition: .2s;
}
.field input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,240,255,.12); }
.modal .btn { width: 100%; justify-content: center; margin-top: 8px; }
.modal-foot { text-align: center; margin-top: 16px; font-size: .82rem; color: var(--muted); }
.modal-foot a { color: var(--cyan); }
.modal-check { display: flex; gap: 10px; align-items: flex-start; font-size: .76rem; color: var(--muted); margin: 4px 0 8px; }
.modal-check input { margin-top: 3px; flex: none; }
.modal-check a { color: var(--cyan); text-decoration: underline; }

/* ----------------------- REGISTRATION WIZARD ------------------------ */
.reg-steps { display: flex; gap: 8px; margin-bottom: 22px; }
.reg-step {
  flex: 1; text-align: center; font-family: var(--f-mono); font-size: .66rem; letter-spacing: .05em;
  text-transform: uppercase; color: var(--muted-2); padding: 9px 6px; border: 1px solid var(--line);
  border-radius: 8px; background: var(--bg); transition: .2s;
}
.reg-step.active { color: var(--cyan); border-color: var(--cyan); box-shadow: inset 0 0 16px -8px var(--cyan); }
.reg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field select {
  width: 100%; padding: 13px 40px 13px 15px; background: var(--bg); border: 1px solid var(--line);
  border-radius: 10px; color: var(--text); font-family: var(--f-body); font-size: .95rem; transition: .2s;
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238A8AB0' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center;
}
.field select:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,240,255,.12); }
.field input[type="date"] { color-scheme: dark; }
.field-hint { color: var(--muted-2); font-family: var(--f-body); font-size: .78rem; text-transform: none; letter-spacing: 0; }
.field-link { display: inline-block; margin-top: 9px; font-family: var(--f-mono); font-size: .72rem; color: var(--cyan); text-decoration: underline; }
.field-link:hover { color: var(--magenta); }
.field-note { margin-top: 8px; font-size: .74rem; color: var(--magenta); }
.field-note.ok { color: var(--lime); }
.modal-mini { font-size: .72rem; color: var(--muted-2); line-height: 1.55; margin: 8px 0 16px; }
.modal-mini a { color: var(--cyan); text-decoration: underline; }
.wer-block { margin: 6px 0 20px; padding: 14px; border: 1px dashed var(--line); border-radius: 10px; background: var(--bg); }
.wer-label { display: block; font-family: var(--f-mono); font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.wer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.wer-badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: .74rem; padding: 6px 11px;
  border-radius: 20px; border: 1px solid var(--cyan); color: var(--cyan); background: rgba(0,240,255,.06);
}
.reg-nav { display: flex; gap: 12px; }
.reg-nav .btn { flex: 1; margin-top: 8px; }
.reg-nav .btn.ghost { flex: 0 0 auto; width: auto; padding-left: 22px; padding-right: 22px; }

/* --------------------------- POLICY PAGES --------------------------- */
.page-hero { padding: 60px 0 40px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); text-transform: uppercase; margin: 14px 0 10px; }
.page-hero .breadcrumb { font-family: var(--f-mono); font-size: .74rem; color: var(--muted); }
.page-hero .breadcrumb a { color: var(--cyan); }
.page-hero .updated { font-family: var(--f-mono); font-size: .74rem; color: var(--muted-2); margin-top: 12px; }
.policy-layout { display: grid; grid-template-columns: 260px 1fr; gap: 50px; padding: 50px 0 80px; align-items: start; }
.policy-toc { position: sticky; top: calc(var(--nav-h) + 20px); border: 1px solid var(--line); border-radius: 14px; padding: 22px; background: var(--surface); }
.policy-toc h5 { font-family: var(--f-display); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); margin-bottom: 14px; }
.policy-toc ul { display: flex; flex-direction: column; gap: 3px; }
.policy-toc a { display: block; font-size: .82rem; color: var(--muted); padding: 6px 10px; border-radius: 7px; border-left: 2px solid transparent; transition: .2s; }
.policy-toc a:hover { color: var(--text); background: rgba(255,255,255,.03); border-left-color: var(--cyan); }
.policy-body { max-width: 820px; }
.policy-body h2 { font-size: 1.5rem; text-transform: uppercase; margin: 40px 0 14px; padding-top: 10px; color: var(--text); }
.policy-body h2:first-child { margin-top: 0; }
.policy-body h3 { font-size: 1.12rem; margin: 26px 0 10px; color: var(--cyan); }
.policy-body h4 { font-size: 1rem; margin: 18px 0 8px; }
.policy-body p { color: var(--muted); margin-bottom: 14px; font-size: .94rem; }
.policy-body ul, .policy-body ol { color: var(--muted); margin: 0 0 16px 22px; font-size: .94rem; }
.policy-body ul li { list-style: disc; margin-bottom: 8px; }
.policy-body ol li { list-style: decimal; margin-bottom: 8px; }
.policy-body strong { color: var(--text); }
.policy-body a { color: var(--cyan); text-decoration: underline; }
.policy-body table { width: 100%; border-collapse: collapse; margin: 16px 0 22px; font-size: .86rem; }
.policy-body th, .policy-body td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.policy-body th { background: var(--surface-2); color: var(--text); font-family: var(--f-display); }
.policy-body td { color: var(--muted); }
.callout {
  border: 1px solid var(--line); border-left: 3px solid var(--cyan); border-radius: 10px;
  padding: 18px 22px; margin: 20px 0; background: rgba(0,240,255,.04);
}
.callout.warn { border-left-color: var(--magenta); background: rgba(255,27,118,.05); }
.callout.help { border-left-color: var(--lime); background: rgba(182,255,58,.04); }
.callout h4 { margin-bottom: 6px; color: var(--text); }
.callout p { margin-bottom: 0; color: var(--muted); }
.help-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; margin: 22px 0; }
.help-card { border: 1px solid var(--line); border-radius: 12px; padding: 20px; background: var(--surface); }
.help-card .hc-ico { font-size: 1.6rem; margin-bottom: 10px; }
.help-card h4 { font-size: 1rem; margin-bottom: 6px; }
.help-card p { font-size: .82rem; margin-bottom: 8px; }
.help-card .hc-contact { font-family: var(--f-mono); color: var(--lime); font-size: .9rem; }

/* -------------------- MIDJOURNEY IMAGE INTEGRATIONS ----------------- */
.hero { position: relative; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: url("../img/hero-arena.webp") center/cover no-repeat;
  opacity: .28;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 72%);
  mask-image: linear-gradient(90deg, transparent, #000 72%);
}
.game-ico img { width: 78px; height: 78px; object-fit: contain; margin: 0 auto; filter: drop-shadow(0 0 10px rgba(0,240,255,.28)); }
.crew-emblem img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.lt-emblem { width: 78px; height: 78px; margin: 0 auto 14px; border-radius: 50%; overflow: hidden; }
.lt-emblem img { width: 100%; height: 100%; object-fit: cover; }
.lt-emblem.css-gold { background: #0a0a12; border: 2px solid var(--gold); box-shadow: 0 0 12px rgba(255,197,61,.6), inset 0 0 16px rgba(255,197,61,.25); }
.si-preview { overflow: hidden; }
.si-preview img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.streamer-photo { width: 100%; height: 152px; object-fit: cover; object-position: center 35%; display: block; }

/* ---------------------------- REVEAL -------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* --------------------------- ANIMATIONS ----------------------------- */
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes scroll { to { transform: translateX(-50%); } }
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes glitch {
  0%,92%,100% { clip-path: inset(0 0 0 0); transform: none; }
  93% { clip-path: inset(20% 0 30% 0); transform: translateX(-2px); }
  95% { clip-path: inset(60% 0 10% 0); transform: translateX(2px); }
  97% { clip-path: inset(10% 0 60% 0); transform: translateX(-1px); }
}

/* --------------------------- RESPONSIVE ----------------------------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .lb-wrap { grid-template-columns: 1fr; }
  .crew-grid, .streamer-grid { grid-template-columns: 1fr; }
  .arena-grid, .challenge-grid, .esport-feature { grid-template-columns: repeat(2,1fr); }
  .esport-games, .shop-grid { grid-template-columns: repeat(2,1fr); }
  .levels { grid-template-columns: repeat(2,1fr); }
  .promo-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-toc { position: static; }
  .nav-links { display: none; }
  .burger { display: block; }
}
@media (max-width: 640px) {
  section { padding: 64px 0; }
  .nav .wrap { gap: 12px; }
  .nav-cta { gap: 8px; }
  .nav-cta:has(.burger) .btn.ghost { display: none; }
  .nav-cta .btn.sm { padding: 9px 14px; font-size: .78rem; }
  .arena-grid, .challenge-grid, .esport-feature, .esport-games, .shop-grid, .levels, .footer-grid { grid-template-columns: 1fr; }
  .hero-metrics { gap: 22px; }
  .rg-inner { grid-template-columns: 1fr; text-align: center; }
  .rg-18 { margin: 0 auto; }
  .cookie { grid-template-columns: 1fr; }
  .hud .wrap { gap: 12px; font-size: .68rem; }
  .hud-xp { width: 80px; }
  .streamer { padding: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* mobile nav drawer */
.mobile-nav {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 49; background: rgba(8,8,15,.98); backdrop-filter: blur(10px);
  padding: 24px; transform: translateX(100%); transition: transform .4s cubic-bezier(.16,1,.3,1); overflow-y: auto;
}
.mobile-nav.open { transform: none; }
.mobile-nav a { display: block; padding: 14px 6px; font-family: var(--f-display); font-size: 1.1rem; border-bottom: 1px solid var(--line); }
.mobile-nav a:hover { color: var(--cyan); }
