/* ============================================================
   WARZONE CUPS — DESIGN SYSTEM v2
   Inspired by Challengermode: dark pure bg, gradient hero,
   teal primary accent, rounded modern UI
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700;800&family=Barlow+Condensed:wght@400;500;600;700;800&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Backgrounds — pure dark like Challengermode */
  --bg:        #07070f;
  --bg2:       #0b0b18;
  --bg3:       #0f0f20;
  --surface:   #121228;
  --panel:     #17173a;
  --panel2:    #1d1d50;

  /* Borders */
  --border:    #1c1c3e;
  --border2:   #252560;
  --border3:   #303090;

  /* Primary — Teal (Challengermode-inspired) */
  --teal:      #00d4aa;
  --teal2:     #00f0c0;
  --teal-glow: rgba(0,212,170,.3);
  --teal-dim:  rgba(0,212,170,.08);

  /* Warm — Orange/Amber (hero gradient) */
  --orange:    #ff5a28;
  --orange2:   #ff7a48;
  --orange-dim: rgba(255,90,40,.08);

  /* Gold — Premium/VIP */
  --gold:      #f0a030;
  --gold2:     #ffbe50;
  --gold-glow: rgba(240,160,48,.3);
  --gold-dim:  rgba(240,160,48,.08);

  /* Text */
  --white:     #f0f2ff;
  --text:      #bcc8e8;
  --text2:     #6878a8;
  --muted:     #404878;

  /* Status */
  --danger:    #ff4466;
  --success:   #00cc78;
  --info:      #4a90e8;
  --disc:      #5865f2;

  --nav-h:     70px;
  --max-w:     1280px;
  --radius:    10px;
  --radius-sm: 6px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* Subtle noise texture */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: .5;
}

/* ── UTILITIES ──────────────────────────────────────────── */
.container    { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 40px; }
.container-xs { max-width: 640px; margin: 0 auto; padding: 0 40px; }
.text-teal    { color: var(--teal); }
.text-gold    { color: var(--gold2); }
.text-muted   { color: var(--muted); }
.text-white   { color: var(--white); }
.text-center  { text-align: center; }
.text-orange  { color: var(--orange); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.h-display {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 9vw, 108px);
  line-height: .92;
  letter-spacing: 2px;
  color: var(--white);
}
.h-hero {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 7vw, 76px);
  line-height: .95;
  letter-spacing: 2px;
  color: var(--white);
}
.h-section {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: 2px;
  color: var(--white);
}
.h-card {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1.5px;
  color: var(--white);
}
.label-upper {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}
.label-teal {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
}
.body-lg { font-size: 17px; line-height: 1.75; color: var(--text2); }
.body-sm { font-size: 13px; line-height: 1.65; color: var(--muted); }

/* Gradient text */
.text-gradient {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-warm {
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Eyebrow chip */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid rgba(0,212,170,.25);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 14px 32px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all .22s;
  white-space: nowrap;
  border-radius: var(--radius-sm);
}
.btn:disabled { opacity: .5; cursor: not-allowed; }

.btn-primary {
  background: var(--teal);
  color: #020a08;
}
.btn-primary:hover:not(:disabled) {
  background: var(--teal2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--teal-glow);
}

.btn-gold {
  background: var(--gold);
  color: #080400;
}
.btn-gold:hover:not(:disabled) {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-outline:hover:not(:disabled) {
  background: var(--teal-dim);
  box-shadow: 0 0 20px var(--teal-glow);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold2);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold-dim); }

.btn-ghost {
  background: var(--surface);
  color: var(--text2);
  border: 1px solid var(--border2);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

.btn-white {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}
.btn-white:hover { background: rgba(255,255,255,.15); }

.btn-disc { background: var(--disc); color: #fff; }
.btn-disc:hover { background: #7289da; transform: translateY(-2px); }

.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #ff6680; transform: translateY(-2px); }

.btn-sm { font-size: 12px; padding: 9px 20px; }
.btn-lg { font-size: 16px; padding: 18px 44px; }
.btn-icon { padding: 12px 16px; }

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(7,7,15,.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-inner {
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--teal);
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold2); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text2);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all .18s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.05); }
.nav-links a.active { color: var(--white); background: rgba(0,212,170,.1); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border2);
  color: var(--text2);
  padding: 8px 12px;
  font-size: 16px;
  margin-left: auto;
  border-radius: var(--radius-sm);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(7,7,15,.97);
  border-bottom: 1px solid var(--border);
  padding: 20px 40px 28px;
  z-index: 800;
  flex-direction: column;
  gap: 2px;
  backdrop-filter: blur(20px);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text2);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color .18s;
}
.nav-mobile a:hover { color: var(--teal); }
.nav-mobile .mobile-cta { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--teal);
  margin-bottom: 14px;
}
.footer-brand .logo span { color: var(--gold2); }
.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 250px;
  margin-bottom: 22px;
}
.footer-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--muted);
  border: 1px solid var(--border2);
  padding: 6px 12px;
  border-radius: 100px;
  transition: all .18s;
}
.social-btn:hover { border-color: var(--teal); color: var(--teal); }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  padding: 5px 0;
  transition: color .18s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 48px auto 0;
  padding: 20px 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--muted); }

