*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg:        #fbfaf6;
  --bg-cream:  #f5efe3;
  --bg-mint:   #e2efe7;
  --bg-rose:   #fce7df;
  --bg-card:   #ffffff;
  --line:      #0b1320;
  --line-soft: rgba(11,19,32,0.10);
  --line-med:  rgba(11,19,32,0.20);
  --ink:       #0b1320;
  --ink-2:     #475569;
  --ink-3:     #7c8aa0;
  --coral:     #ff6a3d;
  --coral-2:   #e8552d;
  --sunny:     #fbbf24;
  --sunny-2:   #f59e0b;
  --sage:      #34a37a;
  --serif:     'Lora', 'Times New Roman', serif;
  --mono:      'DM Mono', 'JetBrains Mono', ui-monospace, monospace;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ── HEADER ── */
.vb-hdr {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: center;
  height: 72px; padding: 12px 32px;
  background: var(--bg);
}
.vb-hdr-inner {
  display: flex; align-items: center; width: 100%; max-width: 1280px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 8px 8px 8px 18px;
  box-shadow: 0 1px 0 rgba(11,19,32,0.04);
}
.vb-logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; font-size: 18px; letter-spacing: -0.02em;
}
.vb-logo img { width: 42px; height: 42px; border-radius: 8px; }
.vb-logo em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--coral); }
.vb-nav { margin-left: 32px; display: flex; gap: 2px; }
.vb-nav a {
  font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: 999px;
  color: var(--ink-2); transition: background .12s, color .12s;
}
.vb-nav a:hover { background: var(--bg); color: var(--ink); }
.vb-nav a.is-active { background: var(--ink); color: #fff; }
.vb-soc { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.vb-soc a {
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--bg); display: flex; align-items: center; justify-content: center;
  color: var(--ink-2); transition: background .12s;
}
.vb-soc a:hover { background: var(--bg-cream); color: var(--coral); }
.vb-cta {
  margin-left: 10px;
  font-size: 14px; font-weight: 600; padding: 10px 20px; border-radius: 999px;
  background: var(--coral); color: #fff;
  transition: background .12s, transform .12s;
}
.vb-cta:hover { background: var(--coral-2); transform: translateY(-1px); }

/* ── HERO ── */
.vb-hero { padding: 12px 32px 20px; max-width: 1280px; margin: 0 auto; width: 100%; }
.vb-hero-inner {
  background: var(--bg-cream);
  border-radius: 28px;
  padding: 44px 56px 40px;
  position: relative; overflow: hidden;
  min-height: 360px;
}
.vb-hero-bg  { display: none; }
.vb-hero-dots { display: none; }
.vb-hero-inner::before { display: none; }
.vb-hero-inner::after  { display: none; }

@media (min-width: 861px) {
  .vb-hero-inner::before {
    content: ""; display: block;
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image: var(--hero-map, none);
    background-size: cover; background-position: center;
    filter: saturate(0.3) brightness(1.2);
    opacity: 0.40;
  }
  .vb-hero-inner::after {
    content: ""; display: block;
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background: linear-gradient(180deg, rgba(245,239,227,0) 0%, rgba(245,239,227,0.6) 60%, var(--bg-cream) 100%);
  }
}
.vb-hero-content {
  position: relative; z-index: 3;
  max-width: 820px;
  display: flex; flex-direction: column; align-items: flex-start;
}
.vb-eye {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg-card);
  font-size: 12px; font-weight: 600;
  padding: 6px 14px 6px 8px; border-radius: 999px;
  border: 1px solid var(--line-soft);
  color: var(--ink-2); white-space: nowrap;
}
.vb-eye .dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--sage);
  animation: vbPulse 1.4s ease-out infinite;
}
@keyframes vbPulse {
  0%   { box-shadow: 0 0 0 0 rgba(52,163,122,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(52,163,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,163,122,0); }
}
.vb-eye b { color: var(--ink); }
.vb-title {
  position: relative; z-index: 1;
  font-weight: 900; font-size: clamp(56px, 7vw, 96px); line-height: 0.95;
  letter-spacing: -0.04em; margin: 18px 0 18px;
}
.vb-title em { font-style: italic; font-family: var(--serif); font-weight: 500; color: var(--coral); letter-spacing: -0.015em; }
.vb-title .hl {
  background: var(--sunny); padding: 0 14px 4px;
  border-radius: 14px; display: inline-block;
  transform: rotate(-1.5deg);
  font-style: italic; font-family: var(--serif); font-weight: 500; color: var(--ink);
}
.vb-lede {
  position: relative; z-index: 1;
  font-size: 18px; line-height: 1.55; max-width: 520px;
  color: var(--ink-2); margin-bottom: 28px;
}
.vb-lede b { color: var(--ink); font-weight: 700; }
.vb-hrow { position: relative; z-index: 1; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.vb-btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--ink); color: #fff !important; text-decoration: none !important;
  font-size: 15px; font-weight: 600; white-space: nowrap;
  padding: 14px 26px; border-radius: 999px;
  transition: background .12s, transform .12s; border: none; cursor: pointer;
  box-shadow: 0 2px 12px rgba(11,19,32,0.18);
}
.vb-btn-primary:hover { background: #1a2440; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(11,19,32,0.22); }
.vb-btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(255,255,255,0.7); color: var(--ink) !important; text-decoration: none !important;
  font-size: 15px; font-weight: 600; white-space: nowrap;
  padding: 13px 24px; border-radius: 999px;
  border: 1.5px solid var(--line-med); transition: background .12s, border-color .12s; cursor: pointer;
}
.vb-btn-ghost:hover { background: var(--bg-card); border-color: var(--ink); }

