/* ============================================================
   ABYSSALIS ESPORTS — Broadcast-style design system
   Deep abyss palette · electric blue accent · wide grotesk display
   ============================================================ */

:root {
  /* Abyss palette */
  --abyss-void: #000814;
  --abyss-deep: #050f22;
  --abyss-bg: #07142b;
  --abyss-mid: #0c1e3d;
  --abyss-surface: #0f2647;
  --abyss-elev: #143055;
  --abyss-line: #1a3b6b;
  --abyss-line-soft: rgba(120, 168, 255, 0.14);

  /* Accent */
  --electric: #4DA8FF;
  --electric-bright: #7BC4FF;
  --electric-deep: #1F6BC8;
  --electric-glow: rgba(77, 168, 255, 0.45);

  /* Status */
  --win: #4ADE80;
  --loss: #F87171;
  --gold: #F4C75B;

  /* Text */
  --ink: #F4F8FF;
  --ink-2: rgba(244, 248, 255, 0.78);
  --ink-3: rgba(244, 248, 255, 0.55);
  --ink-4: rgba(244, 248, 255, 0.32);

  /* Type */
  --display: "Big Shoulders Display", "Archivo Black", system-ui, sans-serif;
  --sans: "Manrope", "DM Sans", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  /* Layout */
  --maxw: 1440px;
  --pad-x: clamp(20px, 4vw, 64px);
  --header-h: 76px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--abyss-void); color: var(--ink); }
body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(77, 168, 255, 0.08), transparent 60%),
    radial-gradient(900px 700px at -10% 30%, rgba(31, 107, 200, 0.10), transparent 70%),
    linear-gradient(180deg, var(--abyss-bg) 0%, var(--abyss-deep) 40%, var(--abyss-void) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* Selection */
::selection { background: var(--electric); color: var(--abyss-void); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--abyss-deep); }
::-webkit-scrollbar-thumb { background: var(--abyss-line); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--electric-deep); }

/* ============================================================
   Typography
   ============================================================ */
.display, h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 0.92;
  margin: 0;
  text-transform: uppercase;
}
.display-mega   { font-size: clamp(72px, 13vw, 220px); letter-spacing: -0.02em; }
.display-xl     { font-size: clamp(48px, 7vw, 96px); }
.display-lg     { font-size: clamp(32px, 4vw, 56px); }
.display-md     { font-size: clamp(22px, 2.4vw, 32px); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.eyebrow.accent { color: var(--electric); }

.label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.numeric { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* ============================================================
   Layout primitives
   ============================================================ */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
.row  { display: flex; gap: 16px; }
.col  { display: flex; flex-direction: column; gap: 16px; }
.sp   { flex: 1; }

.section { padding: 80px 0; position: relative; }
.section-tight { padding: 40px 0; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--abyss-line);
}
.section-head .left { display: flex; flex-direction: column; gap: 8px; }
.section-head .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--electric);
  letter-spacing: 0.2em;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --bg: transparent;
  --fg: var(--ink);
  --bd: var(--abyss-line);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bd);
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: all .22s ease;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  --bg: var(--electric);
  --fg: var(--abyss-void);
  --bd: var(--electric);
  box-shadow: 0 0 0 0 var(--electric-glow);
}
.btn-primary:hover {
  --bg: var(--electric-bright);
  box-shadow: 0 8px 28px -8px var(--electric-glow);
}
.btn-ghost {
  --bg: rgba(255,255,255,0.02);
  --bd: var(--abyss-line);
}
.btn-ghost:hover { --bd: var(--electric); --bg: rgba(77,168,255,0.06); }

