@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  color-scheme: dark;
  --forest-990: #050907;
  --forest-960: #08110e;
  --forest-920: #0d1814;
  --forest-880: #10231d;
  --forest-800: #17342b;
  --gold: #d8b96e;
  --gold-soft: #f0d78d;
  --teal: #65a99f;
  --teal-dark: #2f6f66;
  --silver: #dce3df;
  --silver-soft: #f2f4f0;
  --silver-muted: #9ba8a3;
  --ash: #b9aa99;
  --ash-dark: #6e6256;
  --ink: #0a0e0c;
  --glass: rgba(220, 227, 223, 0.08);
  --glass-strong: rgba(220, 227, 223, 0.13);
  --line: rgba(220, 227, 223, 0.16);
  --line-strong: rgba(216, 185, 110, 0.4);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --speed: 260ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 10%, rgba(101, 169, 159, 0.16), transparent 28%),
    linear-gradient(135deg, var(--forest-990) 0%, var(--forest-960) 42%, #111711 100%);
  color: var(--silver);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(216, 185, 110, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 227, 223, 0.05) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.96), transparent 86%);
  animation: gridDrift 18s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 55%, rgba(216, 185, 110, 0.08) 55.2%, transparent 56.2%),
    linear-gradient(20deg, transparent 0 70%, rgba(101, 169, 159, 0.08) 70.2%, transparent 71%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  min-height: 100vh;
  position: relative;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.wide-container {
  width: min(1360px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(5, 9, 7, 0.7), rgba(5, 9, 7, 0.18));
  backdrop-filter: blur(14px);
  transition: background var(--speed) ease, border-color var(--speed) ease, box-shadow var(--speed) ease;
}

.site-header.is-scrolled {
  border-color: rgba(216, 185, 110, 0.24);
  background: rgba(7, 14, 11, 0.9);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.32);
}

.nav-frame {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(216, 185, 110, 0.18), rgba(101, 169, 159, 0.09)),
    rgba(220, 227, 223, 0.05);
  color: var(--gold-soft);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 0 30px rgba(216, 185, 110, 0.12);
}

.brand-word {
  display: grid;
  line-height: 1.1;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-word small {
  margin-top: 3px;
  color: var(--silver-muted);
  font-family: "Manrope", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--silver-muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color var(--speed) ease, border-color var(--speed) ease, background var(--speed) ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--silver-soft);
  border-color: rgba(216, 185, 110, 0.22);
  background: rgba(220, 227, 223, 0.06);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--glass);
  color: var(--silver);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform var(--speed) ease, opacity var(--speed) ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  position: relative;
  padding: 104px 0;
}

.section.compact {
  padding: 72px 0;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 42px;
}

.section-kicker,
.eyebrow,
.meta-chip,
.tag,
.difficulty,
.read-time {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(216, 185, 110, 0.24);
  border-radius: 4px;
  background: rgba(216, 185, 110, 0.08);
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
  padding: 8px 10px;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 18px;
}

.section-title,
h1,
h2,
h3 {
  margin: 0;
  color: var(--silver-soft);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.02;
  text-transform: uppercase;
}

h1 {
  max-width: 920px;
  font-size: 4.8rem;
}

.section-title {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
  color: var(--silver-muted);
}

.lede {
  color: var(--silver);
  font-size: 1.08rem;
}

.muted {
  color: var(--silver-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(220, 227, 223, 0.06);
  color: var(--silver-soft);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform var(--speed) ease, border-color var(--speed) ease, background var(--speed) ease, color var(--speed) ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 185, 110, 0.55);
  background: rgba(216, 185, 110, 0.12);
}

.btn-primary {
  border-color: rgba(216, 185, 110, 0.58);
  background:
    linear-gradient(135deg, rgba(216, 185, 110, 0.94), rgba(185, 170, 153, 0.78)),
    var(--gold);
  color: #11120e;
  box-shadow: 0 16px 40px rgba(216, 185, 110, 0.16);
}

