/* Gaming.vn — Layout-specific CSS */

/* ====== TOP BAR ====== */
.topbar {
  background: #000;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 11px;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 32px;
}
.topbar .date { color: var(--ink-3); }
.topbar .socials { display: flex; align-items: center; gap: 14px; }
.topbar .socials a { color: var(--ink-3); }
.topbar .socials a:hover { color: var(--accent); }
.ticker {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink-2);
  overflow: hidden;
  max-width: 60%;
}
.ticker .tag {
  background: var(--neon-red); color: #fff;
  padding: 2px 8px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.ticker-track {
  display: flex; gap: 28px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}
.ticker-track span { color: var(--ink-2); }
.ticker-track b { color: var(--accent-2); margin-right: 6px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ====== HEADER ====== */
.header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(10,10,18,0.92);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.logo {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 1px;
  line-height: 1;
}
.logo .dot { color: var(--accent); }
.logo .tld {
  font-size: 14px;
  color: var(--ink-3);
  font-weight: 600;
  margin-left: 2px;
}
.logo-mark {
  width: 32px; height: 32px;
  background: var(--accent);
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
  margin-right: 10px;
  position: relative;
}
.logo-mark::after {
  content: ''; position: absolute; inset: 5px;
  background: #000;
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
}
.logo-mark::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 8px; height: 8px;
  background: var(--accent-2);
  border-radius: 50%;
}

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 8px 14px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  position: relative;
  transition: color 0.15s;
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a.active::after {
  content: ''; position: absolute;
  left: 14px; right: 14px; bottom: -26px; height: 2px;
  background: var(--accent);
}
.nav .has-badge { position: relative; }
.nav .has-badge::before {
  content: 'LIVE';
  position: absolute; top: -4px; right: -2px;
  background: var(--neon-red); color: #fff;
  font-family: var(--f-mono); font-size: 8px; font-weight: 700;
  padding: 1px 4px;
  letter-spacing: 0.1em;
}

.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-2); border-radius: 4px;
}
.icon-btn:hover { background: var(--bg-3); color: var(--ink); }
.btn-primary {
  height: 36px; padding: 0 16px;
  background: var(--accent); color: #000;
  font-family: var(--f-head); font-weight: 700;
  font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 3px;
}
.btn-primary:hover { filter: brightness(1.1); }
.btn-ghost {
  height: 36px; padding: 0 14px;
  border: 1px solid var(--line-2);
  font-family: var(--f-head); font-weight: 600;
  font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 3px;
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ====== MATCH STRIP ====== */
.match-strip {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.match-strip-inner {
  display: flex; align-items: stretch;
  height: 62px;
  gap: 0;
}
.strip-label {
  display: flex; align-items: center; gap: 10px;
  padding: 0 20px 0 0;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-right: 1px solid var(--line);
  color: var(--ink);
  flex-shrink: 0;
}
.strip-label .bar { width: 3px; height: 20px; background: var(--accent); }
.match-rail {
  display: flex; gap: 0; overflow-x: auto; flex: 1;
  scrollbar-width: none;
}
.match-rail::-webkit-scrollbar { display: none; }
.match-card {
  flex-shrink: 0;
  min-width: 280px;
  padding: 10px 20px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: background 0.15s;
}
.match-card:hover { background: var(--bg-3); }
.match-meta {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
}
.match-meta .live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--neon-red);
  animation: pulse 1.2s infinite;
}
.match-meta .status { color: var(--neon-red); font-weight: 700; }
.match-meta .status.upcoming { color: var(--ink-2); }
.match-teams { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.match-team { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
.match-team .logo-sq {
  width: 22px; height: 22px;
  background: var(--bg-4);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-weight: 800; font-size: 11px;
  color: var(--ink);
  flex-shrink: 0;
}
.match-team .name {
  font-family: var(--f-head); font-weight: 600; font-size: 14px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.match-score {
  font-family: var(--f-head); font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  padding: 0 6px;
}
.match-score.win { color: var(--neon-green); }
.match-score.loss { color: var(--ink-4); }

/* ====== HERO MOSAIC ====== */
.hero {
  padding: var(--gap-lg) 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--gap);
}
.hero-main {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}
.hero-main:hover .hero-title { color: var(--accent); }
.hero-side { display: grid; grid-template-rows: 1fr 1fr; gap: var(--gap); }
.hero-sec {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 40%, transparent 75%);
}
.hero-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px;
}
.hero-body.small { padding: 18px; }
.hero-title {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-top: 12px;
  transition: color 0.15s;
  text-wrap: pretty;
}
.hero-body.small .hero-title { font-size: 22px; }
.hero-meta {
  display: flex; align-items: center; gap: 14px;
  margin-top: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-3);
}
.hero-meta .sep { color: var(--ink-4); }
.hero-excerpt {
  margin-top: 10px;
  color: var(--ink-2);
  font-size: 14px;
  max-width: 560px;
}