.btn .arrow { transition: transform .22s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Sloped panels (broadcast vibe)
   ============================================================ */
.panel {
  background: linear-gradient(180deg, var(--abyss-mid) 0%, var(--abyss-surface) 100%);
  border: 1px solid var(--abyss-line);
  position: relative;
}
.panel-slope {
  --slope: 18px;
  clip-path: polygon(var(--slope) 0, 100% 0, 100% calc(100% - var(--slope)), calc(100% - var(--slope)) 100%, 0 100%, 0 var(--slope));
}
.panel-slope-r {
  --slope: 18px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--slope)), calc(100% - var(--slope)) 100%, 0 100%);
}
.panel-slope-l {
  --slope: 18px;
  clip-path: polygon(var(--slope) 0, 100% 0, 100% 100%, 0 100%, 0 var(--slope));
}

/* Glow strip on panel edges */
.glow-edge {
  position: relative;
}
.glow-edge::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 100%;
  background: var(--electric);
  box-shadow: 0 0 14px var(--electric-glow);
}

/* ============================================================
   Header / Nav
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid var(--abyss-line);
  background: rgba(5, 15, 34, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
  padding: 0 var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand .mark {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  position: relative;
}
.brand .mark svg { width: 100%; height: 100%; }
.brand .name { font-size: 18px; line-height: 1; }
.brand .name span { color: var(--electric); }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 16px;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-2);
  cursor: pointer;
  transition: color .18s ease;
  border: none;
  background: none;
}
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--electric); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: -1px;
  height: 2px;
  background: var(--electric);
  box-shadow: 0 0 12px var(--electric-glow);
}
.nav-link .caret { width: 8px; height: 8px; opacity: .55; transition: transform .2s; }
.nav-link.open .caret { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  background: var(--abyss-mid);
  border: 1px solid var(--abyss-line);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 20;
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  color: var(--ink-2);
  cursor: pointer;
  background: none;
  border: 1px solid transparent;
  border-left: 2px solid transparent;
  font-family: var(--sans);
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  text-align: left;
  width: 100%;
}
.nav-dropdown-item:hover {
  background: var(--abyss-surface);
  color: var(--ink);
  border-left-color: var(--electric);
}
.nav-dropdown-item .game-tag {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--ink-4);
  text-transform: uppercase;
}

.header-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--abyss-line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
}
.lang-switch button {
  padding: 8px 12px;
  background: none;
  border: none;
  color: var(--ink-3);
  font: inherit;
  text-transform: uppercase;
  cursor: pointer;
}
.lang-switch button.on {
  background: var(--electric);
  color: var(--abyss-void);
  font-weight: 700;
}

.icon-btn {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  background: none;
  border: 1px solid var(--abyss-line);
  color: var(--ink-2);
}
.icon-btn:hover { color: var(--electric); border-color: var(--electric); }

/* ============================================================
   Hero (homepage)
   ============================================================ */
.hero {
  position: relative;
  padding: 96px 0 120px;
  overflow: hidden;
  border-bottom: 1px solid var(--abyss-line);
}
.hero::before {
  /* deep abyss radial */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 50% 110%, rgba(77, 168, 255, 0.22), transparent 60%),
    radial-gradient(900px 600px at 0% 100%, rgba(31, 107, 200, 0.14), transparent 70%);
  pointer-events: none;
}
.hero-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--abyss-line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--abyss-line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 0%, transparent 80%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-meta .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--abyss-line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.hero-meta .pill .dot {
  width: 8px; height: 8px;
  background: var(--electric);
  box-shadow: 0 0 10px var(--electric-glow);
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}
.hero-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(80px, 14vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  text-shadow: 0 6px 60px rgba(77, 168, 255, 0.25);
  margin: 0 0 24px;
}
.hero-title .stroke {
  -webkit-text-stroke: 1.5px var(--electric);
  color: transparent;
}
.hero-sub {
  max-width: 640px;
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 80px;
  background: var(--abyss-line);
  border: 1px solid var(--abyss-line);
}
.hero-stats .stat {
  background: var(--abyss-mid);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-stats .num {
  font-family: var(--display);
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
  color: var(--ink);
}
.hero-stats .num span { color: var(--electric); }
.hero-stats .lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.24em; color: var(--ink-3); text-transform: uppercase; }