/* ── STATS STRIP ── */
.vb-stats {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
}
.vb-stat {
  background: var(--bg-card); border: 1px solid var(--line-soft);
  border-radius: 16px; padding: 14px 16px;
  display: flex; flex-direction: column; gap: 6px;
  position: relative; overflow: hidden;
  transition: transform .15s, border-color .15s;
}
.vb-stat:hover { transform: translateY(-2px); border-color: var(--line-med); }
.vb-stat-lbl {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3);
}
.vb-stat-val {
  font-weight: 900; font-size: 36px; line-height: 1;
  letter-spacing: -0.03em; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.vb-stat-delta { font-family: var(--mono); font-size: 11px; color: var(--sage); }

/* ── MAIN LAYOUT ── */
.vb-main { max-width: 1280px; margin: 0 auto; padding: 32px 32px 60px; }
.vb-section + .vb-section { margin-top: 52px; }

.vb-sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 24px; gap: 24px;
}
.vb-sec-eye {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 8px;
}
.vb-sec-eye::before { content: ""; width: 22px; height: 1px; background: var(--coral); }
.vb-sec-title { font-weight: 900; font-size: 44px; letter-spacing: -0.035em; line-height: 1; }
.vb-sec-title em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--coral); }
.vb-sec-side { display: flex; align-items: center; gap: 12px; }
.vb-sec-side .count {
  font-family: var(--mono); font-size: 11px; color: var(--ink-3);
  background: var(--bg-card); border: 1px solid var(--line-soft);
  padding: 5px 10px; border-radius: 999px;
}
.vb-sec-side a { font-size: 14px; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 4px; }
.vb-sec-side a:hover { color: var(--coral); }

/* ── UPCOMING CARDS ── */
.vb-up-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.vb-up {
  background: var(--bg-card); border: 1px solid var(--line-soft);
  border-radius: 22px; padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.vb-up:hover { transform: translateY(-3px); border-color: var(--line-med); box-shadow: 0 10px 30px rgba(11,19,32,0.06); }
.vb-up.featured { background: var(--ink); color: #fff; border-color: var(--ink); }

.vb-up-tag-row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3);
}
.vb-up.featured .vb-up-tag-row { color: rgba(255,255,255,0.55); }
.vb-up-tag-row .pill {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px; letter-spacing: 0.12em;
}
.vb-up-tag-row .pill.next { background: var(--coral); color: #fff; }
.vb-up-tag-row .pill.open { background: var(--bg-mint); color: var(--sage); }

.vb-up-title { font-weight: 900; font-size: 26px; letter-spacing: -0.025em; line-height: 1.1; }
.vb-up.featured .vb-up-title { font-size: 32px; }
.vb-up-date { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--ink-2); }
.vb-up.featured .vb-up-date { color: rgba(255,255,255,0.7); }