/* ── SECTION ────────────────────────────────────────────── */
.section { padding: 88px 0; position: relative; z-index: 1; }
.section-alt { background: var(--bg2); }
.section-dark { background: var(--bg3); }
.section-header { margin-bottom: 52px; }
.divider { height: 1px; background: var(--border); }

/* Page hero */
.page-hero {
  position: relative;
  padding: 88px 0 72px;
  overflow: hidden;
  z-index: 1;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: var(--bg2);
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 70% at 0% 100%, rgba(0,212,170,.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(255,90,40,.08) 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; }

/* ── STAT STRIP ─────────────────────────────────────────── */
.stat-strip { display: flex; gap: 12px; flex-wrap: wrap; }
.stat-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  flex: 1;
  min-width: 130px;
  transition: border-color .2s;
}
.stat-item:hover { border-color: var(--border2); }
.stat-item.teal-accent { border-left: 3px solid var(--teal); }
.stat-item.gold-accent { border-left: 3px solid var(--gold); }
.stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  color: var(--teal);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item.gold-accent .stat-val { color: var(--gold2); }
.stat-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'Barlow Condensed', sans-serif;
}

/* ── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all .22s;
}
.card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
}
.card-glow-teal:hover { border-color: rgba(0,212,170,.35); box-shadow: 0 16px 48px rgba(0,212,170,.1); }
.card-glow-gold:hover { border-color: rgba(240,160,48,.35); box-shadow: 0 16px 48px rgba(240,160,48,.1); }

.card-icon {
  width: 48px; height: 48px;
  background: var(--teal-dim);
  border: 1px solid rgba(0,212,170,.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}
.card-icon.gold {
  background: var(--gold-dim);
  border-color: rgba(240,160,48,.2);
}

/* Feature card */
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .22s;
}
.feature-card:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,.4); }
.feature-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: rgba(0,212,170,.22);
  line-height: 1;
  margin-bottom: 10px;
  transition: color .22s, text-shadow .22s;
}
.feature-card:hover .feature-num {
  color: rgba(0,212,170,.55);
  text-shadow: 0 0 24px rgba(0,212,170,.45), 0 0 48px rgba(0,212,170,.2);
}
.feature-card.gold .feature-num { color: rgba(240,160,48,.25); }
.feature-card.gold:hover .feature-num {
  color: rgba(240,160,48,.6);
  text-shadow: 0 0 24px rgba(240,160,48,.45), 0 0 48px rgba(240,160,48,.2);
}
.feature-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-desc { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

.tourney-grid-home { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }

/* Tournament card */
.tourney-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: all .25s;
}
.tourney-card:hover { border-color: rgba(0,212,170,.35); transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(0,212,170,.1); }
.tourney-card.featured { border-color: rgba(240,160,48,.25); }
.tourney-card.featured:hover { border-color: rgba(240,160,48,.5); box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(240,160,48,.15); }
.tourney-card-header {
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border);
}
.tourney-card-body { padding: 16px 20px 20px; }
.tourney-mode-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid rgba(0,212,170,.2);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.tourney-name {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}
.tourney-prize {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--teal);
  letter-spacing: 1px;
  line-height: 1;
}
.tourney-prize.gold { color: var(--gold2); }
.tourney-prize-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 16px;
  font-family: 'Barlow Condensed', sans-serif;
}
.tourney-meta { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; margin-top: 4px; }
.tourney-meta-item { padding: 10px 12px; background: var(--bg2); border-right: 1px solid var(--border); }
.tourney-meta-item:last-child { border-right: none; }
.tourney-meta-item .tl { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); font-family: 'Barlow Condensed', sans-serif; margin-bottom: 4px; }
.tourney-meta-item .tv { font-size: 14px; font-weight: 700; color: var(--white); font-family: 'Barlow Condensed', sans-serif; letter-spacing: .5px; }
.tourney-meta-item.highlight .tv { color: var(--teal); }
.tourney-meta-item.highlight-gold .tv { color: var(--gold2); }
.prize-breakdown { display: flex; flex-direction: column; gap: 5px; margin: 12px 0 16px; }
.prize-row { display: flex; justify-content: space-between; align-items: center; font-size: 12px; padding: 6px 10px; background: var(--bg2); border-radius: 4px; }
.prize-row .p-rank { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.prize-row .p-rank.gold { color: #ffd700; }
.prize-row .p-rank.silver { color: #c0c0c0; }
.prize-row .p-rank.bronze { color: #cd7f32; }
.prize-row .p-amt { font-weight: 700; color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-size: 14px; }

/* Winner card */
.winner-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
  transition: border-color .2s;
}
.winner-card:hover { border-color: rgba(240,160,48,.3); }
.winner-rank { font-family: 'Bebas Neue', sans-serif; font-size: 52px; line-height: 1; color: var(--border3); margin-bottom: 8px; }
.winner-rank.gold { color: var(--gold2); }
.winner-rank.silver { color: #9baac0; }
.winner-rank.bronze { color: #b08860; }
.winner-name { font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: .5px; color: var(--white); margin-bottom: 4px; }
.winner-prize { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--teal); letter-spacing: 1px; }
.winner-tourney { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* Role card */
.role-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all .22s;
}
.role-card:hover { border-color: rgba(0,212,170,.3); box-shadow: 0 8px 32px rgba(0,0,0,.4); transform: translateY(-3px); }
.role-title { font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: .5px; color: var(--white); margin-bottom: 8px; }
.role-type {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid rgba(0,212,170,.2);
  padding: 2px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.role-desc { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.role-perks { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.role-perk { font-size: 12.5px; color: var(--text2); display: flex; align-items: flex-start; gap: 8px; }
.role-perk::before { content: '→'; color: var(--teal); font-size: 11px; flex-shrink: 0; margin-top: 2px; }

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 52px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 0% 50%, rgba(0,212,170,.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner.gold::before { background: radial-gradient(ellipse 60% 100% at 0% 50%, rgba(240,160,48,.06) 0%, transparent 70%); }
.cta-banner h2 { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--white); letter-spacing: 2px; margin-bottom: 10px; }
.cta-banner p { font-size: 15px; color: var(--text2); max-width: 480px; }
.cta-banner-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ── FORMS ──────────────────────────────────────────────── */
.form-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.form-title { font-family: 'Bebas Neue', sans-serif; font-size: 30px; color: var(--white); letter-spacing: 2px; margin-bottom: 4px; }
.form-sub { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--text2);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border2);
  color: var(--white);
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  border-radius: var(--radius-sm);
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,212,170,.12); }
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }
.field textarea { min-height: 120px; resize: vertical; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23404878' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.field select option { background: var(--bg2); }

/* ── ACCORDION ──────────────────────────────────────────── */
.accordion { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  transition: background .18s;
}
.accordion-trigger:hover { background: rgba(255,255,255,.03); }
.accordion-trigger.open { background: var(--teal-dim); }
.accordion-q { font-weight: 600; font-size: 15px; color: var(--white); }
.accordion-icon {
  width: 26px; height: 26px;
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform .3s;
}
.accordion-trigger.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { padding: 0 24px 20px; display: none; }
.accordion-trigger.open + .accordion-body { display: block; }
.accordion-body p { font-size: 14px; color: var(--text2); line-height: 1.75; }

/* ── BADGES ─────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.badge-teal  { background: var(--teal-dim);  color: var(--teal);  border: 1px solid rgba(0,212,170,.25); }
.badge-gold  { background: var(--gold-dim);  color: var(--gold2); border: 1px solid rgba(240,160,48,.25); }
.badge-live  { background: rgba(255,68,102,.1); color: var(--danger); border: 1px solid rgba(255,68,102,.3); animation: blink 1.2s infinite; }
.badge-muted { background: var(--surface); color: var(--muted); border: 1px solid var(--border); }
/* legacy aliases */
.badge-acid  { background: var(--teal-dim);  color: var(--teal);  border: 1px solid rgba(0,212,170,.25); }

/* ── CONTACT CARDS ──────────────────────────────────────── */
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .2s;
}
.contact-card:hover { border-color: rgba(0,212,170,.3); }
.contact-card-icon { font-size: 24px; margin-bottom: 4px; }
.contact-card-title { font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: .5px; color: var(--white); }
.contact-card-desc { font-size: 13px; color: var(--muted); }
.contact-card-link { font-size: 13px; color: var(--teal); margin-top: 4px; }

/* ── CHANNEL PILLS ──────────────────────────────────────── */
.channel-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: all .2s;
}
.channel-pill:hover { border-color: rgba(0,212,170,.3); }
.channel-pill-icon { font-size: 22px; }
.channel-pill-name { font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .5px; color: var(--white); }
.channel-pill-desc { font-size: 12px; color: var(--muted); }
.channel-pill-btn { margin-left: auto; }

/* ── TIMELINE ───────────────────────────────────────────── */
.timeline { display: flex; flex-direction: column; gap: 8px; }
.timeline-item {
  display: flex;
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: border-color .2s;
}
.timeline-item:hover { border-color: var(--border2); }
.timeline-year { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--teal); letter-spacing: 1px; line-height: 1; min-width: 80px; }
.timeline-content h4 { font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: .5px; color: var(--white); margin-bottom: 4px; }
.timeline-content p { font-size: 13px; color: var(--muted); }

/* ── TABLES ─────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
thead { background: var(--bg3); }
th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-family: 'Barlow Condensed', sans-serif;
}
td { padding: 14px 16px; border-bottom: 1px solid var(--border); color: var(--text2); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(0,212,170,.03); }
.rank-cell { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--muted); }
.rank-cell.gold   { color: var(--gold2); }
.rank-cell.silver { color: #9baac0; }
.rank-cell.bronze { color: #b08860; }
.player-cell { font-weight: 700; font-size: 14px; color: var(--white); letter-spacing: .3px; }

/* ── TABS ───────────────────────────────────────────────── */
.tab-bar {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.tab-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 11px 20px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all .18s;
  margin-bottom: -1px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--teal); border-bottom-color: var(--teal); }