/* ============================================================
   Games banners
   ============================================================ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.game-banner {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--abyss-mid);
  border: 1px solid var(--abyss-line);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.game-banner:hover { border-color: var(--electric); transform: translateY(-4px); }
.game-banner .bg {
  position: absolute; inset: 0;
  background: var(--bg, var(--abyss-elev));
  opacity: 0.6;
  transition: opacity .25s;
}
.game-banner:hover .bg { opacity: 0.85; }
.game-banner .number {
  position: absolute;
  top: 14px; left: 16px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.2em;
  z-index: 2;
}
.game-banner .glyph {
  position: absolute;
  right: -20%; bottom: -20%;
  width: 110%; height: 110%;
  opacity: 0.18;
  transition: opacity .25s, transform .25s;
}
.game-banner:hover .glyph { opacity: 0.34; transform: translate(-10px, -10px) rotate(-4deg); }
.game-banner .body {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 6px;
}
.game-banner .game-name {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}
.game-banner .game-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.game-banner .arrow {
  position: absolute;
  top: 14px; right: 16px;
  z-index: 2;
  color: var(--ink-3);
  transition: color .2s, transform .2s;
}
.game-banner:hover .arrow { color: var(--electric); transform: translate(4px, -4px); }

/* ============================================================
   News
   ============================================================ */
.news-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  min-height: 460px;
}
.news-feature {
  position: relative;
  background: var(--abyss-mid);
  border: 1px solid var(--abyss-line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 36px;
  min-height: 460px;
  cursor: pointer;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}
.news-feature .bg {
  position: absolute;
  inset: 0;
  background: var(--bg, linear-gradient(180deg, var(--abyss-mid), var(--abyss-deep)));
  background-size: cover;
  background-position: center;
}
.news-feature .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,20,43,0) 0%, rgba(7,20,43,0.65) 50%, rgba(0,8,20,0.95) 100%);
}
.news-feature .meta-row {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}
.news-feature .tag {
  display: inline-block;
  background: var(--electric);
  color: var(--abyss-void);
  padding: 4px 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}
.news-feature .date {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.news-feature h3 {
  position: relative;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.news-feature p {
  position: relative;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0;
}

.news-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--abyss-mid);
  border: 1px solid var(--abyss-line);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  flex: 1;
}
.news-card:hover { border-color: var(--electric); background: var(--abyss-surface); }
.news-card.active { border-color: var(--electric); background: var(--abyss-surface); }
.news-card .num {
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
  color: var(--electric);
  font-weight: 800;
}
.news-card.active .num { color: var(--electric-bright); }
.news-card .title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.01em;
}
.news-card .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-top: 4px;
}
.news-card .arrow { color: var(--ink-3); }
.news-card:hover .arrow, .news-card.active .arrow { color: var(--electric); }

/* ============================================================
   Match cards
   ============================================================ */
.matches-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.match {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 44px 26px 22px;
  background: var(--abyss-mid);
  border: 1px solid var(--abyss-line);
  position: relative;
  overflow: hidden;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.match .team-side { min-width: 0; }
.match .team-text { min-width: 140px; flex: 1 1 auto; }
.match .team-name { word-break: normal; overflow-wrap: break-word; hyphens: none; }
.match::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--electric);
  opacity: 0.7;
}
.match .team-side {
  display: flex;
  align-items: center;
  gap: 14px;
}
.match .team-side.right { justify-content: end; }
.match .team-side.right .team-text { text-align: right; }
.match .logo {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  background: var(--abyss-deep);
  border: 1px solid var(--abyss-line);
  flex-shrink: 0;
}
.match .team-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.match .team-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  margin-top: 4px;
  text-transform: uppercase;
}
.match .center {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 92px;
}
.match .score {
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  color: var(--ink);
}
.match .score.win { color: var(--electric); }
.match .score-sep { color: var(--ink-4); }
.match .vs {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
}
.match .when {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.match .badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--abyss-line);
}
.match .badge.live { color: var(--loss); border-color: var(--loss); }
.match .badge.win { color: var(--win); border-color: var(--win); }
.match .badge.loss { color: var(--ink-3); }

