/* ── FONTS ── */
@font-face { font-family: 'Brown'; src: url('fonts/BrownLogitechWebPan-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; }
@font-face { font-family: 'Brown'; src: url('fonts/BrownLogitechWebPan-Light.woff2') format('woff2'); font-weight: 300; font-style: normal; }
@font-face { font-family: 'Brown'; src: url('fonts/BrownLogitechWebPan-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; }
@font-face { font-family: 'Brown'; src: url('fonts/BrownLogitechWebPan-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; }
@font-face { font-family: 'Brown'; src: url('fonts/BrownLogitechWebPan-Black.woff2') format('woff2'); font-weight: 900; font-style: normal; }

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

:root {
  --bg: #0a0a0c;
  --surface: #111116;
  --surface2: #18181f;
  --surface3: #1e1e27;
  --surface4: #ffffff;
  --border: #252530;
  --border2: #2e2e3e;
  --green: #22c55e;
  --green-dim: #16a34a;
  --brand: #00b8fc;
  --brand-light: #ccf1fe;
  --gold: #f59e0b;
  --silver: #94a3b8;
  --bronze: #cd7c3a;
  --text: #ffffff;
  --text-dark: #000000;
  --text-p: #eaebed;
  --muted: #ccf1fe;
  --muted2: #eaebed;
  --accent: #3b82f6;
  --danger: #ef4444;
  --light: 300;
  --regular: 400;
  --medium: 500;
  --bold: 700;
  --black: 900;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Brown', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,197,94,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--brand);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Brown', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  font-family: 'Brown', sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--text-dark);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface2); border-radius: 20px; }
.nav-links a.active { color: var(--text-dark); background: var(--surface4); border-radius: 20px; }
.nav-cta { background: none; border: 2px solid #fff; color: var(--text) !important; font-weight: 700; padding: 7px 16px !important; border-radius: 20px !important; }
.nav-cta:hover { background: var(--surface4) !important; color: #000 !important; border-radius: 20px; }

/* ── PAGE ── */
.page { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 120px 24px 80px; }
.page--narrow { max-width: 720px; }
.page--leaderboard { max-width: 780px; padding: 80px 20px 80px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--brand);
  color: #000;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 20px;
  font-family: 'Brown', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background .2s, color .2s, transform .1s;
  display: inline-block;
}
.btn-primary:hover { background: #000; color: #fff; transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: #fff;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 20px;
  border: 2px solid #fff;
  font-family: 'Brown', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background .2s, color .2s, transform .1s;
  display: inline-block;
}
.btn-secondary:hover { background: #fff; color: #000; transform: translateY(-1px); }

/* ── HERO VIDEO (index only) ── */
.hero-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: -70px;
  padding: 0 24px;
  border-radius: 0;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; }

/* ── HERO ── */
.hero { text-align: center; animation: fadeUp .6s ease both; }
.hero-eyebrow {
  font-family: 'Brown', serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--brand);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  animation: fadeUp .5s ease both;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--brand);
}
.hero h1 {
  font-size: clamp(24px, 6vw, 64px);
  font-weight: var(--black);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  animation: fadeUp .5s ease .1s both;
}
.hero h2 {
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 40px;
  animation: fadeUp .5s ease .1s both;
}

.hero h1 em, .hero h1 span { color: var(--brand); font-style: normal; }
.hero-tagline {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  letter-spacing: 1px;
  margin-bottom: 40px;
  animation: fadeUp .5s ease .2s both;
  max-width: 850px;
  line-height: 1.9;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub {
  font-family: 'Brown', serif;
  font-size: 12px;
  color: var(--brand);
  letter-spacing: 2px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .5s ease .3s both;
}

/* ── SCORE OVERLAP CARD ── */
.score-overlap-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: -60px;
  margin-bottom: 48px;
  position: relative;
  z-index: 10;
  box-shadow: 0 -8px 40px rgba(0,0,0,.6);
}
.score-overlap-bar {
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.score-overlap-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.score-overlap-body .stat-card {
  border-radius: 0;
  border: none;
  border-right: 1px solid var(--border);
  padding: 24px 20px;
  background: var(--surface);
}
.score-overlap-body .stat-card:last-child { border-right: none; }

/* ── STAT CARDS ── */
.stat-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.stat-label {
  font-family: 'Brown', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted2);
  margin-bottom: 8px;
}
.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}
.stat-value.green { color: var(--green); }
.stat-value.gold { color: var(--gold); }
.stat-sub {
  font-family: 'Brown', monospace;
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
}

/* ── SECTION ── */
.section { margin-bottom: 80px; margin-top: 80px; animation: fadeUp .5s ease .2s both; }
.section-label {
  font-family: 'Brown', monospace;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.section h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 32px;
  background: linear-gradient(90deg, var(--brand) 0%, #FFF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;

}

/* ── ABOUT BLOCK ── */
.about-block { display: flex; gap: 32px; align-items: flex-start; flex-wrap: wrap; }
.about-text { flex: 2; min-width: 240px; }
.about-text p {
  font-family: 'Brown', monospace;
  font-weight: var(--light);
  font-size: 18px;
  color: var(--muted2);
  line-height: 1.9;
  letter-spacing: .5px;
}
.about-text p + p { margin-top: 12px; }
.about-text strong { color: var(--text); }
.about-stats { flex: 1; min-width: 160px; display: flex; flex-direction: column; gap: 12px; }
.about-stat {
  background: linear-gradient(135deg, rgba(34, 154, 197, 0.08) 0%, rgba(34, 154, 197, 0.03) 100%);
  border: 1px solid rgba(34, 151, 197, 0.25);
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
}
.about-stat-val { font-size: 24px; font-weight: 700; color: var(--brand); letter-spacing: 2px; }
.about-stat-label {
  font-family: 'Brown', monospace;
  font-size: 10px;
  color: var(--muted2);
  letter-spacing: 2px;
  margin-top: 4px;
}

/* ── FINALE BLOCK ── */
.finale-block {
  background: linear-gradient(135deg, rgba(34, 154, 197, 0.08) 0%, rgba(34, 154, 197, 0.03) 100%);
  border: 1px solid rgba(34, 151, 197, 0.25);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  animation: fadeUp .5s ease both;
  position: relative;
  overflow: hidden;
}
.finale-block::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(34, 132, 197, 0.05);
  pointer-events: none;
}
.finale-left { flex: 2; min-width: 220px; }
.finale-eyebrow {
  font-family: 'Brown', monospace;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--brand);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  text-transform: uppercase;
}
.finale-title { font-size: 26px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-bottom: 10px; }
.finale-desc { font-family: 'Brown', monospace; font-size: 18px; color: var(--muted2); line-height: 1.9; letter-spacing: .5px; weight: var(--light); }
.finale-desc strong { color: var(--text); }
.finale-right { display: flex; gap: 0; align-items: center; flex-shrink: 0; }
.finale-video {border-radius:15px; height: 435px;}
.finale-stat { text-align: center; padding: 0 24px; }
.finale-img img { 
  width: 150px;
  margin-right: 70px;
  margin-left: 70px;
}
.finale-stat-num { font-size: 28px; font-weight: 700; color: var(--brand); letter-spacing: 2px; line-height: 1; margin-bottom: 6px; }
.finale-stat-label { font-family: 'Brown', monospace; font-size: 10px; color: var(--muted2); letter-spacing: 2px; }
.finale-divider { width: 1px; height: 48px; background: rgba(34,197,94,.2); flex-shrink: 0; }

/* ── STEPS ── */
.steps { padding: 12px; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; background: url("pro-x2-superstrike-haptic-feature-1.jpg"); background-size: cover; background-position: right center; border-radius: 10px; }
.step {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: border-color .2s;
    background: linear-gradient(135deg, rgba(26, 35, 38, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);  padding-bottom: 40px;
}
.step:hover { border-color: var(--border2); }
.step-zero { grid-column: 1 / -1; }
.step-num { font-family: 'Brown', monospace; font-size: 32px; font-weight: var(--bold); color: var(--brand); letter-spacing: 2px; margin-bottom: 16px; }
.step-icon { width: 40px; height: 40px; background: var(--surface2); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--brand); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.step h3 { 
  font-size: 20px; 
  font-weight: 700; 
  letter-spacing: 1px; 
  text-transform: uppercase; 
  color: #fff; 
  margin-bottom: 12px;
  background: linear-gradient(90deg, var(--gold) 0%, #FFF 75%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;

}
.step p { font-size: 18px; color: var(--muted2); line-height: 1.5; font-family: 'Brown', monospace; font-weight: var(--light); }
.step-links { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }

/* ── DOWNLOAD BUTTONS ── */
.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: 'Brown', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .15s, opacity .15s;
  border: 1px solid var(--border2);
}
.dl-btn:hover { transform: translateY(-1px); opacity: .85; }
.dl-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.dl-steam { background: #1b2838; color: #c7d5e0; border-color: #1b2838; }
.dl-xbox { background: #0e6b0e; color: #fff; border-color: #107c10; }
.dl-epic { background: #1a1a1a; color: #fff; border-color: #2a2a2a; }
.dl-ps { background: #003087; color: #fff; border-color: #003791; }

/* ── CTA BLOCK ── */
.cta-block {
  background: linear-gradient(135deg, rgba(34, 154, 197, 0.08) 0%, rgba(34, 154, 197, 0.03) 100%);
  border: 1px solid rgba(34, 151, 197, 0.25);
  border-radius: 12px;
  padding: 48px 32px;
  text-align: center;
  animation: fadeUp .5s ease .3s both;
}
.cta-block h2 { font-size: 28px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.cta-block p { font-family: 'Brown', monospace; font-size: 12px; color: var(--muted2); letter-spacing: 1px; margin-bottom: 28px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 24px;
  text-align: center;
  font-family: 'Brown', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}
footer a { color: var(--muted2); text-decoration: none; }
footer a:hover { color: var(--brand); }

/* ── FAQ ── */
.faq-category { margin-bottom: 48px; animation: fadeUp .5s ease both; }
.category-label {
  font-family: 'Brown', monospace;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--brand);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.category-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 8px; transition: border-color .2s; }
.faq-item:hover { border-color: var(--border2); }
.faq-item.open { border-color: rgba(34, 129, 197, 0.3); }
.faq-q { padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; background: var(--surface); user-select: none; border-radius: 10px; }
.faq-item.open .faq-q { border-radius: 10px 10px 0 0; }
.faq-q:hover, .faq-item.open .faq-q { background: var(--surface2); }
.faq-q-text { font-size: 16px; font-weight: var(--light); color: #fff; letter-spacing: .5px; }
.faq-item.open .faq-q-text { color: var(--brand); }
.faq-icon { width: 28px; height: 28px; border: 1px solid var(--border2); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s, border-color .2s, transform .3s; font-size: 20px; line-height: 1; color: var(--muted2); padding-bottom: 3px; }
.faq-item.open .faq-icon { background: var(--brand); border-color: var(--brand); color: #000; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; background: var(--surface); border-radius: 0 0 10px 10px; }
.faq-item.open .faq-a { max-height: 1200px; }
.faq-a-inner { padding: 16px 20px 28px; border-top: 1px solid var(--border); }
.faq-a-inner p { font-family: 'Brown', monospace; font-size: 16px; color: var(--muted2); line-height: 1.9; letter-spacing: .5px; }
.faq-a-inner p + p { margin-top: 10px; }
.faq-a-inner strong { color: var(--text); }
.faq-a-inner ul, .faq-a-inner ol { padding-left: 20px; margin: 10px 0 4px; }
.faq-a-inner li { font-family: 'Brown', monospace; font-size: 16px; color: var(--muted2); line-height: 1.8; letter-spacing: .5px; margin-bottom: 4px; }
.faq-a-inner .highlight { background: rgba(34, 135, 197, 0.08); border: 1px solid rgba(34, 116, 197, 0.2); border-radius: 6px; padding: 10px 14px; margin-top: 12px; color: var(--brand); font-size: 13px; letter-spacing: 1px; }

ul li {
  margin-left: 60px;
	list-style-type: "👉️ ";
  padding-inline-start: 1lh;
  line-height: 1.5;
  font-size: 16px;
}


/* ── LEADERBOARD CARD ── */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 24px; animation: fadeUp .6s ease both; }
.card:nth-child(2) { animation-delay: .1s; }
.card:nth-child(3) { animation-delay: .2s; }
.card-header { background: var(--surface2); border-bottom: 1px solid var(--border); padding: 16px 24px; display: flex; align-items: center; gap: 12px; }
.card-icon { width: 36px; height: 36px; background: var(--brand); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.card-icon svg { width: 18px; height: 18px; fill: none; stroke: #000; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.card-title { font-size: 18px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fff; }
.card-sub { font-family: 'Brown', monospace; font-size: 10px; color: var(--muted2); letter-spacing: 1px; margin-top: 2px; }

/* ── FORM ── */
.form-body { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: 'Brown', monospace; font-size: 10px; letter-spacing: 2px; color: var(--muted2); text-transform: uppercase; }
.field input[type=text], .field input[type=number] {
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 12px 14px;
  color: #fff;
  font-family: 'Brown', monospace;
  font-size: 18px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.field input:focus { border-color: var(--brand); }
.field input::placeholder { color: var(--muted); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── FILE UPLOAD ── */
.upload-zone {
  background: var(--surface2);
  border: 1px dashed var(--border2);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  position: relative;
}
.upload-zone:hover { border-color: var(--brand); background: var(--surface3); }
.upload-zone.has-file { border-color: var(--brand); border-style: solid; }
.upload-zone input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.upload-icon { width: 32px; height: 32px; margin: 0 auto 10px; opacity: .4; }
.upload-icon svg { width: 32px; height: 32px; fill: none; stroke: var(--brand); stroke-width: 1.5; }
.upload-label { font-family: 'Brown', monospace; font-size: 12px; color: var(--muted2); letter-spacing: 1px; }
.upload-label strong { color: var(--brand); }
.upload-filename { font-family: 'Brown', monospace; font-size: 12px; color: var(--brand); margin-top: 6px; display: none; }
.upload-zone.has-file .upload-filename { display: block; }
.upload-zone.has-file .upload-default { display: none; }

/* ── SUBMIT BUTTON ── */
.submit-btn {
  background: var(--brand);
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-family: 'Brown', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  transition: background .2s, transform .1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.submit-btn:hover { background: var(--brand-dim); }
.submit-btn:active { transform: scale(.99); }
.submit-btn:disabled { background: var(--muted); cursor: not-allowed; transform: none; }

/* ── SUBMIT TOGGLE ── */
.submit-toggle-btn {
  background: var(--brand);
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: 'Brown', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s;
}
.submit-toggle-btn:hover { background: var(--brand-dim); }
.submit-toggle-btn.active { background: transparent; color: var(--muted2); border: 1px solid var(--border2); }
.submit-toggle-btn.active:hover { color: var(--text); border-color: var(--muted2); }

/* ── STATUS MESSAGES ── */
.status { font-family: 'Brown', monospace; font-size: 14px; padding: 12px 14px; border-radius: 8px; letter-spacing: 1px; display: none; }
.status.success { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); color: var(--brand); display: block; }
.status.error { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3); color: var(--danger); display: block; }
.status.loading { background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.3); color: var(--accent); display: block; }

/* ── SPINNER ── */
.spinner { width: 16px; height: 16px; border: 2px solid rgba(0,0,0,.3); border-top-color: #000; border-radius: 50%; animation: spin .7s linear infinite; display: none; }
.submit-btn.loading .spinner { display: block; }
.submit-btn.loading .btn-text { opacity: .7; }

/* ── LEADERBOARD TABLE ── */
.lb-controls { background: var(--surface2); border-bottom: 1px solid var(--border); padding: 10px 24px; display: flex; align-items: center; gap: 8px; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--brand); animation: pulse 2s infinite; flex-shrink: 0; }
.status-live { font-family: 'Brown', monospace; font-size: 14px; color: var(--brand); letter-spacing: 1px; }
.lb-count { margin-left: auto; font-family: 'Brown', monospace; font-size: 14px; color: var(--muted2); }
.lb-refresh { background: none; border: 1px solid var(--border2); border-radius: 6px; padding: 4px 10px; color: var(--muted2); font-family: 'Brown', monospace; font-size: 14px; letter-spacing: 1px; cursor: pointer; transition: color .2s, border-color .2s; }
.lb-refresh:hover { color: var(--brand); border-color: var(--brand); }
.lb-rules { background: var(--surface); border-bottom: 1px solid var(--border); padding: 8px 24px; display: flex; gap: 20px; flex-wrap: wrap; }
.lb-rule { font-family: 'Brown', monospace; font-size: 14px; color: var(--muted); letter-spacing: 1px; }
.lb-rule span { color: #4a9eff; }

table { width: 100%; border-collapse: collapse; table-layout: fixed; }
thead tr { background: var(--surface2); border-bottom: 1px solid var(--border); }
thead th { padding: 10px 20px; font-family: 'Brown', monospace; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted2); font-weight: 400; text-align: left; }
thead th.right { text-align: right; }
col.c-rank { width: 56px; }
col.c-name { width: auto; }
col.c-score { width: 110px; }
col.c-acc { width: 100px; }
col.c-date { width: 104px; }
tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
tbody tr:hover { background: var(--surface2); }
tbody tr:last-child { border-bottom: none; }
tbody tr.top1 { background: rgba(245,158,11,.05); }
tbody tr.top2 { background: rgba(148,163,184,.03); }
tbody tr.top3 { background: rgba(205,124,58,.04); }
td { padding: 15px 20px; vertical-align: middle; }

.rank-badge { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 6px; font-weight: 700; font-size: 15px; font-family: 'Brown', monospace; }
.rank-1 { background: rgba(245,158,11,.15); color: var(--gold); border: 1px solid rgba(245,158,11,.3); }
.rank-2 { background: rgba(148,163,184,.1); color: var(--silver); border: 1px solid rgba(148,163,184,.2); }
.rank-3 { background: rgba(205,124,58,.12); color: var(--bronze); border: 1px solid rgba(205,124,58,.25); }
.rank-other { color: var(--muted2); font-size: 14px; }
.player-name { font-size: 18px; font-weight: 700; color: #fff; letter-spacing: .5px; }
.top1 .player-name { color: var(--gold); }
.tie-badge { display: inline-block; font-family: 'Brown', monospace; font-size: 9px; color: #4a9eff; border: 1px solid rgba(74,158,255,.3); border-radius: 4px; padding: 1px 5px; margin-left: 6px; vertical-align: middle; letter-spacing: 1px; }
.score-val { font-family: 'Brown', monospace; font-size: 15px; font-weight: 700; color: var(--text); text-align: right; }
.top1 .score-val { color: var(--gold); }
.acc-val { font-family: 'Brown', monospace; font-size: 15px; text-align: right; }
.acc-high { color: var(--brand); }
.acc-mid { color: var(--gold); }
.acc-low { color: var(--muted2); }
.date-val { font-family: 'Brown', monospace; font-size: 11px; color: var(--muted2); text-align: right; }

.lb-loading { padding: 48px 24px; text-align: center; }
.lb-spinner { width: 32px; height: 32px; border: 2px solid var(--border2); border-top-color: var(--brand); border-radius: 50%; animation: spin .8s linear infinite; margin: 0 auto 12px; }
.lb-loading-label { font-family: 'Brown', monospace; font-size: 11px; color: var(--muted2); letter-spacing: 2px; }
.lb-empty { padding: 56px 24px; text-align: center; color: var(--muted2); font-family: 'Brown', monospace; font-size: 12px; letter-spacing: 2px; line-height: 2; }

/* ── RESPONSIVE ── */
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .score-overlap-body { grid-template-columns: 1fr 1fr; }
  col.c-date { width: 80px; }
  col.c-acc { width: 80px; }
  td, thead th { padding: 12px 12px; }
}

/* ── MOBILE MENU ── */

.nav { z-index: 1000; }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #0d0d0d;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Brown', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}
.mobile-menu a:hover { color: var(--brand); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--brand);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
}

/* ── PRODUCT BANNER ── */
.product-banner {
  position: relative;
  margin: 80px 0;
  animation: fadeUp .6s ease both;
}
.product-banner .banner-img {
  width: 100%;
  border-radius: 10px;
  display: block;
  border: 1px solid rgba(255,255,255,.12);
}
.product-banner-overlay {
  position: absolute;
  right: 3%;
  top: 56%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 16px 14px;
  border: 1px solid rgba(255,255,255,.1);
}
.product-banner-label {
  font-family: 'Brown', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  text-align: center;
}
.product-banner-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 52px;
  padding: 10px 18px;
  background: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
}
.product-banner-btn:hover {
  opacity: .9;
  transform: scale(1.03);
}
.product-banner-btn img {
  max-height: 32px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
}
.product-banner-btn--coolblue {
  background: #0090e3;
}

/* Mobile: overlay wordt een rij onder de afbeelding */
@media (max-width: 600px) {
  .product-banner-overlay {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 12px;
    background: none;
    backdrop-filter: none;
    border: none;
    padding: 0;
    gap: 12px;
  }
  .product-banner-label { width: 100%; text-align: center; color: var(--muted); }
  .product-banner-btn { width: 140px; height: 48px; }
  .product-banner-btn img { max-height: 22px; max-width: 110px; }
}

/* ── Aimlabs page ─────────────────────────────────────────────────────────── */
.aim-section { margin-bottom: 56px; animation: fadeUp .5s ease both; position: relative; z-index: 0; }

.aimlabs-video {
  position: relative;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
  z-index: 0;
}

.aim-section-label {
  font-family: 'Brown', monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.aim-section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.aim-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 8px;
  transition: border-color .25s, box-shadow .25s, background .25s;
  position: relative;
  overflow: hidden;
}
.aim-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(71,216,215,.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.aim-step:hover {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px rgba(71,216,215,.1), 0 4px 24px rgba(0,0,0,.3);
}
.aim-step:hover::before { opacity: 1; }

.aim-step-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 2px;
  min-width: 56px;
  padding-top: 3px;
  text-transform: uppercase;
}

.aim-step-body h3 {
  font-family: 'Brown', monospace;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: .2px;
}
.aim-step-body p {
  font-family: 'Brown', monospace;
  font-size: 16px;
  color: var(--muted2);
  line-height: 1.65;
  font-weight: 300;
}
.aim-step-body p strong { color: var(--text); font-weight: 600; }

.aim-highlight { color: var(--brand); font-weight: 700; }

.aim-note {
  background: rgba(255,184,0,.05);
  border: 1px solid rgba(255,184,0,.18);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 8px;
  font-family: 'Brown', monospace;
  font-size: 16px;
  color: var(--muted2);
  line-height: 1.65;
  font-weight: 300;
}
.aim-note strong { color: var(--gold); font-weight: 700; }

.aim-info {
  background: linear-gradient(135deg, rgba(71,216,215,.07) 0%, rgba(71,216,215,.02) 100%);
  border: 1px solid rgba(71,216,215,.2);
  border-radius: 12px;
  padding: 24px 28px;
  font-family: 'Brown', monospace;
  font-size: 16px;
  color: var(--muted2);
  line-height: 1.75;
  font-weight: 300;
}
.aim-info strong { color: var(--brand); font-weight: 700; }
.aim-info a, .aim-step-body a, .aim-note a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--brand);
  transition: color .2s, border-color .2s;
}
.aim-info a:hover, .aim-step-body a:hover, .aim-note a:hover {
  color: #fff;
  border-color: var(--brand);
}

.aim-stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.aim-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.aim-stat-val {
  font-size: 28px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}
.aim-stat-label {
  font-family: 'Brown', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.aim-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.aim-images img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: block;
  transition: border-color .25s;
}
.aim-images img:hover { border-color: var(--brand); }
.aim-images .aim-img-placeholder {
  aspect-ratio: 16/9;
  background: var(--surface);
  border: 1px dashed var(--border2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
}

/* ── Aimlabs hero ─────────────────────────────────────────────────────────── */
.aim-hero {
  position: relative;
  width: 100%;
  min-height: 88vh;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.aim-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.5) 55%,
    #0d0d0d 100%
  );
}
.aim-hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 100px;
  max-width: 720px;
  margin: 0 auto;
}
.aim-hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.aim-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 5px;
  color: rgba(71,216,215,.85);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.aim-hero-title {
  font-family: 'Brown', monospace;
  font-size: clamp(42px, 8vw, 84px);
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -1px;
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,.6);
}
.aim-hero-sub {
  font-family: 'Brown', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
}

/* ── Aimlabs video embed ──────────────────────────────────────────────────── */
.aim-video-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  background: #000;
}
.aim-video-frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}
.aim-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.65) 40%, transparent 70%);
  pointer-events: none;
  border-radius: 12px;
}
.aim-video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 40px 36px;
  z-index: 1;
}
.aim-video-tag {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.aim-video-label h1 {
  font-family: 'Brown', monospace;
  font-size: px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 8px;
  letter-spacing: -.2px;
  background: linear-gradient(90deg, var(--brand) 0%, #FFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.aim-video-label p {
  font-family: 'Brown', monospace;
  font-size: 18px;
  color: var(--text);
  line-height: 1.9;
  font-weight: 300;
  margin: 0;
  width: 800px;
}
@media (max-width: 600px) {
  /* Video overlay: tekst onder de video ipv er overheen */
  .aim-video-label {
    position: static;
    padding: 14px 16px;
    background: var(--surface);
    border-top: 1px solid rgba(71,216,215,.2);
  }
  .aim-video-label h1 { font-size: 16px; -webkit-text-fill-color: unset; background: none; color: #fff; }
  .aim-video-label p { font-size: 13px; width: auto; line-height: 1.55; }
  .aim-video-wrap::after { display: none; }

  /* Stat cards: 2 kolommen op mobiel zodat tekst niet overloopt */
  .aim-stat-row { grid-template-columns: 1fr 1fr; }
  .aim-stat-val { font-size: 16px; word-break: break-word; }
  .aim-stat-label { font-size: 10px; letter-spacing: 1px; }

  /* Coolblue logo iets groter op mobiel */
  .product-banner-btn--coolblue img { max-height: 28px; max-width: 130px; }

  /* Submit score knop → leaderboard meer ruimte */
  .submit-toggle-btn + * { margin-top: 32px; }
}