/* ====== SECTION HEADER ====== */
.sec-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
  position: relative;
}
.sec-head::before {
  content: ''; position: absolute;
  left: 0; bottom: -2px;
  width: 60px; height: 2px;
  background: var(--accent);
}
.sec-title {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex; align-items: baseline; gap: 10px;
}
.sec-title .count {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-4);
  letter-spacing: 0.1em;
}
.sec-more {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  display: inline-flex; align-items: center; gap: 6px;
}
.sec-more:hover { color: var(--accent); }

/* ====== ARTICLE CARDS ====== */
.card-h {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.card-h:last-child { border-bottom: 0; }
.card-h .thumb {
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.card-h .body { padding-top: 2px; display: flex; flex-direction: column; gap: 8px; }
.card-h .title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
}
.card-h:hover .title { color: var(--accent); }
.card-h .excerpt { color: var(--ink-3); font-size: 13px; }
.card-h .meta {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-4);
  letter-spacing: 0.05em;
}

.card-v {
  display: flex; flex-direction: column; gap: 10px;
  cursor: pointer;
}
.card-v .thumb {
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.card-v .title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.2;
  margin-top: 4px;
}
.card-v:hover .title { color: var(--accent); }
.card-v .meta {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-4);
  letter-spacing: 0.05em;
}

.card-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.card-row:last-child { border-bottom: 0; }
.card-row .num {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 40px;
  color: var(--bg-4);
  line-height: 0.9;
  width: 44px;
  flex-shrink: 0;
}
.card-row.top3 .num { color: var(--accent); }
.card-row .body { display: flex; flex-direction: column; gap: 4px; }
.card-row .title {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.25;
}
.card-row:hover .title { color: var(--accent); }
.card-row .meta {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-4);
}

/* Ranking numeric row */
.rank-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px; align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.rank-row:hover { background: var(--bg-2); }
.rank-row .rn {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink-4);
}
.rank-row.top .rn { color: var(--accent); }
.rank-row .rtitle { font-family: var(--f-head); font-weight: 600; font-size: 14px; line-height: 1.2; }
.rank-row .rmeta { font-family: var(--f-mono); font-size: 10px; color: var(--ink-4); margin-top: 2px; }
.rank-row .rv { font-family: var(--f-mono); font-size: 11px; color: var(--ink-2); }

/* Sidebar widget */
.widget {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.widget-head {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex; align-items: center; justify-content: space-between;
}
.widget-head .bar {
  display: inline-block; width: 3px; height: 14px;
  background: var(--accent); margin-right: 8px;
  vertical-align: middle;
}
.widget-body { padding: 8px 14px; }

/* Ad slot */
.ad-slot {
  background: var(--bg-2);
  border: 1px dashed var(--line-2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: 10px; color: var(--ink-4);
  letter-spacing: 0.15em; text-transform: uppercase;
}
.ad-970 { height: 250px; }
.ad-300-250 { height: 250px; }
.ad-300-600 { height: 600px; }

/* Footer */
.footer {
  background: #05050A;
  border-top: 1px solid var(--line);
  margin-top: 60px;
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.footer h4 {
  font-family: var(--f-head); font-weight: 800;
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: var(--ink-3); font-size: 13px; }
.footer a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono); font-size: 11px; color: var(--ink-4);
}

/* ============== SINGLE POST ============== */
.post-hero {
  padding: 30px 0 40px;
  border-bottom: 1px solid var(--line);
}
.post-crumb {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--ink-4); letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
}
.post-crumb a:hover { color: var(--accent); }
.post-title {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 14px 0 18px;
  max-width: 900px;
  text-wrap: balance;
}
.post-lead {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 760px;
  margin-bottom: 24px;
}
.post-byline {
  display: flex; align-items: center; gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.byline-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-weight: 800; font-size: 14px;
  color: var(--accent);
}
.byline-name { font-weight: 600; font-size: 13px; }
.byline-meta { font-family: var(--f-mono); font-size: 11px; color: var(--ink-4); letter-spacing: 0.04em; }