/* ── FILTER BAR ─────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.filter-group { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 140px; }
.filter-group label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.filter-group select {
  background: var(--bg2);
  border: 1px solid var(--border2);
  color: var(--text);
  padding: 9px 14px;
  font-size: 13px;
  outline: none;
  transition: border-color .18s;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.filter-group select:focus { border-color: var(--teal); }

/* ── CHECKLIST ──────────────────────────────────────────── */
.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.5;
}
.checklist-item::before { content: '✓'; color: var(--teal); font-weight: 800; font-size: 14px; flex-shrink: 0; margin-top: 1px; }

/* ── TOAST ──────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--surface);
  border: 1px solid var(--border2);
  color: var(--text);
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  white-space: nowrap;
  max-width: 90vw;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0,0,0,.6);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { border-color: var(--teal); color: var(--teal); }
.toast.error   { border-color: var(--danger); color: var(--danger); }

/* ── GLASS EFFECT ───────────────────────────────────────── */
.glass {
  background: rgba(18,18,40,.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
}

/* ── GLOW HELPERS ───────────────────────────────────────── */
.glow-teal { box-shadow: 0 0 40px rgba(0,212,170,.15); }
.glow-gold { box-shadow: 0 0 40px rgba(240,160,48,.15); }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn { from{opacity:0}to{opacity:1} }
@keyframes float { 0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)} }
.anim-fade-up { animation: fadeUp .55s ease both; }
.anim-fade-in { animation: fadeIn .4s ease both; }
.anim-delay-1 { animation-delay: .1s; }
.anim-delay-2 { animation-delay: .2s; }
.anim-delay-3 { animation-delay: .3s; }
.anim-float   { animation: float 4s ease-in-out infinite; }

