/* ═══════════════════════════════════════════════════════════════
   CASINHA ROSA — Landing Page
   Design System: idêntico ao app Flutter (AppColors + AppTextStyles)
   Ícones: Material Symbols Outlined — mesma família usada no Flutter
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:          #0A0A0F;
  --surface:     #111118;
  --card:        #1A1A24;
  --border:      #2A2A38;

  --pink:        #FF006E;
  --cyan:        #00F5FF;
  --purple:      #9B00FF;
  --gold:        #FFD700;
  --green:       #00FF94;
  --blue:        #0066FF;
  --red:         #FF2020;

  --text:        #F0F0FF;
  --text-sec:    #8888AA;
  --text-muted:  #55556A;

  --font:        'Rajdhani', sans-serif;
  --font-orb:    'Orbitron', sans-serif;

  --radius:      12px;
  --radius-sm:   8px;
  --nav-h:       64px;
}

/* ── 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: var(--font);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}

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

/* ── Material Symbols base ─────────────────────────────────── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  flex-shrink: 0;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font); line-height: 1.15; font-weight: 700; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── Section ─────────────────────────────────────────────────── */
.section { padding: 100px 0; position: relative; }

.section-header { text-align: center; margin-bottom: 64px; }

.section-badge {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid var(--pink);
  border-radius: 20px;
  font-family: var(--font-orb);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--pink);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-badge.red    { border-color: var(--red);    color: var(--red);    }
.section-badge.green  { border-color: var(--green);  color: var(--green);  }
.section-badge.blue   { border-color: var(--blue);   color: var(--blue);   }

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-sec);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-icon {
  font-size: 16px !important;
}
.btn-primary {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
  box-shadow: 0 0 20px rgba(255,0,110,0.3);
}
.btn-primary:hover {
  background: #e0005f;
  box-shadow: 0 0 32px rgba(255,0,110,0.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text-sec);
}
.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: 0 0 16px rgba(255,0,110,0.15);
}
.btn-outline.blue { border-color: var(--blue); color: var(--blue); }
.btn-outline.blue:hover { box-shadow: 0 0 16px rgba(0,102,255,0.2); }

.btn-ghost {
  background: transparent;
  border-color: rgba(240,240,255,0.15);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: rgba(240,240,255,0.35);
  background: rgba(240,240,255,0.05);
}

.btn-sm  { padding: 8px 16px; font-size: 12px; }
.btn-lg  { padding: 14px 28px; font-size: 15px; }
.btn-xl  { padding: 16px 40px; font-size: 16px; }
.w100    { width: 100%; justify-content: center; }

