@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Orbitron:wght@500;700;800&family=Newsreader:opsz,wght@6..72,500;6..72,700&display=swap");

:root {
  --void: #0c1217;
  --deep-slate: #111b22;
  --slate: #17242c;
  --graphite: #20262a;
  --graphite-2: #2b3032;
  --stone: #c8bdaa;
  --stone-soft: #eee8dd;
  --muted: #95a19d;
  --muted-2: #6f7b79;
  --copper: #b77c49;
  --copper-bright: #d6a56c;
  --glacier: #8ec6d3;
  --glacier-soft: #c7e7eb;
  --danger: #d58471;
  --success: #98c59a;
  --line: rgba(238, 232, 221, 0.12);
  --line-strong: rgba(199, 231, 235, 0.24);
  --glass: rgba(23, 36, 44, 0.72);
  --glass-dark: rgba(10, 16, 20, 0.78);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 18px 42px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --radius-small: 4px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--stone-soft);
  background:
    linear-gradient(115deg, rgba(183, 124, 73, 0.08), transparent 28%),
    linear-gradient(245deg, rgba(142, 198, 211, 0.08), transparent 32%),
    var(--void);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(238, 232, 221, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 232, 221, 0.035) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.1));
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 12px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.045), transparent 22%, rgba(0, 0, 0, 0.28));
  mix-blend-mode: soft-light;
}

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

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

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

button {
  cursor: pointer;
}

p {
  margin: 0;
  color: rgba(238, 232, 221, 0.78);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--stone-soft);
  line-height: 1.04;
  letter-spacing: 0;
}

h1,
h2,
.brand-word,
.kicker,
.eyebrow,
.nav-links a,
.btn,
.metric-card span,
.tag,
.label,
.difficulty,
.read-time,
.score-label,
.footer-title {
  font-family: "Orbitron", "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  font-size: 5rem;
  max-width: 980px;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.45rem;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border: 1px solid var(--glacier);
  background: var(--void);
  color: var(--stone-soft);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

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

.section-tight {
  padding: 78px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head p {
  max-width: 580px;
}

.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--copper-bright);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.kicker::before,
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--glacier);
  box-shadow: 0 0 16px rgba(142, 198, 211, 0.7);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.nav-open {
  background: rgba(12, 18, 23, 0.86);
  border-bottom-color: var(--line);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.nav-shell {
  width: min(calc(100% - 36px), 1240px);
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-grid;
  grid-template-columns: 42px auto;
  gap: 12px;
  align-items: center;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  box-shadow: 0 0 28px rgba(183, 124, 73, 0.26);
}

.brand-word {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.brand small {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: rgba(238, 232, 221, 0.74);
  font-size: 0.74rem;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--stone-soft);
  border-color: rgba(142, 198, 211, 0.22);
  background: rgba(142, 198, 211, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(238, 232, 221, 0.05);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--stone-soft);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(238, 232, 221, 0.16);
  border-radius: var(--radius-small);
  color: var(--stone-soft);
  font-size: 0.76rem;
  font-weight: 800;
  overflow: hidden;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-105%) skewX(-16deg);
  background: rgba(255, 255, 255, 0.16);
  transition: transform 260ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 231, 235, 0.45);
}

.btn:hover::after {
  transform: translateX(105%) skewX(-16deg);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(183, 124, 73, 0.9), rgba(132, 88, 52, 0.9));
  box-shadow: 0 18px 36px rgba(183, 124, 73, 0.18);
}

.btn-ghost {
  background: rgba(142, 198, 211, 0.08);
}

.command-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 76px;
  isolation: isolate;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -4;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 18, 23, 0.94), rgba(12, 18, 23, 0.58) 52%, rgba(12, 18, 23, 0.84)),
    linear-gradient(to top, var(--void), transparent 46%);
}

.tactical-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(142, 198, 211, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 198, 211, 0.12) 1px, transparent 1px);
  background-size: 74px 74px;
  animation: gridShift 16s linear infinite;
}

.tactical-grid::after {
  content: "";
  position: absolute;
  inset: 14% 7% 12% 38%;
  border: 1px solid rgba(183, 124, 73, 0.28);
  clip-path: polygon(0 12%, 88% 0, 100% 42%, 82% 100%, 10% 92%);
  box-shadow: inset 0 0 48px rgba(183, 124, 73, 0.08), 0 0 38px rgba(142, 198, 211, 0.08);
}

.scanline {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(199, 231, 235, 0.08), transparent);
  height: 42%;
  animation: scanMove 7s ease-in-out infinite;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.58fr);
  gap: 52px;
  align-items: center;
}

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

.hero-copy p {
  max-width: 660px;
  margin: 24px 0 34px;
  font-size: 1.14rem;
}

.hero-widgets {
  position: relative;
  min-height: 520px;
}