.post-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 40px 0;
}
.post-content { max-width: 760px; }
.post-content p { margin-bottom: 18px; font-size: 16px; line-height: 1.75; color: var(--ink-2); }
.post-content h2 {
  font-family: var(--f-head); font-weight: 800;
  font-size: 28px; margin: 32px 0 14px;
}
.post-content h3 {
  font-family: var(--f-head); font-weight: 700;
  font-size: 20px; margin: 24px 0 10px; color: var(--ink);
}
.post-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 8px 0 8px 20px;
  margin: 24px 0;
  font-family: var(--f-head);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}
.post-content .figure {
  margin: 28px 0;
}
.post-content .figure .ph { aspect-ratio: 16/9; border-radius: var(--radius); }
.post-content .figure figcaption {
  margin-top: 10px;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--ink-4); letter-spacing: 0.04em;
}
.post-content strong { color: var(--ink); }
.post-content a { color: var(--accent-2); border-bottom: 1px solid currentColor; }

.share-rail {
  display: flex; gap: 8px; margin: 24px 0;
  padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  align-items: center;
}
.share-rail .lbl {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-4); margin-right: 4px;
}
.share-btn {
  height: 32px; padding: 0 12px;
  border: 1px solid var(--line-2);
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 3px;
}
.share-btn:hover { border-color: var(--accent); color: var(--accent); }

.tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin: 24px 0; }
.tag {
  height: 26px; padding: 0 10px;
  display: inline-flex; align-items: center;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.04em;
  background: var(--bg-3); color: var(--ink-2);
  border-radius: 2px;
}
.tag:hover { background: var(--accent); color: #000; }

/* ========== ARCHIVE ========== */
.archive-hero {
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}
.archive-hero h1 {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 72px;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}
.archive-hero .sub {
  font-family: var(--f-mono); font-size: 12px;
  color: var(--ink-3); letter-spacing: 0.08em;
  text-transform: uppercase; margin-top: 14px;
}
.archive-hero .desc {
  margin-top: 16px; color: var(--ink-2);
  font-size: 15px; max-width: 640px; line-height: 1.6;
}

.filter-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.filter-tabs { display: flex; gap: 2px; }
.ftab {
  height: 34px; padding: 0 14px;
  display: inline-flex; align-items: center;
  font-family: var(--f-head); font-weight: 600;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-3); border-radius: 3px;
}
.ftab.on { background: var(--accent); color: #000; }
.ftab:hover:not(.on) { color: var(--ink); }
.filter-meta { font-family: var(--f-mono); font-size: 11px; color: var(--ink-4); letter-spacing: 0.04em; }

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}

/* Pagination */
.pagination {
  display: flex; justify-content: center; align-items: center; gap: 4px;
  padding: 40px 0;
}
.pg {
  min-width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 10px;
  font-family: var(--f-mono); font-size: 12px;
  color: var(--ink-3);
  border: 1px solid transparent;
  border-radius: 3px;
}
.pg:hover { border-color: var(--line-2); color: var(--ink); }
.pg.on { background: var(--accent); color: #000; border-color: var(--accent); }

/* ========== TOURNAMENT ========== */
.tourney-hero {
  position: relative;
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.tourney-hero .bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(153,69,255,0.18), transparent 60%),
              repeating-linear-gradient(135deg, #0c0c1a 0 14px, #08081a 14px 28px);
  opacity: 0.8;
}
.tourney-hero .bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 100%);
}
.tourney-inner { position: relative; z-index: 1; }
.tourney-top {
  display: flex; align-items: flex-end; gap: 28px;
}
.tourney-badge {
  width: 120px; height: 120px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-weight: 900;
  font-size: 56px; color: #000;
  flex-shrink: 0;
}
.tourney-meta {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--ink-3); letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex; gap: 16px; margin-bottom: 10px;
}
.tourney-title {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 64px;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}
.tourney-sub {
  margin-top: 14px;
  color: var(--ink-2); font-size: 15px;
  max-width: 720px; line-height: 1.55;
}
.tourney-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 32px;
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.tstat {
  background: var(--bg-2);
  padding: 20px 20px;
}
.tstat .lbl {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--ink-4); letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tstat .val {
  font-family: var(--f-head); font-weight: 800;
  font-size: 28px; margin-top: 6px;
  letter-spacing: -0.01em;
}
.tstat .val.accent { color: var(--accent); }

.tourney-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  padding: 40px 0;
}