/* ============================================================
   Sponsors
   ============================================================ */
.sponsors {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--abyss-line);
  border: 1px solid var(--abyss-line);
}
.sponsor {
  background: var(--abyss-mid);
  height: 110px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  transition: color .2s, background .2s;
  cursor: pointer;
  text-transform: uppercase;
}
.sponsor:hover { color: var(--ink); background: var(--abyss-surface); }
.sponsor .tier {
  position: absolute;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--ink-4);
  margin-top: -50px;
}

/* ============================================================
   Page hero (subpages)
   ============================================================ */
.page-hero {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--abyss-line);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 300px at 80% 100%, rgba(77, 168, 255, 0.10), transparent 70%);
}
.page-hero-inner { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 14px; }
.page-hero h1 { font-size: clamp(56px, 9vw, 128px); font-family: var(--display); font-weight: 900; line-height: 0.9; letter-spacing: -0.01em; text-transform: uppercase; }
.page-hero .lead { color: var(--ink-2); max-width: 700px; font-size: 16px; line-height: 1.55; }
.crumbs {
  display: flex;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 6px;
}
.crumbs .sep { color: var(--ink-4); }
.crumbs button {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  padding: 0;
}
.crumbs button:hover { color: var(--electric); }

/* ============================================================
   Teams listing tiles
   ============================================================ */
.team-tile {
  display: grid;
  grid-template-columns: 88px 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 22px 28px;
  background: var(--abyss-mid);
  border: 1px solid var(--abyss-line);
  margin-bottom: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color .22s, transform .22s, background .22s;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}