.hud-widget {
  position: absolute;
  width: 260px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(20, 31, 38, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hud-widget::before,
.panel::before,
.article-card::before,
.review-card::before,
.legal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(199, 231, 235, 0.36);
  pointer-events: none;
}

.hud-widget span,
.hud-widget small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}

.hud-widget strong {
  display: block;
  margin: 7px 0;
  color: var(--glacier-soft);
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
}

.widget-a {
  top: 30px;
  right: 48px;
}

.widget-b {
  top: 210px;
  left: 0;
}

.widget-c {
  bottom: 24px;
  right: 0;
}

.radar {
  width: 190px;
  height: 190px;
  margin: 0 auto;
  border: 1px solid rgba(142, 198, 211, 0.28);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49%, rgba(142, 198, 211, 0.18) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(142, 198, 211, 0.18) 50%, transparent 51%),
    radial-gradient(circle, transparent 18%, rgba(142, 198, 211, 0.12) 19%, transparent 20%, transparent 42%, rgba(183, 124, 73, 0.18) 43%, transparent 44%);
  position: relative;
}

.radar::after {
  content: "";
  position: absolute;
  inset: 50% 50% 0 50%;
  width: 50%;
  height: 1px;
  transform-origin: left center;
  background: var(--glacier);
  box-shadow: 0 0 22px rgba(142, 198, 211, 0.8);
  animation: radarSpin 4s linear infinite;
}

.panel,
.article-card,
.guide-card,
.review-card,
.legal-card,
.contact-card,
.metric-card,
.signal-card,
.tournament-card,
.side-story,
.play-card,
.map-panel,
.feature-strip {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.panel-pad {
  padding: 24px;
}

.image-panel {
  min-height: 360px;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.image-panel::after,
.article-media::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 18, 23, 0.88), transparent 58%);
}

.live-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.55fr);
  gap: 28px;
  align-items: stretch;
}

.feature-article {
  min-height: 540px;
  display: grid;
  align-items: end;
  padding: 28px;
  background-image: linear-gradient(to top, rgba(12, 18, 23, 0.96), transparent 52%), var(--feature-img);
  background-size: cover;
  background-position: center;
}

.feature-article .content {
  max-width: 720px;
}

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

.tag,
.read-time,
.difficulty,
.score-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(238, 232, 221, 0.14);
  border-radius: var(--radius-small);
  color: var(--stone-soft);
  font-size: 0.68rem;
  font-weight: 800;
  background: rgba(238, 232, 221, 0.06);
}

.tag {
  color: var(--glacier-soft);
  border-color: rgba(142, 198, 211, 0.28);
  background: rgba(142, 198, 211, 0.08);
}

.tag.copper,
.difficulty.elite {
  color: var(--copper-bright);
  border-color: rgba(183, 124, 73, 0.36);
  background: rgba(183, 124, 73, 0.1);
}

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

.side-story {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  min-height: 146px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.side-story img {
  width: 108px;
  height: 100%;
  min-height: 118px;
  object-fit: cover;
  border-radius: var(--radius-small);
}

.side-story:hover,
.article-card:hover,
.guide-card:hover,
.review-card:hover,
.play-card:hover,
.tournament-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 231, 235, 0.36);
  background: rgba(24, 38, 46, 0.82);
}

.ops-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.5fr);
  gap: 28px;
}

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

.tournament-card {
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.status-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.activity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--glacier-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.activity::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 18px rgba(152, 197, 154, 0.75);
  animation: pulse 1.8s ease-in-out infinite;
}

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

.countdown span {
  display: grid;
  place-items: center;
  min-height: 58px;
  border: 1px solid rgba(238, 232, 221, 0.1);
  border-radius: var(--radius-small);
  background: rgba(0, 0, 0, 0.16);
  color: var(--glacier-soft);
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
}

.rank-widget {
  padding: 24px;
}

.rank-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}

.rank-table th,
.rank-table td {
  padding: 13px 0;
  border-bottom: 1px solid rgba(238, 232, 221, 0.1);
  text-align: left;
  color: rgba(238, 232, 221, 0.82);
}

.rank-table th {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.rank-table td:last-child,
.rank-table th:last-child {
  text-align: right;
}

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

.play-card {
  min-height: 238px;
  padding: 24px;
  transition: transform 180ms ease, min-height 220ms ease, border-color 180ms ease, background 180ms ease;
}

.play-card .index {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--copper-bright);
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
}

.play-card p {
  margin-top: 14px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 240ms ease, opacity 240ms ease;
}

.play-card:hover p,
.play-card:focus-within p {
  max-height: 180px;
  opacity: 1;
}

.metrics-band {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(183, 124, 73, 0.1), transparent 32%, rgba(142, 198, 211, 0.08)),
    rgba(20, 26, 29, 0.58);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.metric-card {
  padding: 24px;
}