.bracket {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 220px;
  gap: 32px;
  overflow-x: auto;
  padding: 8px 0 20px;
}
.bracket-col {
  display: flex; flex-direction: column;
  gap: 12px;
  justify-content: space-around;
}
.bracket-col-head {
  font-family: var(--f-head); font-weight: 700;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-3);
  padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.b-match {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.b-match .mhead {
  padding: 6px 10px;
  font-family: var(--f-mono); font-size: 9px;
  color: var(--ink-4); letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.b-team {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 10px;
  font-family: var(--f-head); font-weight: 600;
  font-size: 13px;
}
.b-team + .b-team { border-top: 1px solid var(--line); }
.b-team .n { display: flex; align-items: center; gap: 8px; }
.b-team .ls { width: 16px; height: 16px; background: var(--bg-4); border-radius: 2px; }
.b-team.win { color: var(--neon-green); }
.b-team.lose { color: var(--ink-4); }
.b-team.tbd { color: var(--ink-4); font-style: italic; }
.b-team .sc { font-family: var(--f-mono); font-weight: 700; }

/* Schedule rows */
.sched-day {
  padding-top: 20px;
}
.sched-day-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 12px;
}
.sched-day-head .d {
  font-family: var(--f-head); font-weight: 800;
  font-size: 20px; text-transform: uppercase; letter-spacing: 0.04em;
}
.sched-day-head .d .sub { color: var(--ink-4); font-weight: 500; margin-left: 8px; font-size: 13px; }
.sched-row {
  display: grid;
  grid-template-columns: 80px 1fr auto 120px;
  gap: 16px; align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 8px;
  background: var(--bg-2);
}
.sched-row.live { border-color: var(--neon-red); box-shadow: 0 0 0 1px var(--neon-red); }
.sched-time {
  font-family: var(--f-mono); font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.sched-teams {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-head); font-weight: 600; font-size: 16px;
}
.sched-teams .vs { color: var(--ink-4); font-size: 12px; }
.sched-teams .t { display: flex; align-items: center; gap: 8px; }
.sched-teams .ls { width: 24px; height: 24px; background: var(--bg-4); border-radius: 3px; display:flex; align-items:center; justify-content:center; font-size: 10px; font-weight: 800; }
.sched-score { font-family: var(--f-head); font-weight: 800; font-size: 22px; }
.sched-score .w { color: var(--neon-green); }
.sched-action .btn-ghost { width: 100%; justify-content: center; }

/* Standings */
.standings {
  width: 100%; border-collapse: collapse;
  font-size: 13px;
}
.standings th, .standings td { padding: 10px 12px; text-align: left; }
.standings th {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--ink-4); letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.standings td { border-bottom: 1px solid var(--line); }
.standings tr:hover td { background: var(--bg-2); }
.standings .pos { font-family: var(--f-head); font-weight: 800; color: var(--accent); width: 40px; }
.standings .team-cell { font-family: var(--f-head); font-weight: 600; display: flex; align-items: center; gap: 10px; }
.standings .num { font-family: var(--f-mono); text-align: center; }

/* Tweaks panel */
.tweaks-panel {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 300px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  z-index: 100;
  font-size: 12px;
}
.tweaks-panel h5 {
  font-family: var(--f-head); font-weight: 800;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 12px; color: var(--ink-2);
  display: flex; justify-content: space-between; align-items: center;
}
.tweak-group { margin-bottom: 14px; }
.tweak-group label {
  display: block;
  font-family: var(--f-mono); font-size: 10px;
  color: var(--ink-4); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 6px;
}
.tweak-swatches { display: flex; gap: 6px; }
.tweak-sw {
  width: 28px; height: 28px; border-radius: 4px;
  border: 2px solid transparent; cursor: pointer;
}
.tweak-sw.on { border-color: var(--ink); }
.tweak-seg { display: flex; gap: 2px; }
.tweak-seg button {
  flex: 1; height: 28px; font-family: var(--f-mono);
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--bg-3); color: var(--ink-3);
  border-radius: 3px;
}
.tweak-seg button.on { background: var(--accent); color: #000; }

/* Page nav (top of design) */
.page-nav {
  position: fixed;
  top: 20px; left: 50%; transform: translateX(-50%);
  background: rgba(10,10,18,0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  padding: 4px;
  display: flex; gap: 2px;
  z-index: 99;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.page-nav button {
  height: 32px; padding: 0 14px;
  font-family: var(--f-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-3);
  border-radius: 100px;
}
.page-nav button.on { background: var(--accent); color: #000; }
.page-nav button:hover:not(.on) { color: var(--ink); }