.team-tile::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--electric);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .25s ease;
}
.team-tile:hover { border-color: var(--electric); background: var(--abyss-surface); }
.team-tile:hover::before { transform: scaleY(1); }
.team-tile .logo {
  width: 80px; height: 80px;
  background: var(--abyss-deep);
  border: 1px solid var(--abyss-line);
  display: grid;
  place-items: center;
}
.team-tile .name {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.02em;
}
.team-tile .sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-top: 8px;
}
.team-tile .game-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
  min-width: 220px;
}
.team-tile .game-info .game {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}
.team-tile .game-info .league {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.team-tile .arrow-wrap { color: var(--ink-3); transition: color .2s, transform .2s; }
.team-tile:hover .arrow-wrap { color: var(--electric); transform: translateX(6px); }

/* ============================================================
   Team detail page
   ============================================================ */
.team-banner {
  position: relative;
  padding: 56px 0;
  border-bottom: 1px solid var(--abyss-line);
  overflow: hidden;
}
.team-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 380px at 70% 50%, rgba(77, 168, 255, 0.18), transparent 65%);
}
.team-banner-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 32px;
  align-items: center;
}
.team-banner .logo-big {
  width: 132px; height: 132px;
  background: var(--abyss-mid);
  border: 1px solid var(--abyss-line);
  display: grid;
  place-items: center;
  position: relative;
}
.team-banner .logo-big::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid var(--electric);
  opacity: 0.4;
  pointer-events: none;
  transform: translate(6px, 6px);
}
.team-banner h1 {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 88px);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  font-weight: 900;
  line-height: 0.92;
}
.team-banner .meta {
  display: flex;
  gap: 24px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.team-banner .meta .item { display: flex; flex-direction: column; gap: 4px; }
.team-banner .meta .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.team-banner .meta .val {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

.team-body {
  padding: 56px 0;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
}

.roster-panel {
  border: 1px solid var(--abyss-line);
  background: var(--abyss-mid);
}
.roster-head {
  padding: 14px 18px;
  border-bottom: 1px solid var(--abyss-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.roster-head .ttl {
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.roster-head .count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.2em;
}
.roster-list { display: flex; flex-direction: column; }

.roster-row {
  display: grid;
  grid-template-columns: 28px 32px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-top: 1px solid var(--abyss-line-soft);
  border-left: 3px solid transparent;
  cursor: pointer;
  background: none;
  text-align: left;
  width: 100%;
  font-family: inherit;
  color: inherit;
  transition: background .2s, border-color .2s;
}
.roster-row:first-child { border-top: 0; }
.roster-row:hover { background: var(--abyss-surface); }
.roster-row.active {
  background: var(--abyss-surface);
  border-left-color: var(--electric);
}
.roster-row .role-icon {
  width: 24px; height: 24px;
  display: grid;
  place-items: center;
  color: var(--ink-3);
}
.roster-row.active .role-icon { color: var(--electric); }
.roster-row .flag {
  width: 22px;
  height: 16px;
  display: grid;
  place-items: center;
  font-size: 16px;
  line-height: 1;
}
.roster-row .name-block { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.roster-row .name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.roster-row .name .nick { color: var(--electric); }
.roster-row .real-name {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.roster-row .age {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
}

/* Player detail panel */
.player-panel {
  background: var(--abyss-mid);
  border: 1px solid var(--abyss-line);
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.player-panel-empty {
  display: grid;
  place-items: center;
  min-height: 520px;
  background: repeating-linear-gradient(
    135deg,
    transparent 0px,
    transparent 14px,
    var(--abyss-line-soft) 14px,
    var(--abyss-line-soft) 15px
  );
  background-color: var(--abyss-mid);
  text-align: center;
  color: var(--ink-3);
}
.player-panel-empty .display-md { color: var(--ink); margin-bottom: 8px; }

.player-hero {
  position: relative;
  padding: 32px 36px 28px;
  border-bottom: 1px solid var(--abyss-line);
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 24px;
  align-items: start;
}
.player-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 240px at 90% 0%, rgba(77, 168, 255, 0.16), transparent 65%);
}
.player-hero .info { position: relative; display: flex; flex-direction: column; gap: 10px; }
.player-hero .role-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--electric);
  text-transform: uppercase;
}
.player-hero .player-name {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.player-hero .player-name .nick { color: var(--electric); display: block; }
.player-hero .real {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.player-hero .meta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.player-hero .meta-row .it {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.player-hero .meta-row .lbl { font-family: var(--mono); font-size: 9px; letter-spacing: 0.24em; color: var(--ink-4); text-transform: uppercase; }
.player-hero .meta-row .val { font-family: var(--display); font-size: 16px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 700; }
.player-hero .champion {
  position: relative;
  width: 140px; height: 140px;
  border: 1px solid var(--abyss-line);
  background: var(--abyss-deep);
  overflow: hidden;
}
.player-hero .champion img { width: 100%; height: 100%; object-fit: cover; display: block; }
.player-hero .champion .champ-label {
  position: absolute;
  bottom: 6px; left: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--ink);
  text-transform: uppercase;
  padding: 3px 6px;
  background: rgba(0,8,20,0.7);
}
.player-hero .champion .champ-tag {
  position: absolute;
  top: 6px; right: 6px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--electric);
  background: rgba(7, 20, 43, 0.7);
  border: 1px solid var(--abyss-line);
  padding: 3px 5px;
  text-transform: uppercase;
}

.player-body {
  padding: 26px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.player-body .bio {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
}
.player-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--abyss-line);
  border: 1px solid var(--abyss-line);
}
.player-stats .stat {
  background: var(--abyss-deep);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.player-stats .num { font-family: var(--display); font-size: 26px; font-weight: 800; line-height: 1; }
.player-stats .num.accent { color: var(--electric); }
.player-stats .lbl { font-family: var(--mono); font-size: 9px; letter-spacing: 0.22em; color: var(--ink-3); text-transform: uppercase; }

.socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--abyss-line);
  background: var(--abyss-deep);
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: border-color .2s, color .2s;
}
.social-link:hover { color: var(--electric); border-color: var(--electric); }
.social-link svg { width: 14px; height: 14px; }
.social-link.opgg { background: var(--electric); color: var(--abyss-void); border-color: var(--electric); font-weight: 700; }
.social-link.opgg:hover { background: var(--electric-bright); border-color: var(--electric-bright); }

/* Coaching staff */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.staff-card {
  background: var(--abyss-mid);
  border: 1px solid var(--abyss-line);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.staff-card .avatar {
  width: 56px; height: 56px;
  background: var(--abyss-deep);
  border: 1px solid var(--abyss-line);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  color: var(--electric);
  flex-shrink: 0;
}
.staff-card .name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
}
.staff-card .name .nick { color: var(--electric); }
.staff-card .role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================================
   News list / blog
   ============================================================ */
.article-list { display: flex; flex-direction: column; gap: 12px; }
.article-row {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 24px;
  padding: 20px;
  background: var(--abyss-mid);
  border: 1px solid var(--abyss-line);
  cursor: pointer;
  transition: border-color .2s, transform .2s;
}
.article-row:hover { border-color: var(--electric); transform: translateX(4px); }
.article-row .img {
  height: 130px;
  background: var(--bg, var(--abyss-elev));
  background-size: cover;
  background-position: center;
  border: 1px solid var(--abyss-line);
}
.article-row .body { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.article-row .meta-row { display: flex; gap: 12px; align-items: center; }
.article-row .tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--electric);
  text-transform: uppercase;
}
.article-row .date {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.article-row h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.article-row p {
  color: var(--ink-2);
  font-size: 14px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-row .read {
  align-self: end;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.article-row:hover .read { color: var(--electric); }

/* ============================================================
   Achievements
   ============================================================ */
.ach-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.ach-card {
  background: var(--abyss-mid);
  border: 1px solid var(--abyss-line);
  padding: 44px 26px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  position: relative;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}
.ach-card.first { background: linear-gradient(180deg, #1a2a4a 0%, var(--abyss-mid) 60%); border-color: var(--gold); }
.ach-card.first::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
}
.ach-card .league-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
}
.ach-card .team-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-top: 6px;
}
.ach-card .desc {
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 14px;
  line-height: 1.5;
}
.ach-card .place {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 6px;
}
.ach-card .place .num {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: var(--ink);
}
.ach-card.first .place .num { color: var(--gold); }
.ach-card .place .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.ach-card .trophy {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  color: var(--gold);
}
.ach-card .date {
  position: absolute;
  top: 14px; left: 22px; right: auto;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-4);
  text-transform: uppercase;
}

/* ============================================================
   About / Tabs
   ============================================================ */
.tabs {
  display: flex;
  border-bottom: 1px solid var(--abyss-line);
  margin-bottom: 32px;
  gap: 0;
}
.tab {
  padding: 14px 22px;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  cursor: pointer;
}
.tab.active { color: var(--electric); border-color: var(--electric); }
.tab:hover { color: var(--ink); }

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}
.about-text { display: flex; flex-direction: column; gap: 24px; max-width: 640px; }
.about-text p { color: var(--ink-2); font-size: 16px; line-height: 1.65; }
.about-text h3 { margin-top: 16px; }

.faq { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-top: 1px solid var(--abyss-line);
  padding: 18px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--abyss-line); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.faq-a {
  margin-top: 12px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
}
.faq-item .plus {
  width: 22px; height: 22px;
  display: grid;
  place-items: center;
  color: var(--electric);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .plus { transform: rotate(45deg); }

.about-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-side .stat-card {
  padding: 22px;
  background: var(--abyss-mid);
  border: 1px solid var(--abyss-line);
}
.about-side .stat-card .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.about-side .stat-card .val {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 900;
  margin-top: 8px;
  line-height: 1;
}
.about-side .stat-card .val span { color: var(--electric); }

/* ============================================================
   Match history filters
   ============================================================ */
.filters {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--abyss-mid);
  border: 1px solid var(--abyss-line);
}
.filter {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.filter label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.filter select, .filter input {
  background: var(--abyss-deep);
  border: 1px solid var(--abyss-line);
  color: var(--ink);
  padding: 10px 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  outline: none;
}
.filter select:focus, .filter input:focus { border-color: var(--electric); }

.history-list { display: flex; flex-direction: column; gap: 8px; }
.history-row {
  display: grid;
  grid-template-columns: 110px 1fr 90px 1fr 200px 80px;
  gap: 16px;
  align-items: center;
  padding: 14px 22px;
  background: var(--abyss-mid);
  border: 1px solid var(--abyss-line);
  border-left: 3px solid transparent;
}
.history-row.win { border-left-color: var(--win); }
.history-row.loss { border-left-color: var(--loss); }
.history-row .date {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.history-row .team {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}
.history-row .score {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}
.history-row .score.w { color: var(--win); }
.history-row .score.l { color: var(--loss); }
.history-row .opp {
  font-family: var(--display);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.history-row .tour {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.history-row .res-pill {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-align: center;
  padding: 4px 10px;
  border: 1px solid;
  text-transform: uppercase;
  font-weight: 700;
}
.history-row .res-pill.w { color: var(--win); border-color: var(--win); }
.history-row .res-pill.l { color: var(--loss); border-color: var(--loss); }

/* ============================================================
   Matchdays
   ============================================================ */
.matchday-day {
  margin-bottom: 32px;
}
.matchday-day h2 {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--abyss-line);
  padding-bottom: 12px;
}
.matchday-day h2 .day-num {
  font-family: var(--display);
  font-size: 56px;
  color: var(--electric);
  font-weight: 900;
  line-height: 1;
}
.matchday-day h2 .day-name {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.matchday-day h2 .day-month {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-left: auto;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--abyss-line);
  padding: 64px 0 36px;
  margin-top: 80px;
  background:
    radial-gradient(800px 400px at 50% 100%, rgba(77, 168, 255, 0.10), transparent 70%),
    var(--abyss-deep);
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.footer-list { display: flex; flex-direction: column; gap: 8px; }
.footer-list a {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-2);
  cursor: pointer;
}
.footer-list a:hover { color: var(--electric); }
.footer .brand-large {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.footer .brand-large span { color: var(--electric); }
.footer .contact {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.7;
}
.footer .contact a { color: var(--electric); }
.footer .contact a:hover { color: var(--electric-bright); }
.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.footer-bottom {
  border-top: 1px solid var(--abyss-line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.footer-bottom .links { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--electric); }

.giant-text {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(120px, 22vw, 360px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(77, 168, 255, 0.18);
  position: absolute;
  bottom: -40px; right: 0;
  pointer-events: none;
  white-space: nowrap;
}

/* ============================================================
   Misc
   ============================================================ */
.divider {
  height: 1px;
  background: var(--abyss-line);
  margin: 32px 0;
}

.split-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.live-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--loss);
  color: white;
  font-weight: 700;
}
.live-tag .dot { width: 6px; height: 6px; background: white; border-radius: 50%; animation: pulse 1.4s infinite; }

/* Scroll fade-in on page change */
.page-fade {
  animation: pageIn .35s cubic-bezier(.2,.6,.2,1);
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Responsive (basic)
   ============================================================ */
@media (max-width: 1100px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .news-carousel { grid-template-columns: 1fr; }
  .matches-grid { grid-template-columns: 1fr; }
  .sponsors { grid-template-columns: repeat(3, 1fr); }
  .ach-grid { grid-template-columns: 1fr; }  .team-body { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-row { grid-template-columns: 160px 1fr; }
  .article-row .read { display: none; }
  .history-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .history-row .tour, .history-row .res-pill { display: none; }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsors { grid-template-columns: repeat(2, 1fr); }
  .staff-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-tile { grid-template-columns: 64px 1fr; gap: 16px; padding: 16px; }
  .team-tile .game-info, .team-tile .arrow-wrap { display: none; }
  .filters { grid-template-columns: 1fr 1fr; }
}