.btn-primary:hover {
  color: #080a08;
  background:
    linear-gradient(135deg, var(--gold-soft), var(--gold)),
    var(--gold-soft);
}

.btn-ghost {
  background: rgba(101, 169, 159, 0.08);
  border-color: rgba(101, 169, 159, 0.32);
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 118px 0 54px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(90deg, rgba(5, 9, 7, 0.92), rgba(5, 9, 7, 0.7) 45%, rgba(5, 9, 7, 0.3));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  z-index: -1;
  background: linear-gradient(to top, var(--forest-960), transparent);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.54;
  filter: saturate(0.78) contrast(1.12);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.5fr);
  gap: 44px;
  align-items: center;
}

.hero-copy {
  max-width: 880px;
}

.hero-copy .lede {
  max-width: 680px;
  margin-top: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
  margin-top: 42px;
}

.signal-tile {
  position: relative;
  min-height: 82px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 17, 14, 0.68);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.signal-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(216, 185, 110, 0.12), transparent);
  transform: translateX(-100%);
  animation: scanLine 4.6s ease-in-out infinite;
}

.signal-tile strong {
  display: block;
  color: var(--silver-soft);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.34rem;
  line-height: 1;
}

.signal-tile span {
  display: block;
  margin-top: 8px;
  color: var(--silver-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-dash {
  position: relative;
  display: grid;
  gap: 16px;
  transform: perspective(900px) rotateY(-7deg);
}

.dash-panel,
.glass-panel,
.story-card,
.article-card,
.guide-card,
.review-card,
.legal-card,
.contact-panel,
.tournament-card,
.insight-card,
.compact-story,
.filter-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(220, 227, 223, 0.1), rgba(220, 227, 223, 0.035)),
    rgba(8, 17, 14, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.dash-panel {
  padding: 18px;
  overflow: hidden;
}

.dash-panel.primary {
  min-height: 270px;
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.dash-label {
  color: var(--silver-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.activity-light {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 22px rgba(101, 169, 159, 0.9);
}

.meter-stack {
  display: grid;
  gap: 13px;
}

.meter span {
  display: flex;
  justify-content: space-between;
  color: var(--silver-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.meter-bar {
  height: 8px;
  margin-top: 8px;
  border: 1px solid rgba(220, 227, 223, 0.13);
  border-radius: 999px;
  background: rgba(220, 227, 223, 0.06);
  overflow: hidden;
}

.meter-bar i {
  display: block;
  height: 100%;
  width: var(--value);
  background: linear-gradient(90deg, var(--teal), var(--gold));
  box-shadow: 0 0 18px rgba(216, 185, 110, 0.28);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mini-stat {
  min-height: 116px;
  padding: 15px;
  border: 1px solid rgba(216, 185, 110, 0.18);
  border-radius: var(--radius);
  background: rgba(216, 185, 110, 0.06);
}

.mini-stat strong {
  display: block;
  color: var(--silver-soft);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
}

.mini-stat span {
  color: var(--silver-muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-peek {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 40px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 16px;
  border: 1px solid rgba(216, 185, 110, 0.2);
  border-radius: var(--radius);
  background: rgba(8, 17, 14, 0.72);
  backdrop-filter: blur(16px);
}

.hero-peek span {
  color: var(--silver-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-peek strong {
  color: var(--gold-soft);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.featured-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  gap: 24px;
  align-items: stretch;
}

.story-card {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: grid;
  align-content: end;
  padding: 28px;
  transition: transform var(--speed) ease, border-color var(--speed) ease;
}

.story-card:hover,
.article-card:hover,
.guide-card:hover,
.review-card:hover,
.tournament-card:hover,
.compact-story:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 185, 110, 0.42);
}

.story-card img,
.article-card img,
.guide-card img,
.review-media img,
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  filter: saturate(0.86) contrast(1.05);
}

.story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(5, 9, 7, 0.96), rgba(5, 9, 7, 0.3) 58%, rgba(5, 9, 7, 0.05));
}

.story-content {
  max-width: 640px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 18px;
}

.read-time {
  border-color: rgba(101, 169, 159, 0.26);
  background: rgba(101, 169, 159, 0.08);
  color: var(--silver);
}

.story-card h3 {
  margin-bottom: 14px;
  font-size: 2.1rem;
}

.side-stack {
  display: grid;
  gap: 18px;
}

.compact-story {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  min-height: 150px;
  padding: 14px;
  transition: transform var(--speed) ease, border-color var(--speed) ease;
}

.compact-story img {
  width: 100%;
  height: 100%;
  min-height: 122px;
  border-radius: 6px;
  object-fit: cover;
  filter: saturate(0.82);
}

.compact-story h3 {
  margin: 10px 0 8px;
  font-size: 1.05rem;
}

.compact-story p {
  font-size: 0.9rem;
}

.tournament-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tournament-card {
  position: relative;
  padding: 20px;
  overflow: hidden;
  transition: transform var(--speed) ease, border-color var(--speed) ease;
}

.tournament-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.tournament-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 16px currentColor;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 22px 0;
}

.countdown span {
  display: grid;
  place-items: center;
  min-height: 58px;
  border: 1px solid rgba(220, 227, 223, 0.12);
  border-radius: 6px;
  background: rgba(220, 227, 223, 0.05);
  color: var(--silver-soft);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.countdown small {
  display: block;
  margin-top: 3px;
  color: var(--silver-muted);
  font-family: "Manrope", sans-serif;
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.rank-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(220, 227, 223, 0.12);
  color: var(--silver-muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.rank-line strong {
  color: var(--gold-soft);
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.strategy-card {
  min-height: 236px;
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(23, 52, 43, 0.78), rgba(8, 17, 14, 0.82)),
    rgba(220, 227, 223, 0.04);
  overflow: hidden;
  transition: min-height var(--speed) ease, transform var(--speed) ease, border-color var(--speed) ease;
}

.strategy-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold), transparent);
  opacity: 0.72;
}

.strategy-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 185, 110, 0.42);
}

.strategy-card h3 {
  margin: 22px 0 14px;
}

.strategy-card p {
  transition: color var(--speed) ease;
}

.strategy-card .hidden-depth {
  max-height: 0;
  overflow: hidden;
  color: var(--silver);
  transition: max-height var(--speed) ease, margin var(--speed) ease;
}

.strategy-card:hover .hidden-depth {
  max-height: 120px;
  margin-top: 16px;
}

.stats-band {
  padding: 72px 0;
  background:
    linear-gradient(100deg, rgba(216, 185, 110, 0.09), transparent 30%),
    linear-gradient(280deg, rgba(101, 169, 159, 0.12), transparent 32%),
    rgba(8, 17, 14, 0.56);
  border-block: 1px solid rgba(220, 227, 223, 0.12);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(220, 227, 223, 0.12);
  border: 1px solid rgba(220, 227, 223, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-item {
  min-height: 160px;
  padding: 24px;
  background: rgba(8, 17, 14, 0.84);
}

.stat-item strong {
  display: block;
  color: var(--gold-soft);
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.stat-item span {
  display: block;
  margin-top: 16px;
  color: var(--silver-muted);
  font-weight: 800;
  text-transform: uppercase;
}

.insight-shell {
  position: relative;
  overflow: hidden;
}

.insight-track {
  display: grid;
  grid-template-columns: 1fr;
}

.insight-card {
  display: none;
  min-height: 320px;
  padding: 34px;
}

.insight-card.is-active {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 34px;
  align-items: center;
  animation: fadeUp 420ms ease both;
}

.player-plate {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(216, 185, 110, 0.22);
  border-radius: var(--radius);
  background: rgba(216, 185, 110, 0.06);
}

.player-name {
  color: var(--silver-soft);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
}

.rating {
  display: flex;
  gap: 6px;
}

.rating i {
  width: 22px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  box-shadow: 0 0 15px rgba(216, 185, 110, 0.25);
}

.quote {
  color: var(--silver-soft);
  font-size: 1.36rem;
  line-height: 1.45;
}

.slider-controls {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.icon-btn {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--glass);
  color: var(--silver-soft);
  font-size: 1.2rem;
  transition: transform var(--speed) ease, border-color var(--speed) ease;
}

.icon-btn:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.page-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: 150px 0 70px;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 9, 7, 0.95), rgba(5, 9, 7, 0.62) 58%, rgba(5, 9, 7, 0.3)),
    linear-gradient(to top, var(--forest-960), transparent);
}

.page-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(0.8) contrast(1.12);
}

.page-hero .lede {
  max-width: 760px;
  margin-top: 20px;
}

.magazine-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.feature-media {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(220, 227, 223, 0.06);
}

.article-grid,
.guide-grid,
.review-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.article-card,
.guide-card,
.review-card,
.legal-card {
  overflow: hidden;
  transition: transform var(--speed) ease, border-color var(--speed) ease;
}

.article-card img,
.guide-card img {
  aspect-ratio: 16 / 10;
  filter: saturate(0.84) contrast(1.06);
}

.card-body {
  padding: 20px;
}

.card-body h3 {
  margin: 14px 0 10px;
}

.card-body p {
  font-size: 0.94rem;
}

.academy-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 102px;
  padding: 18px;
}

.filter-panel h2 {
  margin-bottom: 18px;
  font-size: 1rem;
}

.filter-list {
  display: grid;
  gap: 8px;
}

.filter-btn {
  width: 100%;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: rgba(220, 227, 223, 0.06);
  color: var(--silver-muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
  transition: border-color var(--speed) ease, color var(--speed) ease, background var(--speed) ease;
}

.filter-btn:hover,
.filter-btn.is-active {
  border-color: rgba(216, 185, 110, 0.34);
  background: rgba(216, 185, 110, 0.09);
  color: var(--silver-soft);
}

.featured-guide {
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 20px;
}

.featured-guide .feature-media {
  min-height: 330px;
}

.difficulty {
  border-color: rgba(101, 169, 159, 0.3);
  background: rgba(101, 169, 159, 0.08);
  color: var(--silver-soft);
}

.difficulty.elite {
  border-color: rgba(216, 185, 110, 0.42);
  background: rgba(216, 185, 110, 0.1);
  color: var(--gold-soft);
}

.review-card {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
}

.review-media {
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.score-ring {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 86px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(8, 17, 14, 0.98) 0 55%, transparent 56%),
    conic-gradient(var(--gold) var(--score-angle), rgba(220, 227, 223, 0.18) 0);
  color: var(--silver-soft);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  box-shadow: 0 0 28px rgba(216, 185, 110, 0.18);
}

.review-copy {
  padding: 22px;
}

.review-copy h3 {
  margin: 14px 0 10px;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.pros-cons div {
  padding: 13px;
  border: 1px solid rgba(220, 227, 223, 0.12);
  border-radius: 6px;
  background: rgba(220, 227, 223, 0.05);
}

.pros-cons strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.pros-cons ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 16px;
  color: var(--silver-muted);
  font-size: 0.86rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: start;
}

.contact-panel {
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--silver-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(220, 227, 223, 0.16);
  border-radius: 5px;
  background: rgba(220, 227, 223, 0.055);
  color: var(--silver-soft);
  outline: none;
  padding: 13px 14px;
  transition: border-color var(--speed) ease, box-shadow var(--speed) ease, background var(--speed) ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(216, 185, 110, 0.54);
  background: rgba(220, 227, 223, 0.08);
  box-shadow: 0 0 0 4px rgba(216, 185, 110, 0.08);
}

.field-error {
  min-height: 18px;
  color: #f0a995;
  font-size: 0.78rem;
}

.form-success {
  display: none;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(101, 169, 159, 0.36);
  border-radius: 6px;
  background: rgba(101, 169, 159, 0.1);
  color: var(--silver-soft);
}

.contact-form.is-sent .form-success {
  display: block;
  animation: fadeUp 360ms ease both;
}

.contact-aside {
  display: grid;
  gap: 18px;
}

.detail-list {
  display: grid;
  gap: 14px;
}

.detail-item {
  padding: 16px;
  border: 1px solid rgba(220, 227, 223, 0.12);
  border-radius: 6px;
  background: rgba(220, 227, 223, 0.055);
}

.detail-item strong {
  display: block;
  color: var(--gold-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.detail-item span,
.detail-item a {
  display: block;
  margin-top: 6px;
  color: var(--silver-soft);
}

.map-block {
  min-height: 280px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(220, 227, 223, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 185, 110, 0.08) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(101, 169, 159, 0.18), transparent 36%),
    rgba(8, 17, 14, 0.8);
  background-size: 38px 38px, 38px 38px, auto, auto;
}

.map-pin {
  position: absolute;
  left: 52%;
  top: 46%;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: rgba(216, 185, 110, 0.18);
  box-shadow: 0 0 28px rgba(216, 185, 110, 0.7);
}

.map-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: var(--silver-soft);
  font-weight: 800;
  text-transform: uppercase;
}

.legal-card {
  padding: 24px;
}

.legal-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(216, 185, 110, 0.32);
  border-radius: 6px;
  background: rgba(216, 185, 110, 0.09);
  color: var(--gold-soft);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.legal-card h2,
.legal-card h3 {
  margin-bottom: 12px;
}

.legal-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--silver-muted);
}

.highlight-strip {
  margin: 28px 0;
  padding: 20px;
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  background: rgba(216, 185, 110, 0.08);
}

.site-footer {
  padding: 58px 0 34px;
  border-top: 1px solid rgba(220, 227, 223, 0.12);
  background: rgba(5, 9, 7, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-links a {
  color: var(--silver-muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.footer-note {
  margin-top: 22px;
  color: var(--silver-muted);
  font-size: 0.88rem;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 70;
  width: min(720px, calc(100% - 32px));
  display: none;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(216, 185, 110, 0.28);
  border-radius: var(--radius);
  background: rgba(8, 17, 14, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.cookie-banner.is-visible {
  display: grid;
  animation: fadeUp 360ms ease both;
}

.cookie-banner p {
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hidden {
  display: none !important;
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 82px 82px, 82px 82px;
  }
}

@keyframes scanLine {
  0%,
  52% {
    transform: translateX(-120%);
  }
  78%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 3.7rem;
  }

  .hero-grid,
  .featured-layout,
  .magazine-feature,
  .featured-guide,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-dash {
    transform: none;
  }

  .tournament-grid,
  .strategy-grid,
  .article-grid,
  .guide-grid,
  .review-grid,
  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .academy-layout {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(216, 185, 110, 0.24);
    border-radius: var(--radius);
    background: rgba(8, 17, 14, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .section,
  .section.compact {
    padding: 72px 0;
  }

  .section-header,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 3rem;
  }

  .section-title,
  h2 {
    font-size: 2rem;
  }

  .hero {
    min-height: auto;
    padding-top: 122px;
    padding-bottom: 116px;
  }

  .signal-row,
  .stats-grid,
  .insight-card.is-active {
    grid-template-columns: 1fr;
  }

  .hero-peek {
    bottom: 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .story-card {
    min-height: 460px;
  }

  .story-card h3 {
    font-size: 1.6rem;
  }

  .review-card {
    grid-template-columns: 1fr;
  }

  .review-media {
    min-height: 260px;
  }
}

@media (max-width: 620px) {
  .container,
  .wide-container {
    width: min(100% - 28px, 1180px);
  }

  .brand-word small {
    display: none;
  }

  h1 {
    font-size: 2.36rem;
  }

  .section-title,
  h2 {
    font-size: 1.72rem;
  }

  .article-grid,
  .guide-grid,
  .review-grid,
  .legal-grid,
  .tournament-grid,
  .strategy-grid,
  .mini-grid,
  .form-grid,
  .pros-cons {
    grid-template-columns: 1fr;
  }

  .compact-story {
    grid-template-columns: 1fr;
  }

  .compact-story img {
    min-height: 190px;
  }

  .page-hero {
    min-height: 500px;
    padding-top: 126px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }
}