.text-gradient {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════
   ANIMATIONS — scroll-triggered
   ═══════════════════════════════════════ */
.slide-left,
.slide-right,
.fade-up {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide-left  { transform: translateX(-64px); }
.slide-right { transform: translateX(64px); }
.fade-up     { transform: translateY(48px); }

.slide-left.visible,
.slide-right.visible,
.fade-up.visible { opacity: 1; transform: translate(0); }

/* Stagger delays */
.feature-card:nth-child(1) { transition-delay: 0s;    }
.feature-card:nth-child(2) { transition-delay: 0.1s;  }
.feature-card:nth-child(3) { transition-delay: 0.05s; }
.feature-card:nth-child(4) { transition-delay: 0.1s;  }
.feature-card:nth-child(5) { transition-delay: 0.2s;  }
.feature-card:nth-child(6) { transition-delay: 0.05s; }
.feature-card:nth-child(7) { transition-delay: 0s;    }
.feature-card:nth-child(8) { transition-delay: 0.15s; }
.feature-card:nth-child(9) { transition-delay: 0.05s; }
.product-card:nth-child(2) { transition-delay: 0.1s;  }
.product-card:nth-child(3) { transition-delay: 0.2s;  }

/* ═══════════════════════════════════════
   NAV
   ═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 22px !important;
  color: var(--pink);
}
.logo-accent { color: var(--pink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-sec);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.nav-actions { display: flex; gap: 8px; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--nav-h) 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.2) saturate(1.5);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 80%, rgba(255,0,110,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(155,0,255,0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10,10,15,0.1) 0%, rgba(10,10,15,0.6) 50%, #0A0A0F 100%);
}
#particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.scanlines {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px, transparent 2px,
    rgba(0,0,0,0.06) 2px, rgba(0,0,0,0.06) 4px
  );
  pointer-events: none;
  animation: scanline-scroll 8s linear infinite;
}
@keyframes scanline-scroll {
  from { background-position: 0 0; }
  to   { background-position: 0 200px; }
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border: 1px solid rgba(255,0,110,0.4);
  border-radius: 20px;
  font-family: var(--font-orb);
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--pink);
  background: rgba(255,0,110,0.05);
  backdrop-filter: blur(8px);
}
.badge-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,0,110,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(255,0,110,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,0,110,0); }
}

/* ── Glitch Title ─────────────────────────────────────────── */
.hero-title {
  font-family: var(--font-orb);
  font-size: clamp(52px, 9vw, 112px);
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1;
  background: linear-gradient(135deg, var(--text) 0%, var(--pink) 60%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.hero-title::before,
.hero-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: none;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  opacity: 0;
}
.hero-title::before {
  color: var(--cyan);
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  animation: glitch-a 4s infinite steps(1);
}
.hero-title::after {
  color: var(--pink);
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  animation: glitch-b 4s infinite steps(1);
}
@keyframes glitch-a {
  0%,82%,100% { opacity:0; transform:translate(0); }
  84% { opacity:0.9; transform:translate(-4px, 2px); }
  86% { opacity:0.9; transform:translate(4px, -2px); }
  88% { opacity:0.9; transform:translate(-2px, 0); }
  90% { opacity:0; transform:translate(0); }
}
@keyframes glitch-b {
  0%,84%,100% { opacity:0; transform:translate(0); }
  86% { opacity:0.9; transform:translate(4px, -2px); }
  88% { opacity:0.9; transform:translate(-4px, 2px); }
  90% { opacity:0.9; transform:translate(2px, 0); }
  92% { opacity:0; transform:translate(0); }
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-sec);
  max-width: 540px;
  line-height: 1.6;
}
.hero-sub strong { color: var(--text); }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  padding: 20px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.stat-num {
  font-family: var(--font-orb);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
}
.stat-plus { font-family: var(--font-orb); font-size: 18px; color: var(--pink); }
.stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
}
.stat-sep { width: 1px; height: 36px; background: var(--border); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-muted);
  font-family: var(--font-orb);
}
.scroll-bar {
  width: 2px; height: 40px;
  background: var(--border);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.scroll-bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 50%;
  background: var(--pink);
  border-radius: 2px;
  animation: scroll-anim 1.5s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%   { top: 0; opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ═══════════════════════════════════════
   FEATURES GRID
   ═══════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--fc, var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

/* Feature icon — Material Symbol */
.feature-icon {
  margin-bottom: 16px;
  line-height: 1;
}
.feature-icon .material-symbols-outlined {
  font-size: 40px !important;
  color: var(--fc, var(--pink));
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.6;
  margin-bottom: 20px;
}
.feature-tag {
  display: inline-block;
  font-family: var(--font-orb);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--fc, var(--pink));
  border: 1px solid var(--fc, var(--pink));
  border-radius: 4px;
  padding: 2px 8px;
  opacity: 0.7;
}

/* ═══════════════════════════════════════
   RANKINGS
   ═══════════════════════════════════════ */
.rankings-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.rankings-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.rankings-left .section-badge { display: inline-block; }
.rankings-left .section-title { text-align: left; margin-bottom: 12px; }
.rankings-left .section-desc  { text-align: left; margin-inline: 0; margin-bottom: 32px; }

/* Podium */
.podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.podium-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.podium-item img {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
}
.podium-item.p1 img { width: 80px; height: 80px; border-color: var(--gold); box-shadow: 0 0 20px rgba(255,215,0,0.4); }
.podium-item.p2 img { border-color: #C0C0C0; }
.podium-item.p3 img { border-color: #CD7F32; }

/* Crown icon (workspace_premium) */
.podium-crown-icon {
  font-size: 28px !important;
  color: var(--gold);
  text-shadow: 0 0 16px rgba(255,215,0,0.6);
  animation: crown-float 2s ease-in-out infinite;
}
@keyframes crown-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

.podium-base {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--border);
  background: var(--card);
  min-width: 80px;
}
.podium-base.h1 { border-top-color: var(--gold);  min-height: 80px; }
.podium-base.h2 { border-top-color: #C0C0C0;      min-height: 60px; }
.podium-base.h3 { border-top-color: #CD7F32;      min-height: 44px; }
.podium-base strong { font-size: 13px; font-weight: 700; letter-spacing: 1px; }
.podium-base small  { font-size: 10px; color: var(--text-muted); font-family: var(--font-orb); }

/* Medal number badge */
.medal {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-orb);
  font-size: 13px;
  font-weight: 900;
}
.medal.gold   { background: rgba(255,215,0,0.15);   color: var(--gold);   border: 2px solid rgba(255,215,0,0.5);   }
.medal.silver { background: rgba(192,192,192,0.15); color: #C0C0C0;       border: 2px solid rgba(192,192,192,0.5); }
.medal.bronze { background: rgba(205,127,50,0.15);  color: #CD7F32;       border: 2px solid rgba(205,127,50,0.5);  }

/* Table */
.rank-table-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.rank-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}
.rank-title { color: var(--text-sec); }
.live-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: 11px;
  font-family: var(--font-orb);
}
.live-dot-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: pulse 1.5s ease infinite;
}

.rank-table { width: 100%; border-collapse: collapse; }
.rank-table thead th {
  padding: 10px 16px;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-orb);
}
.rank-table tbody tr {
  border-bottom: 1px solid rgba(42,42,56,0.5);
  transition: background 0.2s;
}
.rank-table tbody tr:last-child { border-bottom: none; }
.rank-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.row-gold   { background: rgba(255,215,0,0.03); }
.row-silver { background: rgba(192,192,192,0.02); }
.row-bronze { background: rgba(205,127,50,0.02); }
.rank-table td { padding: 10px 16px; font-size: 14px; vertical-align: middle; }

.rank-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 6px;
  background: var(--surface);
  font-family: var(--font-orb);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
}
.rank-num.gold   { background: rgba(255,215,0,0.15);   color: var(--gold);   }
.rank-num.silver { background: rgba(192,192,192,0.15); color: #C0C0C0;       }
.rank-num.bronze { background: rgba(205,127,50,0.15);  color: #CD7F32;       }

.player-cell { display: flex; align-items: center; gap: 10px; }
.player-cell img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.player-cell div { display: flex; flex-direction: column; }
.player-cell strong { font-size: 14px; font-weight: 700; }
.player-cell small  { font-size: 11px; color: var(--text-muted); }

.elo-val { font-family: var(--font-orb); font-size: 13px; font-weight: 700; color: var(--text-sec); }
.elo-val.gold   { color: var(--gold);   }
.elo-val.silver { color: #C0C0C0;       }
.elo-val.bronze { color: #CD7F32;       }

.sep   { color: var(--border); }
.d-val { color: #FF4444; }
.wr      { font-weight: 700; color: var(--text-muted); }
.wr.high { color: var(--green); }
.wr.mid  { color: var(--gold);  }

.rank-table-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  text-align: center;
}

/* ═══════════════════════════════════════
   LIVE SECTION
   ═══════════════════════════════════════ */
.live-section { padding: 120px 0; position: relative; }

.live-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.live-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.15) saturate(0.8);
}
.live-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,15,0.97) 0%, rgba(10,10,15,0.7) 55%, rgba(10,10,15,0.4) 100%);
}
.live-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.live-text .section-badge { display: inline-block; }
.live-text .section-title { text-align: left; margin-bottom: 12px; }
.live-text .section-desc  { text-align: left; margin-inline: 0; margin-bottom: 32px; }