.vb-up-cd { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.vb-up-cd-cell {
  background: var(--bg); border-radius: 10px; padding: 10px 4px;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.vb-up.featured .vb-up-cd-cell { background: rgba(255,255,255,0.08); }
.vb-up-cd-n { font-weight: 900; font-size: 26px; line-height: 1; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.vb-up.featured .vb-up-cd-n { color: var(--sunny); }
.vb-up-cd-l { font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.vb-up.featured .vb-up-cd-l { color: rgba(255,255,255,0.45); }

.vb-up-pool { display: flex; flex-wrap: wrap; gap: 4px; }
.vb-up-pool span { font-family: var(--mono); font-size: 10px; padding: 3px 8px; background: var(--bg); border-radius: 999px; color: var(--ink-2); }
.vb-up.featured .vb-up-pool span { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); }

.vb-up-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; padding-top: 4px; }
.vb-up-meta-cell { display: flex; flex-direction: column; gap: 2px; }
.vb-up-meta-k { font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.vb-up.featured .vb-up-meta-k { color: rgba(255,255,255,0.45); }
.vb-up-meta-v { font-weight: 700; font-size: 13px; color: var(--ink); }
.vb-up.featured .vb-up-meta-v { color: #fff; }
.vb-up-meta-v.warn { color: var(--coral); }

.vb-up-fill { height: 6px; border-radius: 999px; background: var(--bg); overflow: hidden; }
.vb-up.featured .vb-up-fill { background: rgba(255,255,255,0.1); }
.vb-up-fill-bar { height: 100%; background: var(--sage); border-radius: 999px; transition: width .4s; }
.vb-up-fill-bar.warn { background: var(--coral); }
.vb-up-maps { display: flex; flex-direction: column; gap: 8px; }
.vb-up-map-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.vb-up-map-chip {
  display: inline-flex; align-items: center;
  background: var(--bg-cream); border: 1px solid var(--line-soft);
  border-radius: 8px; padding: 4px 10px;
  font-size: 13px; font-weight: 700; color: var(--ink);
}
.vb-up.featured .vb-up-map-chip {
  background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); color: #fff;
}

.vb-up-btn {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: center;
  background: transparent; color: var(--ink);
  font-size: 14px; font-weight: 600;
  padding: 12px 16px; border-radius: 999px;
  border: 1px solid var(--line-med); cursor: pointer;
  transition: background .12s, color .12s, border-color .12s;
}
.vb-up-btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.vb-up.featured .vb-up-btn { background: var(--coral); color: #fff; border-color: var(--coral); }
.vb-up.featured .vb-up-btn:hover { background: var(--coral-2); border-color: var(--coral-2); }
.vb-up-btn .arr { font-family: var(--serif); font-style: italic; }

/* ── UPCOMING EMPTY STATE ── */
.vb-up.vb-up-holdup {
  grid-column: 1 / -1;
  background: var(--bg-card);
  border: 2px dashed var(--line-med);
  border-radius: 22px;
  padding: 0;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.vb-up.vb-up-holdup:hover {
  transform: none;
  border-color: var(--coral);
  box-shadow: 0 8px 32px rgba(255,106,61,.08);
}
.vb-up-holdup-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 16px;
  padding: 52px 32px;
}
.vb-up-holdup-eye {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--coral);
}
.vb-up-holdup-title {
  font-size: 48px; font-weight: 900; letter-spacing: -0.03em; line-height: 1;
  color: var(--ink);
}
.vb-up-holdup-title em { color: var(--coral); font-style: normal; }
.vb-up-holdup-sub {
  max-width: 420px; font-size: 15px; line-height: 1.55;
  color: var(--ink-2); margin: 0;
}
.vb-up-holdup-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px;
  background: #5865f2; color: #fff;
  font-size: 14px; font-weight: 600;
  padding: 12px 24px; border-radius: 999px;
  text-decoration: none; transition: background .15s, transform .15s;
}
.vb-up-holdup-btn:hover { background: #4752c4; transform: translateY(-2px); }

/* ── WALL OF FAME ── */
.vb-wof { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }

.vb-wof-tabs {
  display: flex; flex-direction: column;
  border-left: 1px solid var(--line-soft);
  max-height: calc(100vh - 120px); overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: var(--line-med) transparent;
  padding-right: 6px;
}
.vb-wof-tabs::-webkit-scrollbar { width: 6px; }
.vb-wof-tabs::-webkit-scrollbar-track { background: transparent; }
.vb-wof-tabs::-webkit-scrollbar-thumb { background: var(--line-soft); border-radius: 999px; }
.vb-wof-tabs::-webkit-scrollbar-thumb:hover { background: var(--line-med); }

.vb-wof-tab {
  display: flex; flex-direction: column;
  padding: 16px 0 16px 20px;
  text-align: left; background: transparent; border: none; cursor: pointer;
  position: relative; border-bottom: 1px solid var(--line-soft); font-family: inherit;
}
.vb-wof-tab:last-child { border-bottom: none; }
.vb-wof-tab::before {
  content: ""; position: absolute; top: 14px; bottom: 14px; left: -1px; width: 2px;
  background: transparent; border-radius: 2px; transition: background .15s;
}
.vb-wof-tab:hover::before { background: var(--line-med); }
.vb-wof-tab.active::before { background: var(--coral); }
.vb-wof-tab-n { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px; }
.vb-wof-tab.active .vb-wof-tab-n { color: var(--coral); }
.vb-wof-tab-t { font-weight: 800; font-size: 20px; letter-spacing: -0.025em; color: var(--ink-2); line-height: 1.15; }
.vb-wof-tab.active .vb-wof-tab-t { color: var(--ink); }
.vb-wof-tab-sub { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--ink-3); margin-top: 2px; }

.vb-wof-feature-wrap { min-width: 0; }

.vb-wof-feature {
  position: sticky; top: 92px; align-self: start;
  display: flex; flex-direction: column;
  border: 1px solid var(--line-soft); border-radius: 24px; overflow: hidden;
  background: var(--ink); color: #fff;
}
.vb-wof-feature::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 80%;
  background-image: var(--map-img);
  background-size: cover; background-position: center;
  filter: saturate(0.6) contrast(1.05) brightness(0.7);
  opacity: 0.9; pointer-events: none;
}
.vb-wof-feature::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 80%;
  background: linear-gradient(180deg, rgba(11,19,32,0.72) 0%, rgba(11,19,32,0.55) 35%, rgba(11,19,32,0.75) 70%, rgba(11,19,32,0.92) 100%);
  pointer-events: none;
}
.vb-wof-feature > * { position: relative; z-index: 1; }

.vb-wof-banner {
  position: relative; padding: 32px 36px 24px; color: #fff;
  min-height: 200px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.vb-wof-fc-pill {
  position: absolute; top: 18px; right: 22px;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; background: var(--coral);
  padding: 6px 12px; border-radius: 999px;
  transition: background .12s, transform .12s;
}
.vb-wof-fc-pill:hover { background: var(--coral-2); transform: translateY(-1px); }
.vb-wof-team { display: flex; flex-direction: column; gap: 6px; }
.vb-wof-team.r { align-items: flex-end; text-align: right; }
.vb-wof-team-lbl { font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral); }
.vb-wof-team.r .vb-wof-team-lbl { color: rgba(255,255,255,0.45); }
.vb-wof-team-name { font-weight: 900; font-size: 28px; letter-spacing: -0.03em; line-height: 1.05; color: #fff; }
.vb-wof-team.r .vb-wof-team-name { color: rgba(255,255,255,0.55); }
.vb-wof-score {
  display: flex; align-items: baseline; gap: 4px;
  font-weight: 900; font-size: 72px; line-height: 1; letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}
.vb-wof-score .sw { color: #fff; }
.vb-wof-score .sc { color: var(--coral); font-family: var(--serif); font-style: italic; font-weight: 500; }
.vb-wof-score .sl { color: rgba(255,255,255,0.35); }

.vb-wof-meta-row {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
  padding: 18px 22px; background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.1); position: relative;
}
.vb-wof-meta-row::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(11,19,32,0.06) 1px, transparent 1px);
  background-size: 16px 16px; pointer-events: none; opacity: .6;
  mask-image: linear-gradient(180deg, transparent, black 50%, transparent);
}
.vb-wof-meta-cell {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 14px 14px 12px;
  display: flex; flex-direction: column; gap: 4px; overflow: hidden;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.vb-wof-meta-cell:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.22); box-shadow: 0 6px 18px rgba(0,0,0,0.25); }