.metric-card strong {
  display: block;
  color: var(--stone-soft);
  font-family: "Orbitron", sans-serif;
  font-size: 2.35rem;
  line-height: 1;
}

.metric-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.72rem;
}

.signals-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.75fr);
  gap: 28px;
  align-items: center;
}

.signal-stage {
  position: relative;
  min-height: 360px;
}

.signal-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(28px);
  pointer-events: none;
  transition: opacity 280ms ease, transform 280ms ease;
}

.signal-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.signal-card {
  height: 100%;
  padding: 30px;
}

.rating {
  display: flex;
  gap: 5px;
  margin: 0 0 22px;
}

.rating span {
  width: 22px;
  height: 6px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--copper), var(--glacier));
  box-shadow: 0 0 15px rgba(142, 198, 211, 0.24);
}

.signal-person {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(238, 232, 221, 0.1);
}

.signal-controls {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(238, 232, 221, 0.05);
  color: var(--stone-soft);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.icon-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 231, 235, 0.36);
  background: rgba(142, 198, 211, 0.1);
}

.signal-dots {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.signal-dot {
  width: 28px;
  height: 4px;
  border: 0;
  border-radius: 1px;
  background: rgba(238, 232, 221, 0.2);
}

.signal-dot.is-active {
  background: var(--copper-bright);
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 150px 0 82px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  filter: saturate(0.86) contrast(1.08);
}

.page-hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 18, 23, 0.95), rgba(12, 18, 23, 0.58)),
    linear-gradient(to top, var(--void), transparent 62%);
}

.page-hero-content {
  max-width: 840px;
}

.page-hero h1 {
  font-size: 4.2rem;
}

.page-hero p {
  max-width: 700px;
  margin-top: 22px;
  font-size: 1.08rem;
}

.mag-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.72fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
}

.mag-feature .image-panel {
  min-height: 500px;
}

.feature-copy {
  padding: 34px;
  display: grid;
  align-content: end;
}

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

.article-card {
  min-height: 100%;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.article-media {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.article-card:hover .article-media img {
  transform: scale(1.05);
}

.article-body {
  padding: 20px;
}

.article-body p,
.review-card p,
.guide-card p {
  margin-top: 12px;
}

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

.guide-sidebar {
  position: sticky;
  top: 100px;
  padding: 18px;
}

.guide-filter {
  display: block;
  width: 100%;
  min-height: 42px;
  margin-bottom: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  background: rgba(238, 232, 221, 0.04);
  color: rgba(238, 232, 221, 0.78);
  text-align: left;
  padding: 0 12px;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.guide-filter:hover,
.guide-filter.is-active {
  color: var(--stone-soft);
  border-color: rgba(142, 198, 211, 0.28);
  background: rgba(142, 198, 211, 0.09);
}

.feature-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 0;
  margin-bottom: 24px;
}

.feature-strip img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.feature-strip .feature-copy {
  padding: 28px;
}

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

.guide-card {
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, opacity 180ms ease;
}

.guide-card.is-hidden {
  display: none;
}

.difficulty.rookie {
  color: var(--success);
  border-color: rgba(152, 197, 154, 0.34);
}

.difficulty.tactical {
  color: var(--glacier-soft);
  border-color: rgba(142, 198, 211, 0.34);
}

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

.review-card {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 22px;
  padding: 20px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.score-ring {
  --score: 82%;
  width: 138px;
  height: 138px;
  align-self: start;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--deep-slate) 0 55%, transparent 56%),
    conic-gradient(var(--copper-bright) var(--score), rgba(238, 232, 221, 0.12) 0);
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.38), 0 0 30px rgba(183, 124, 73, 0.12);
}

.score-ring strong {
  color: var(--stone-soft);
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

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

.pros-cons div {
  padding: 14px;
  border: 1px solid rgba(238, 232, 221, 0.1);
  border-radius: var(--radius-small);
  background: rgba(0, 0, 0, 0.14);
}

.pros-cons h4 {
  margin-bottom: 8px;
  font-size: 0.82rem;
}

.pros-cons ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(238, 232, 221, 0.72);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.45fr);
  gap: 28px;
  align-items: start;
}

.contact-card,
.map-panel {
  padding: 28px;
}

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

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

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

.field label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(238, 232, 221, 0.14);
  border-radius: var(--radius-small);
  background: rgba(7, 11, 14, 0.54);
  color: var(--stone-soft);
  outline: 0;
  padding: 13px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--glacier);
  background: rgba(7, 11, 14, 0.72);
  box-shadow: 0 0 0 3px rgba(142, 198, 211, 0.12);
}