/* ── MISC COMPONENTS ────────────────────────────────────── */
/* Response time box */
.response-time {
  background: var(--teal-dim);
  border: 1px solid rgba(0,212,170,.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.6;
}
.response-time strong { color: var(--teal); }

/* Rules box */
.rules-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px;
  margin-bottom: 16px;
}
.rules-box.danger { border-left-color: var(--danger); }
.rules-box.gold   { border-left-color: var(--gold); }
.rules-box h4 { font-weight: 700; font-size: 15px; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.rules-list { display: flex; flex-direction: column; gap: 9px; }
.rule-entry { font-size: 13.5px; color: var(--text2); display: flex; align-items: flex-start; gap: 10px; line-height: 1.6; }
.rule-entry::before { content: '▸'; color: var(--teal); flex-shrink: 0; font-size: 10px; margin-top: 4px; }
.rules-box.danger .rule-entry::before { color: var(--danger); content: '✕'; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .container, .container-sm, .container-xs { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-banner { padding: 36px 28px; flex-direction: column; }
  .cta-banner h2 { font-size: 30px; }
  .section { padding: 60px 0; }
  .stat-item { min-width: 120px; padding: 16px 20px; }
  .form-section { padding: 28px 20px; }
  .page-hero { padding: 60px 0 48px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner-btns { width: 100%; flex-direction: column; }
  .btn-lg { padding: 16px 28px; font-size: 14px; }
  .tab-bar { overflow-x: auto; }
}