.vb-wof-meta-cell > * { position: relative; z-index: 1; }
.vb-wof-meta-cell .k { font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; }
.vb-wof-meta-cell .v { font-weight: 900; font-size: 22px; line-height: 1; letter-spacing: -0.03em; color: #fff; font-variant-numeric: tabular-nums; margin-top: 2px; }
.vb-wof-meta-cell .v em { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 16px; color: #fff; padding-left: 2px; }
.vb-wof-meta-cell.t-aces .v em { color: #fff; }
.vb-ace-cell-btn { cursor: pointer; }
.vb-ace-meta-icon { width: 14px; height: 14px; vertical-align: middle; }
.vb-wof-meta-cell .d { font-family: var(--serif); font-style: italic; font-size: 11px; line-height: 1.3; color: #fff; margin-top: 3px; }
.vb-wof-meta-cell .d em { font-family: var(--mono); font-style: normal; font-weight: 500; color: #fff; font-size: 10px; }
.vb-wof-meta-cell.t-map .v { font-size: 18px; letter-spacing: -0.02em; padding-top: 3px; }

.vb-wof-rosters {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--bg-card); color: var(--ink);
}
.vb-wof-roster { padding: 16px 22px 18px; }
.vb-wof-roster + .vb-wof-roster { border-left: 1px solid var(--line-soft); }

.vb-roster-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px; font-weight: 800; font-size: 13px; letter-spacing: -0.01em;
}
.vb-roster-head .tag { font-family: var(--mono); font-size: 9px; font-weight: 600; padding: 2px 7px; border-radius: 999px; letter-spacing: 0.12em; text-transform: uppercase; }
.vb-roster-head .tag.win  { background: var(--coral); color: #fff; }
.vb-roster-head .tag.lose { background: var(--bg); color: var(--ink-3); }

.vb-tbl { width: 100%; border-collapse: collapse; font-size: 12px; }
.vb-tbl th {
  text-align: right; padding: 4px;
  font-family: var(--mono); font-size: 9px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3);
  border-bottom: 1px solid var(--line-soft);
}
.vb-tbl th:first-child { text-align: left; }
.vb-tbl td {
  text-align: right; padding: 5px 4px;
  border-bottom: 1px dashed var(--line-soft);
  font-variant-numeric: tabular-nums; line-height: 1.2;
}
.vb-tbl td:first-child { text-align: left; font-weight: 600; }
.vb-tbl tr:last-child td { border-bottom: none; }
.vb-tbl td:first-child > span { display: inline-flex; align-items: center; gap: 6px; }
.vb-wof-nick { color: inherit; text-decoration: none; }
.vb-wof-nick:hover { text-decoration: underline; text-underline-offset: 2px; }

/* ── UTILITY / SHARED ── */
.vb-flag  { width: 14px; height: 11px; object-fit: cover; border-radius: 2px; }
.vb-lvl   { width: 16px; height: 16px; }
.vb-star  { color: var(--coral); }
.vb-ace   { display: inline-flex; align-items: center; gap: 2px; vertical-align: middle; }
.vb-ace img { width: 16px; height: 16px; display: block; }
.vb-ace b { font-family: var(--mono); font-size: 10px; font-weight: 700; color: var(--sunny-2); }
.vb-deleted { text-decoration: line-through; color: var(--ink-3); }
.kd-high { color: var(--coral); font-weight: 700; }
.kd-low  { color: var(--ink-3); }
.muted   { color: var(--ink-3); }

/* ── TOP PLAYERS ── */
.vb-top-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; align-items: center; }
.vb-top-chip {
  background: var(--bg-card); border: 1px solid var(--line-soft);
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  cursor: pointer; transition: background .12s, color .12s, border-color .12s;
}
.vb-top-chip:hover { background: var(--bg-cream); }
.vb-top-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.vb-top-chip-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-right: 6px; align-self: center; }

.vb-top-list { background: var(--bg-card); border: 1px solid var(--line-soft); border-radius: 18px; overflow: hidden; }
.vb-top-row {
  display: grid;
  grid-template-columns: 60px 1fr 90px 80px 80px 60px 60px;
  align-items: center; gap: 8px; padding: 14px 20px;
  border-bottom: 1px solid var(--line-soft); transition: background .12s;
}
.vb-top-row:hover { background: var(--bg); }
.vb-top-row:last-child { border-bottom: none; }
.vb-top-row.head {
  background: var(--bg-cream);
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3);
  padding-top: 10px; padding-bottom: 10px;
}
.vb-top-row.head:hover { background: var(--bg-cream); }
.vb-top-rank {
  font-weight: 900; font-size: 20px; letter-spacing: -0.03em;
  width: 44px; height: 44px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg); color: var(--ink-3);
}
.vb-top-rank.r1 { background: #E8A020; color: #fff; }
.vb-top-rank.r2 { background: #9EA8B3; color: #fff; }
.vb-top-rank.r3 { background: #A0714F; color: #fff; }
.vb-top-name { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; }
.vb-top-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.vb-steam-link { display: inline-flex; align-items: center; opacity: 0.45; transition: opacity .15s; }
.vb-steam-link:hover { opacity: 1; }
.vb-steam-icon { width: 14px; height: 14px; display: block; }
.vb-top-num { text-align: right; font-weight: 600; font-variant-numeric: tabular-nums; }
.vb-top-num.kd-high { color: var(--coral); font-weight: 700; }
.vb-top-num.muted { color: var(--ink-3); }
.vb-top-foot {
  background: var(--bg); padding: 14px 20px;
  font-family: var(--mono); font-size: 12px; color: var(--ink-3);
  display: flex; justify-content: space-between;
}
.vb-top-foot a { color: var(--ink); border-bottom: 1px dashed var(--line-med); padding-bottom: 1px; }
.vb-top-foot a:hover { color: var(--coral); border-bottom-color: var(--coral); }

/* ── FOOTER ── */
.vb-foot {
  margin: 0 32px 32px;
  background: var(--ink); color: rgba(255,255,255,0.85);
  border-radius: 28px; padding: 36px 40px;
  display: flex; flex-direction: column; gap: 28px;
  box-sizing: border-box;
}
@media (min-width: 1344px) {
  .vb-foot {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}
.vb-foot-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; }
.vb-foot-title { font-weight: 900; font-size: 32px; letter-spacing: -0.025em; line-height: 1.05; }
.vb-foot-title em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--sunny); }
.vb-foot-sub { color: rgba(255,255,255,0.4); font-size: 13px; margin-top: 8px; max-width: 480px; line-height: 1.5; }
.vb-foot-discord-btn {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
  padding: 10px 18px; font-size: 14px; font-weight: 600; transition: background .15s, color .15s;
}
.vb-foot-discord-btn:hover { background: #5865F2; color: #fff; border-color: #5865F2; }
.vb-foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; gap: 16px;
}
.vb-foot-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.vb-foot-nav a { color: rgba(255,255,255,0.5); font-size: 13px; transition: color .15s; }
.vb-foot-nav a:hover { color: var(--sunny); }
.vb-foot-meta { display: flex; gap: 16px; font-size: 13px; color: rgba(255,255,255,0.5); align-items: center; }
.vb-foot-meta a { color: rgba(255,255,255,0.5); transition: color .15s; }
.vb-foot-meta a:hover { color: var(--sunny); }
.vb-foot-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ── MODALS (data_fetch.js) ── */
.ace-modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(11,19,32,0.7); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.ace-modal-overlay.flex-show { display: flex; }
.ace-modal-box {
  background: var(--bg-card); border: 1px solid var(--line-soft);
  border-top: 3px solid var(--coral);
  border-radius: 18px; width: 100%; max-width: 420px;
  box-shadow: 0 24px 80px rgba(11,19,32,0.25);
  animation: vbSlideUp .2s ease;
}
@keyframes vbSlideUp { from { transform: translateY(12px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.ace-modal-hdr {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 20px 14px; border-bottom: 1px solid var(--line-soft);
  font-weight: 800; font-size: 15px; color: var(--ink);
}
.ace-modal-close {
  margin-left: auto; background: none; border: none; color: var(--ink-3);
  font-size: 18px; cursor: pointer; line-height: 1; padding: 2px 6px;
  border-radius: 8px; transition: all .12s;
}
.ace-modal-close:hover { color: var(--ink); background: var(--bg); }
.ace-modal-body { padding: 12px 20px 14px; display: flex; flex-direction: column; gap: 10px; }
.ace-modal-row { display: flex; flex-direction: column; gap: 6px; padding: 8px 0; border-bottom: 1px solid var(--line-soft); }
.ace-modal-row:last-child { border-bottom: none; padding-bottom: 0; }
.ace-modal-player { display: flex; align-items: center; gap: 6px; }
.ace-modal-nick { font-size: 13px; font-weight: 700; color: var(--ink); text-decoration: none; }
.ace-modal-nick:hover { color: var(--coral); }
.ace-modal-icon { width: 18px; height: 18px; vertical-align: middle; }
.ace-modal-matches { display: flex; flex-wrap: wrap; gap: 6px; }
.ace-match-link-btn {
  font-size: 11px; font-weight: 600; color: var(--coral);
  background: var(--bg-rose); border: 1px solid rgba(255,106,61,0.2);
  border-radius: 6px; padding: 3px 10px; text-decoration: none; transition: all .12s;
}
.ace-match-link-btn:hover { background: rgba(255,106,61,0.15); border-color: var(--coral); }

/* ── WOF Ace Modal ── */
.wof-am-box {
  background: var(--bg-card); border-radius: 24px;
  border: 1px solid var(--line-soft);
  box-shadow: 0 32px 80px rgba(11,19,32,0.28);
  width: 100%; max-width: 440px;
  animation: vbSlideUp .22s cubic-bezier(.16,1,.3,1);
  overflow: hidden;
}
.wof-am-hdr {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 22px 22px 20px;
  background: var(--ink);
  gap: 16px;
}
.wof-am-hdr-left { display: flex; align-items: center; gap: 14px; }
.wof-am-hdr-icon { width: 36px; height: 36px; flex-shrink: 0; filter: brightness(0) invert(1); opacity: .9; }
.wof-am-hdr-title {
  font-weight: 900; font-size: 20px; color: #fff;
  letter-spacing: -0.03em; line-height: 1;
}
.wof-am-hdr-sub {
  font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px;
}
.wof-am-close {
  background: rgba(255,255,255,0.1); border: none; color: rgba(255,255,255,0.6);
  font-size: 18px; cursor: pointer; line-height: 1;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s; flex-shrink: 0;
}
.wof-am-close:hover { background: rgba(255,255,255,0.2); color: #fff; }
.wof-am-body { padding: 6px 0 8px; display: flex; flex-direction: column; }
.wof-am-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px; gap: 12px;
  border-bottom: 1px solid var(--line-soft);
  transition: background .12s;
}
.wof-am-row:last-child { border-bottom: none; }
.wof-am-row:hover { background: var(--bg); }
.wof-am-left { display: flex; align-items: center; gap: 8px; min-width: 0; }
.wof-am-nick {
  font-weight: 700; font-size: 14px; color: var(--ink);
  text-decoration: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wof-am-nick:hover { color: var(--coral); text-decoration: underline; text-underline-offset: 2px; }
.wof-am-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.wof-am-count {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg); border: 1px solid var(--line-soft);
  border-radius: 10px; padding: 4px 10px 4px 12px;
  font-weight: 900; font-size: 18px; color: var(--ink); letter-spacing: -0.02em;
}
.wof-am-icon { width: 16px; height: 16px; flex-shrink: 0; }
.wof-am-links { display: flex; flex-wrap: wrap; gap: 5px; justify-content: flex-end; }
.wof-am-link {
  font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--coral); background: var(--bg-rose);
  border: 1px solid rgba(255,106,61,0.2); border-radius: 6px;
  padding: 3px 9px; text-decoration: none; transition: all .12s; white-space: nowrap;
}
.wof-am-link:hover { background: rgba(255,106,61,0.15); border-color: var(--coral); }

/* data_fetch.js inline ace/teams modals */
.ace-modal {
  background: var(--bg-card); border: 1px solid var(--line-soft);
  border-top: 3px solid var(--coral);
  border-radius: 18px; min-width: 280px; max-width: 440px; width: 100%;
  box-shadow: 0 24px 80px rgba(11,19,32,0.2);
  animation: vbSlideUp .2s ease;
}
.ace-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px 14px; border-bottom: 1px solid var(--line-soft);
}
.ace-modal-title { font-weight: 800; font-size: 16px; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.ace-modal-footer { padding: 0 20px 16px; }
.ts-ace-header { display: grid; grid-template-columns: 1fr 60px; padding: 4px 0; border-bottom: 1px solid var(--line-soft); margin-bottom: 4px; }
.ts-ah-nick { font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.ts-ah-stat { font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); text-align: right; }
.ts-ace-rows { display: flex; flex-direction: column; }
.ts-ace-row { display: grid; grid-template-columns: 1fr 60px; padding: 5px 0; border-radius: 4px; align-items: center; transition: background .1s; }
.ts-ace-row:hover { background: var(--bg); }
.ts-ar-nick { display: flex; align-items: center; gap: 6px; min-width: 0; overflow: hidden; }
.ts-ar-count { font-size: 14px; font-weight: 700; color: var(--sunny-2); text-align: right; white-space: nowrap; display: flex; align-items: center; justify-content: flex-end; gap: 5px; }
.ts-ar-count-btn { cursor: pointer; background: none; border: none; border-radius: 4px; padding: 2px 7px; transition: all .15s; }
.ts-ar-count-btn:hover { background: var(--bg-cream); }
.ts-ar-count-btn::after { content: ' ↗'; font-size: 10px; opacity: .6; }
.ace-modal-header-left { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.ace-modal-back { background: none; border: none; color: var(--coral); cursor: pointer; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 0; text-align: left; transition: opacity .12s; }
.ace-modal-back:hover { opacity: .7; }
.ace-modal-title-sm { font-size: 16px; display: flex; align-items: center; gap: 6px; }
.ace-match-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--line-soft); text-decoration: none; transition: background .1s; border-radius: 4px; }
.ace-match-row:last-child { border-bottom: none; }
.ace-match-row:hover { background: var(--bg); }
.ace-match-icon { flex-shrink: 0; }
.ace-match-label { flex: 1; font-size: 13px; font-weight: 600; color: var(--ink); }
.ace-match-link { font-size: 11px; color: var(--coral); white-space: nowrap; }
.ts-ace-icon { width: 14px; height: 14px; object-fit: contain; vertical-align: middle; }

/* teams modal */
.teams-modal-count { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
.teams-modal-list { display: flex; flex-direction: column; gap: 3px; max-height: 360px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--line-med) transparent; }
.teams-modal-list::-webkit-scrollbar { width: 3px; }
.teams-modal-list::-webkit-scrollbar-thumb { background: var(--line-soft); border-radius: 2px; }
.teams-modal-row { display: flex; align-items: center; gap: 10px; padding: 7px 10px; border-radius: 8px; background: var(--bg); transition: background .1s; }
.teams-modal-row:hover { background: var(--bg-cream); }
.teams-modal-avatar { width: 28px; height: 28px; border-radius: 6px; object-fit: cover; flex-shrink: 0; background: var(--line-soft); }
.teams-modal-avatar-placeholder { width: 28px; height: 28px; border-radius: 6px; background: var(--line-soft); flex-shrink: 0; }
.teams-modal-name { font-size: 13px; font-weight: 600; color: var(--ink); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.teams-modal-name a { color: var(--ink); text-decoration: none; }
.teams-modal-name a:hover { color: var(--coral); }
.teams-modal-lvl { flex-shrink: 0; display: flex; align-items: center; }
.teams-modal-signup {
  display: block; margin-top: 14px; text-align: center; text-decoration: none;
  font-size: 13px; font-weight: 700; padding: 10px 20px;
  background: var(--coral); color: #fff; border-radius: 999px; transition: all .15s;
}
.teams-modal-signup:hover { background: var(--coral-2); transform: translateY(-1px); }

/* roster rows (used by data_fetch.js renderRoster inside hidden #history-cards) */
.roster-loading { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); padding: 8px 0; }
.roster-table { width: 100%; display: flex; flex-direction: column; padding-bottom: 8px; }
.roster-header { display: grid; grid-template-columns: 1fr 24px 24px 24px 42px 34px; padding: 5px 0 4px; border-bottom: 1px solid var(--line-soft); margin-bottom: 2px; }
.rh-nick { font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.rh-stat { font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); text-align: right; cursor: pointer; user-select: none; }
.rh-stat:hover { color: var(--ink); }
.rh-sort-active { color: var(--coral) !important; }
.rh-gap { padding-left: 14px; }
.roster-row { display: grid; grid-template-columns: 1fr 24px 24px 24px 42px 34px; padding: 4px 0; border-radius: 4px; transition: background .1s; border-bottom: 1px solid var(--line-soft); }
.roster-row:last-child { border-bottom: none; }
.roster-row:hover { background: var(--bg); }
.roster-row-top { background: var(--bg-rose); }
.roster-row-top:hover { background: rgba(255,106,61,0.08); }
.rr-nick { display: flex; align-items: center; gap: 4px; min-width: 0; overflow: hidden; }
.rr-flag-img { width: 14px; height: 11px; object-fit: cover; border-radius: 1px; }
.rr-nick-inner { display: flex; flex-direction: column; gap: 2px; min-width: 0; overflow: hidden; }
.rr-nick-top { display: flex; align-items: center; gap: 4px; min-width: 0; overflow: hidden; }
.rr-nick-link { font-size: 12px; font-weight: 600; color: var(--ink-2); text-decoration: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color .12s; }
.rr-nick-link:hover { color: var(--coral); }
.roster-row-top .rr-nick-link { color: var(--coral); }
.rr-bar-wrap { height: 2px; background: var(--line-soft); border-radius: 1px; overflow: hidden; }
.rr-bar { height: 100%; background: var(--line-med); border-radius: 1px; transition: width .5s ease; }
.rr-bar-top { background: var(--coral); }
.rr-lvl { display: inline-flex; align-items: center; flex-shrink: 0; }
.rr-lvl-icon { width: 16px; height: 16px; object-fit: contain; }
.rr-mvp { font-size: 10px; flex-shrink: 0; color: var(--sunny-2); line-height: 1; }
.rr-mvp-slot { display: inline-flex; align-items: center; justify-content: center; width: 14px; height: 16px; flex-shrink: 0; }
.rr-flag { display: inline-flex; align-items: center; flex-shrink: 0; }
.rr-k, .rr-a, .rr-d, .rr-kd, .rr-hs { font-size: 11px; font-weight: 700; text-align: right; color: var(--ink-3); }
.rr-k-win { color: var(--coral); }
.rr-kd-win { color: var(--coral); }
.rr-gap { margin-left: 8px; }

/* ── ANIMATIONS ── */
@keyframes vbFade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.vb-fadein { animation: vbFade .35s ease both; }


/* ── MOBIL NAVIGATION (skjult som default, vises i media query) ── */
.vb-mobile-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: var(--bg-card);
  border-top: 1px solid var(--line-soft);
  box-shadow: 0 -2px 16px rgba(11,19,32,0.08);
  padding: 6px 0 env(safe-area-inset-bottom, 10px);
}
.vb-mobile-nav a {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 5px 4px; font-family: var(--mono);
  font-size: 9px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3); text-decoration: none; transition: color .12s;
  min-height: 44px; justify-content: center;
}
.vb-mobile-nav a:hover,
.vb-mobile-nav a.is-active { color: var(--coral); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .vb-stats { grid-template-columns: repeat(3, 1fr); }
  .vb-up-grid { grid-template-columns: repeat(2, 1fr); }
  .vb-wof { grid-template-columns: 220px 1fr; }
  .vb-wof-meta-row { grid-template-columns: repeat(3, 1fr); }
}