.field-error {
  min-height: 18px;
  color: var(--danger);
  font-size: 0.78rem;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.contact-item {
  padding: 16px;
  border: 1px solid rgba(238, 232, 221, 0.1);
  border-radius: var(--radius-small);
  background: rgba(0, 0, 0, 0.15);
}

.map-placeholder {
  position: relative;
  min-height: 300px;
  margin-top: 18px;
  border: 1px solid rgba(142, 198, 211, 0.22);
  border-radius: var(--radius-small);
  overflow: hidden;
  background:
    linear-gradient(45deg, transparent 0 48%, rgba(183, 124, 73, 0.18) 49% 51%, transparent 52%),
    linear-gradient(-45deg, transparent 0 48%, rgba(142, 198, 211, 0.18) 49% 51%, transparent 52%),
    linear-gradient(rgba(238, 232, 221, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 232, 221, 0.05) 1px, transparent 1px),
    rgba(13, 20, 26, 0.9);
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px, auto;
}

.map-marker {
  position: absolute;
  left: 58%;
  top: 44%;
  width: 18px;
  height: 18px;
  border: 2px solid var(--glacier);
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 12px rgba(142, 198, 211, 0.1), 0 0 28px rgba(142, 198, 211, 0.5);
}

.success-toast {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 1000;
  max-width: 360px;
  transform: translateY(130%);
  opacity: 0;
  padding: 16px 18px;
  border: 1px solid rgba(152, 197, 154, 0.38);
  border-radius: var(--radius);
  background: rgba(18, 31, 27, 0.92);
  color: var(--stone-soft);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, opacity 220ms ease;
}

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

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

.legal-summary {
  position: sticky;
  top: 100px;
  padding: 28px;
}

.legal-grid {
  display: grid;
  gap: 16px;
}

.legal-card {
  padding: 24px;
}

.legal-card h2,
.legal-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: rgba(238, 232, 221, 0.76);
}

.legal-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border: 1px solid rgba(183, 124, 73, 0.34);
  border-radius: var(--radius-small);
  color: var(--copper-bright);
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  background: rgba(183, 124, 73, 0.09);
}

.highlight-box {
  margin-top: 18px;
  padding: 18px;
  border-left: 3px solid var(--glacier);
  background: rgba(142, 198, 211, 0.08);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(8, 12, 15, 0.72);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(3, minmax(130px, 0.28fr));
  gap: 28px;
}

.footer-title {
  color: var(--glacier-soft);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(238, 232, 221, 0.68);
  transition: color 180ms ease;
}

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

.copyright {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(238, 232, 221, 0.08);
  color: var(--muted-2);
  font-size: 0.88rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 950;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(calc(100% - 40px), 920px);
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(199, 231, 235, 0.24);
  border-radius: var(--radius);
  background: rgba(12, 18, 23, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes gridShift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 148px 74px, 148px 74px;
  }
}

@keyframes scanMove {
  0%,
  100% {
    transform: translateY(-48%);
    opacity: 0.2;
  }
  50% {
    transform: translateY(170%);
    opacity: 0.6;
  }
}

@keyframes radarSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

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

  h2 {
    font-size: 2.5rem;
  }

  .hero-layout,
  .live-grid,
  .ops-layout,
  .signals-shell,
  .mag-feature,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero-widgets {
    min-height: 360px;
  }

  .widget-a {
    top: 0;
    right: 0;
  }

  .widget-b {
    top: 115px;
    left: 0;
  }

  .widget-c {
    bottom: 0;
    right: 90px;
  }

  .article-grid,
  .playbook-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-summary,
  .guide-sidebar {
    position: relative;
    top: auto;
  }
}

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

  .nav-links {
    position: absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(12, 18, 23, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.nav-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
  }

  .section,
  .section-tight {
    padding: 78px 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .command-hero {
    padding-top: 120px;
  }

  .page-hero h1 {
    font-size: 3.15rem;
  }

  .hero-widgets {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .hud-widget {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .radar {
    width: 150px;
    height: 150px;
  }

  .tournament-grid,
  .article-grid,
  .guide-grid,
  .review-grid,
  .footer-grid,
  .guide-shell,
  .feature-strip {
    grid-template-columns: 1fr;
  }

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

  .score-ring {
    width: 118px;
    height: 118px;
  }

  .form-grid,
  .pros-cons {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav-shell {
    width: min(calc(100% - 28px), 1240px);
  }

  .brand {
    grid-template-columns: 36px auto;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  h1 {
    font-size: 2.85rem;
  }

  h2,
  .page-hero h1 {
    font-size: 2.35rem;
  }

  .hero-copy p,
  .page-hero p {
    font-size: 1rem;
  }

  .feature-article {
    min-height: 460px;
    padding: 20px;
  }

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

  .side-story img {
    width: 100%;
    height: 170px;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .signal-stage {
    min-height: 430px;
  }

  .cookie-actions,
  .btn-row {
    width: 100%;
  }

  .cookie-actions .btn,
  .btn-row .btn {
    flex: 1;
  }
}