.live-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.live-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

/* check_circle icon styled as badge */
.live-check {
  font-size: 22px !important;
  color: var(--pink) !important;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.9;
}

.live-list strong { display: block; font-size: 16px; margin-bottom: 2px; }
.live-list p { font-size: 13px; color: var(--text-sec); }

/* Stream Mockup */
.stream-mockup {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04);
}
.stream-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.stream-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-orb);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--red);
  flex-shrink: 0;
}
.stream-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.5s ease infinite;
  flex-shrink: 0;
}
.stream-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stream-viewers {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-sec);
  flex-shrink: 0;
  font-family: var(--font-orb);
}
.stream-eye { font-size: 14px !important; color: var(--text-sec); }

.stream-main-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.stream-main-img { width: 100%; height: 100%; object-fit: cover; }

.stream-hud {
  position: absolute;
  bottom: 12px;
  left: 12px; right: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fighter-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fighter-info span {
  font-family: var(--font-orb);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--text);
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.fighter-info.right { align-items: flex-end; }

.hp-wrap { width: 100%; }
.hp-bar  { width: 100%; height: 6px; background: rgba(0,0,0,0.5); border-radius: 3px; overflow: hidden; }
.hp-fill {
  height: 100%;
  background: linear-gradient(90deg, #00FF94, #00F5FF);
  border-radius: 3px;
  transition: width 0.8s ease;
}
.hp-fill.enemy { background: linear-gradient(90deg, #FF4444, #FF006E); }

.vs-orb {
  padding: 6px 10px;
  background: rgba(255,0,110,0.2);
  border: 1px solid rgba(255,0,110,0.4);
  border-radius: 6px;
  font-family: var(--font-orb);
  font-size: 11px;
  font-weight: 900;
  color: var(--pink);
  flex-shrink: 0;
  text-shadow: 0 0 12px var(--pink);
}

.stream-cams {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.cam-box { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--surface); }
.cam-box img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); }
.cam-label {
  position: absolute;
  bottom: 6px; left: 8px;
  font-family: var(--font-orb);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--text);
  background: rgba(0,0,0,0.6);
  padding: 2px 6px;
  border-radius: 3px;
}

/* ═══════════════════════════════════════
   SHOP
   ═══════════════════════════════════════ */
.shop-section { background: var(--surface); }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  border-color: rgba(0,255,148,0.2);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-img-wrap img { transition: transform 0.4s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 10px; right: 10px;
  padding: 3px 10px;
  border-radius: 4px;
  font-family: var(--font-orb);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  background: var(--pink);
  color: #fff;
}
.product-badge.hot     { background: var(--red);    }
.product-badge.limited { background: var(--purple);  }

.product-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.product-cat { font-size: 10px; letter-spacing: 2px; color: var(--text-muted); font-family: var(--font-orb); }
.product-body h4 { font-size: 15px; font-weight: 700; line-height: 1.3; }
.product-price { font-family: var(--font-orb); font-size: 16px; font-weight: 700; color: var(--green); }

.shop-cta { text-align: center; }

/* ═══════════════════════════════════════
   VENUES
   ═══════════════════════════════════════ */
.venues-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.venues-left .section-badge { display: inline-block; }
.venues-left .section-title { text-align: left; margin-bottom: 12px; }
.venues-left .section-desc  { text-align: left; margin-inline: 0; margin-bottom: 32px; }

.venue-stats { display: flex; gap: 32px; margin-bottom: 32px; flex-wrap: wrap; }
.venue-stat  { display: flex; flex-direction: column; gap: 4px; }
.v-num {
  font-family: var(--font-orb);
  font-size: 36px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
.v-label { font-size: 11px; letter-spacing: 1.5px; color: var(--text-muted); font-weight: 600; }

.venues-gallery { position: relative; height: 440px; }
.venue-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 75%;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid var(--border);
}
.venue-thumb {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 50%;
  border-radius: var(--radius);
  object-fit: cover;
  border: 2px solid var(--card);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

/* ═══════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════ */
.how-section { background: var(--surface); }

.steps-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}
.step-num {
  font-family: var(--font-orb);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--pink);
  margin-bottom: 12px;
  opacity: 0.8;
}
.step-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}
.step-icon .material-symbols-outlined {
  font-size: 32px !important;
  color: var(--pink);
}
.step-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px dashed rgba(255,0,110,0.25);
  animation: spin 12s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; letter-spacing: 0.5px; }