/* ── TABLET (≤860px) ── */
@media (max-width: 860px) {
  /* Header */
  .vb-hdr { padding: 10px 16px; }
  .vb-nav { display: none; }
  .vb-soc { display: none; }

  /* Hero */
  .vb-hero { padding: 10px 10px 0; }
  .vb-hero-inner { padding: 40px 28px 36px; min-height: auto; border-radius: 24px; }
  .vb-title { font-size: clamp(42px, 9vw, 68px); }

  /* Stats */
  .vb-stats { margin: 0 10px; grid-template-columns: repeat(3, 1fr); gap: 8px; }

  /* Layout */
  .vb-main { padding: 28px 10px 40px; }
  .vb-section + .vb-section { margin-top: 48px; }
  .vb-sec-title { font-size: 34px; }
  .vb-up-grid { grid-template-columns: 1fr; }

  /* WOF */
  .vb-wof { grid-template-columns: 1fr; }
  .vb-wof-tabs {
    flex-direction: row; overflow-x: auto; max-height: none;
    border-left: none; border-bottom: 1px solid var(--line-soft);
    scrollbar-width: none;
  }
  .vb-wof-tabs::-webkit-scrollbar { display: none; }
  .vb-wof-tab {
    padding: 12px 16px; border-bottom: none;
    border-right: 1px solid var(--line-soft);
    min-width: 140px; flex-shrink: 0;
  }
  .vb-wof-tab::before { top: auto; bottom: -1px; left: 12px; right: 12px; width: auto; height: 2px; }
  .vb-wof-feature { position: static; }
  .vb-wof-banner { grid-template-columns: 1fr; min-height: auto; padding: 24px; gap: 12px; }
  .vb-wof-team.r { align-items: flex-start; text-align: left; }
  .vb-wof-score { font-size: 48px; }
  .vb-wof-rosters { grid-template-columns: 1fr; }
  .vb-wof-roster + .vb-wof-roster { border-left: none; border-top: 1px solid var(--line-soft); }
  .vb-wof-meta-row { grid-template-columns: repeat(3, 1fr); }

  /* Top spillere */
  .vb-top-row { grid-template-columns: 40px 1fr 70px 60px; }
  .vb-top-row > span:nth-child(n+5) { display: none; }
  .vb-top-row.head > span:nth-child(n+5) { display: none; }

  /* Footer */
  .vb-foot { margin: 0 10px 10px; }
  .vb-foot-top { flex-direction: column; gap: 16px; }
  .vb-foot-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Mobil nav */
  .vb-mobile-nav { display: flex; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
}

/* ── MOBIL (≤580px) ── */
@media (max-width: 580px) {
  /* Header */
  .vb-hdr { padding: 8px 12px; height: 58px; }
  .vb-logo span { font-size: 16px; }
  .vb-cta { font-size: 12px; padding: 8px 14px; }

  /* Hero */
  .vb-hero { padding: 8px 8px 0; }
  .vb-hero-inner { padding: 28px 20px 28px; border-radius: 18px; }
  .vb-title { font-size: clamp(32px, 11vw, 48px); margin: 10px 0; }
  .vb-lede { font-size: 14px; margin-bottom: 20px; }
  .vb-hrow { flex-direction: column; gap: 8px; }
  .vb-btn-primary, .vb-btn-ghost { width: 100%; padding: 13px 20px; font-size: 14px; text-align: center; }

  /* Stats */
  .vb-stats { grid-template-columns: repeat(2, 1fr); gap: 6px; margin: 0 8px; }
  .vb-stat { padding: 14px 14px; }
  .vb-stat-val { font-size: 26px; }

  /* Layout */
  .vb-main { padding: 20px 8px 20px; }
  .vb-section + .vb-section { margin-top: 36px; }
  .vb-sec-head { flex-direction: column; align-items: flex-start; gap: 4px; margin-bottom: 14px; }
  .vb-sec-title { font-size: 26px; }
  .vb-sec-side { display: none; }

  /* WOF */
  .vb-wof-meta-row { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 14px 14px; }
  .vb-wof-meta-cell { padding: 12px 12px 10px; }
  .vb-wof-meta-cell .v { font-size: 22px; }
  .vb-wof-score { font-size: 38px; }
  .vb-wof-team-name { font-size: 18px; }
  .vb-wof-fc-pill { font-size: 9px; padding: 4px 10px; }
  .vb-tbl th, .vb-tbl td { padding: 8px 6px; font-size: 11px; }

  /* Top spillere */
  .vb-top-row { grid-template-columns: 32px 1fr 58px 50px; padding: 8px 8px; gap: 6px; }
  .vb-top-rank { width: 28px; height: 28px; font-size: 13px; border-radius: 8px; }
  .vb-top-name { font-size: 12px; gap: 4px; }
  .vb-top-num { font-size: 13px; }
  .vb-top-avatar { width: 24px; height: 24px; }

  /* Footer */
  .vb-foot { margin: 0 8px 8px; padding: 20px 16px; border-radius: 16px; }
  .vb-foot-title { font-size: 20px; }
  .vb-foot-discord-btn { font-size: 13px; padding: 10px 16px; }
  .vb-foot-nav { gap: 10px; flex-wrap: wrap; font-size: 13px; }
  .vb-foot-copy { display: none; }
}

/* ── LILLE MOBIL (≤390px) ── */
@media (max-width: 390px) {
  .vb-stats { grid-template-columns: 1fr 1fr; }
  .vb-stat-val { font-size: 22px; }
  .vb-wof-meta-row { grid-template-columns: repeat(2, 1fr); }
}