.step p   { font-size: 13px; color: var(--text-sec); line-height: 1.6; }

.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 28px;
  flex-shrink: 0;
  gap: 4px;
}
.connector-line {
  width: 20px; height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
}
.connector-arrow {
  font-size: 20px !important;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(255,0,110,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(155,0,255,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(0,245,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  border: 1px solid rgba(255,0,110,0.35);
  border-radius: 20px;
  font-family: var(--font-orb);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--pink);
  background: rgba(255,0,110,0.06);
}
.cta-chip-icon { font-size: 16px !important; }

.cta-title { font-size: clamp(36px, 5vw, 60px); font-weight: 700; letter-spacing: 1px; line-height: 1.15; }
.cta-desc  { font-size: 17px; color: var(--text-sec); }
.cta-btns  { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.cta-note {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.note-check {
  font-size: 14px !important;
  color: var(--green) !important;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.footer-logo-icon {
  font-size: 22px !important;
  color: var(--pink);
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Social — SVG icons */
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sec);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.footer-social a:hover {
  border-color: var(--pink);
  background: rgba(255,0,110,0.08);
  color: var(--pink);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-family: var(--font-orb);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-sec);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--pink); }

/* Small nav icons inside footer links */
.nav-ic {
  font-size: 14px !important;
  color: var(--text-muted);
  flex-shrink: 0;
}
.footer-col a:hover .nav-ic { color: var(--pink); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-made {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
}
.footer-heart {
  font-size: 14px !important;
  color: var(--pink) !important;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-top    { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .rankings-inner { grid-template-columns: 1fr; gap: 48px; }
  .live-inner     { grid-template-columns: 1fr; gap: 48px; }
  .venues-inner   { grid-template-columns: 1fr; gap: 48px; }
  .live-text .section-desc { max-width: 100%; }
  .venues-gallery { height: 320px; }
  .steps-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    justify-items: center;
  }
  .step-connector { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(10,10,15,0.97);
    backdrop-filter: blur(16px);
    padding: 16px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .hamburger { display: flex; }
  .section { padding: 72px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 0; padding: 16px 20px; }
  .stat-item { padding: 0 16px; }
  .steps-wrap { grid-template-columns: 1fr; }
  .step { max-width: 100%; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .venues-gallery { height: 260px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { letter-spacing: 2px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-sep { width: 80px; height: 1px; }
  .stat-item { padding: 0; }
  .shop-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .rankings-inner { gap: 32px; }
  .stream-hud { display: none; }
  .venues-gallery { height: 220px; }
  .venue-main  { width: 70%; height: 65%; }
  .venue-thumb { width: 55%; height: 48%; }
}
