:root {
  color-scheme: dark;
  --graphite: #080b0c;
  --graphite-2: #101617;
  --graphite-3: #172021;
  --panel: rgba(18, 25, 26, 0.76);
  --panel-solid: #151d1e;
  --steel: #9aa8aa;
  --steel-dark: #536164;
  --paper: #f1eadf;
  --muted: #b8c0bd;
  --dim: #7d8988;
  --crimson: #b64a43;
  --crimson-2: #762f2b;
  --sand: #d4b06d;
  --sand-dark: #7f6942;
  --cyan: #a8eeee;
  --cyan-soft: rgba(168, 238, 238, 0.18);
  --line: rgba(214, 225, 221, 0.14);
  --line-strong: rgba(212, 176, 109, 0.32);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --max: 1180px;
  --radius: 6px;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-head: "Rajdhani", "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--paper);
  background:
    linear-gradient(115deg, rgba(182, 74, 67, 0.05), transparent 32%),
    linear-gradient(180deg, var(--graphite), #0d1111 45%, #070909);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  z-index: -2;
}

body::before {
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(168, 238, 238, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 238, 238, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  animation: grid-drift 18s linear infinite;
}

body::after {
  z-index: -1;
  opacity: 0.22;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 4px),
    linear-gradient(90deg, rgba(212, 176, 109, 0.04), transparent 40%, rgba(182, 74, 67, 0.04));
  mix-blend-mode: screen;
}

@keyframes grid-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(44px, 44px, 0); }
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--paper);
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  font-size: 76px;
}

h2 {
  font-size: 46px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 20px;
}

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

button {
  cursor: pointer;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

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

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

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

.section-angle {
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  background:
    linear-gradient(135deg, rgba(212, 176, 109, 0.07), transparent 36%),
    linear-gradient(180deg, rgba(23, 32, 33, 0.76), rgba(10, 13, 13, 0.92));
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(240px, 0.45fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-kicker,
.eyebrow {
  color: var(--cyan);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(8, 11, 12, 0.78), rgba(8, 11, 12, 0));
  backdrop-filter: blur(10px);
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(212, 176, 109, 0.18);
  background: rgba(9, 13, 14, 0.9);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
}

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

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

.brand-mark img {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(168, 238, 238, 0.34);
  border-radius: 3px;
  background: var(--graphite-2);
  object-fit: cover;
}

.brand-text {
  display: grid;
  gap: 0;
}

.brand-name {
  color: var(--paper);
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.brand-domain {
  color: var(--sand);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(15, 21, 22, 0.42);
}

.nav-links a {
  position: relative;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 200ms ease, background 200ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 10px;
  bottom: 6px;
  left: 10px;
  height: 1px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--paper);
  background: rgba(168, 238, 238, 0.07);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(168, 238, 238, 0.24);
  border-radius: var(--radius);
  background: rgba(13, 18, 19, 0.7);
}

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

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

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

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

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 120px 0 54px;
  background:
    linear-gradient(90deg, rgba(8, 11, 12, 0.94) 0%, rgba(8, 11, 12, 0.72) 48%, rgba(8, 11, 12, 0.9) 100%),
    linear-gradient(180deg, transparent 72%, var(--graphite) 100%),
    url("../img/hero.jpg") center / cover no-repeat;
}

.hero::before,
.hero::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero::before {
  inset: 88px 0 0;
  opacity: 0.52;
  background:
    linear-gradient(90deg, transparent 0 9%, rgba(168, 238, 238, 0.15) 9% 9.1%, transparent 9.1% 90%, rgba(212, 176, 109, 0.13) 90% 90.1%, transparent 90.1%),
    linear-gradient(180deg, transparent 0 21%, rgba(182, 74, 67, 0.12) 21% 21.2%, transparent 21.2% 76%, rgba(168, 238, 238, 0.12) 76% 76.2%, transparent 76.2%);
}

.hero::after {
  right: 0;
  bottom: 42px;
  width: min(48vw, 620px);
  height: 42vh;
  border-top: 1px solid rgba(168, 238, 238, 0.2);
  border-left: 1px solid rgba(212, 176, 109, 0.18);
  background: linear-gradient(135deg, transparent 42%, rgba(182, 74, 67, 0.1) 42% 43%, transparent 43%);
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%, 0 22%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 42px;
}

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

.hero-copy h1 {
  max-width: 820px;
  margin: 14px 0 22px;
}

.hero-copy p {
  max-width: 650px;
  font-size: 18px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px;
  color: var(--paper);
  background: rgba(18, 25, 26, 0.66);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.btn::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  transform: translateX(-120%);
  transition: transform 500ms ease;
}

.btn:hover {
  border-color: rgba(168, 238, 238, 0.55);
  transform: translateY(-2px);
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn-primary {
  border-color: rgba(182, 74, 67, 0.66);
  background: linear-gradient(135deg, rgba(182, 74, 67, 0.78), rgba(118, 47, 43, 0.62));
}

.btn-secondary {
  border-color: rgba(212, 176, 109, 0.44);
}

.btn-ghost {
  border-color: rgba(168, 238, 238, 0.24);
  color: var(--cyan);
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 14px;
}

.stat-widget,
.control-panel,
.floating-card,
.glass-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 34%),
    rgba(17, 24, 25, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.stat-widget {
  padding: 18px;
  overflow: hidden;
  transform: translateY(var(--offset, 0));
  animation: panel-float 5.5s ease-in-out infinite;
}

.stat-widget:nth-child(2) {
  --offset: 12px;
  animation-delay: 0.7s;
}

.stat-widget:nth-child(3) {
  --offset: -8px;
  animation-delay: 1.2s;
}

@keyframes panel-float {
  0%, 100% { transform: translateY(var(--offset, 0)); }
  50% { transform: translateY(calc(var(--offset, 0) - 8px)); }
}

.widget-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.widget-value {
  margin-top: 10px;
  color: var(--paper);
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.widget-bar {
  width: 100%;
  height: 4px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.widget-bar span {
  display: block;
  width: var(--fill, 70%);
  height: 100%;
  background: linear-gradient(90deg, var(--crimson), var(--sand), var(--cyan));
  animation: pulse-width 2.4s ease-in-out infinite;
}

@keyframes pulse-width {
  0%, 100% { opacity: 0.72; }
  50% { opacity: 1; }
}

.intel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(280px, 0.76fr);
  gap: 22px;
}

.featured-article,
.article-card,
.guide-card,
.review-card,
.tournament-card,
.rank-widget,
.legal-card,
.contact-panel,
.signal-card,
.metric-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.055), transparent 28%),
    rgba(16, 23, 24, 0.76);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.featured-article {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.72fr);
  min-height: 390px;
  overflow: hidden;
}

.featured-article .media {
  position: relative;
  min-height: 320px;
}

.featured-article .media img,
.article-card .media img,
.review-card .media img,
.guide-card .media img,
.featured-review .media img,
.featured-guide .media img,
.news-hero-media img {
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.06);
  transition: transform 480ms ease, filter 480ms ease;
}

.featured-article:hover .media img,
.article-card:hover .media img,
.review-card:hover .media img,
.guide-card:hover .media img,
.featured-review:hover .media img,
.featured-guide:hover .media img {
  transform: scale(1.045);
  filter: saturate(0.95) contrast(1.12);
}

.article-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  padding: 28px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag,
.difficulty,
.genre {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border: 1px solid rgba(212, 176, 109, 0.28);
  border-radius: 2px;
  color: var(--sand);
  background: rgba(212, 176, 109, 0.07);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.tag.cyan {
  border-color: rgba(168, 238, 238, 0.28);
  color: var(--cyan);
  background: rgba(168, 238, 238, 0.07);
}

.tag.red {
  border-color: rgba(182, 74, 67, 0.36);
  color: #e7958f;
  background: rgba(182, 74, 67, 0.08);
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--dim);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.compact-feed {
  display: grid;
  gap: 14px;
}

.compact-story {
  position: relative;
  padding: 18px 18px 18px 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 25, 26, 0.72);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.compact-story::before {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 0;
  width: 3px;
  content: "";
  background: linear-gradient(var(--crimson), var(--sand));
}

.compact-story:hover,
.article-card:hover,
.guide-card:hover,
.review-card:hover,
.tournament-card:hover {
  border-color: rgba(168, 238, 238, 0.34);
  background: rgba(23, 32, 33, 0.9);
  transform: translateY(-5px);
}

.compact-story h3 {
  margin: 8px 0;
  font-size: 22px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
}

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

.tournament-card {
  position: relative;
  min-height: 250px;
  padding: 22px;
  overflow: hidden;
}

.tournament-card::after,
.article-card::after,
.guide-card::after,
.review-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 78px;
  height: 78px;
  content: "";
  border-right: 1px solid rgba(168, 238, 238, 0.24);
  border-bottom: 1px solid rgba(168, 238, 238, 0.24);
  background: linear-gradient(135deg, transparent 50%, rgba(168, 238, 238, 0.06) 50%);
  pointer-events: none;
}

.tournament-card h3 {
  margin: 12px 0 14px;
}

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

.countdown span {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.2);
  color: var(--cyan);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.countdown small {
  display: block;
  margin-top: -10px;
  color: var(--dim);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-dot::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

.control-panel {
  padding: 22px;
}

.control-panel h3 {
  margin-bottom: 18px;
}

.rank-widget {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  margin-top: 10px;
}

.rank-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(212, 176, 109, 0.35);
  border-radius: 50%;
  color: var(--sand);
  font-family: var(--font-head);
  font-weight: 700;
}

.rank-widget strong {
  display: block;
  color: var(--paper);
  line-height: 1.2;
}

.rank-widget small {
  color: var(--dim);
  font-weight: 700;
  text-transform: uppercase;
}

.rank-score {
  color: var(--cyan);
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
}

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

.playbook-card {
  position: relative;
  min-height: 230px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(168, 238, 238, 0.06), transparent 36%),
    rgba(16, 23, 24, 0.74);
  transition: min-height 260ms ease, transform 220ms ease, border-color 220ms ease;
}

.playbook-card:hover {
  min-height: 272px;
  border-color: rgba(212, 176, 109, 0.38);
  transform: translateY(-5px);
}

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

.playbook-card:hover p {
  max-height: 180px;
  opacity: 1;
}

.playbook-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 30px;
  border: 1px solid rgba(168, 238, 238, 0.25);
  border-radius: 2px;
  color: var(--cyan);
  font-family: var(--font-head);
  font-weight: 700;
}

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

.metric-card {
  padding: 24px;
}

.metric-value {
  color: var(--sand);
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}

.metric-card p {
  margin-top: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

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

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

.signal-card {
  display: none;
  min-height: 280px;
  padding: 34px;
}

.signal-card.is-active {
  display: grid;
  align-content: center;
  gap: 18px;
  animation: fade-slide 380ms ease both;
}

@keyframes fade-slide {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.stars {
  color: var(--sand);
  font-size: 20px;
}

.signal-card blockquote {
  margin: 0;
  color: var(--paper);
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
}

.signal-card cite {
  color: var(--cyan);
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.carousel-controls {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.icon-btn {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(168, 238, 238, 0.22);
  border-radius: 3px;
  color: var(--paper);
  background: rgba(15, 21, 22, 0.72);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.page-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  padding: 150px 0 76px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 11, 12, 0.95), rgba(8, 11, 12, 0.68), rgba(8, 11, 12, 0.92)),
    var(--page-image, url("../img/command-center.jpg")) center / cover no-repeat;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(212, 176, 109, 0.12) 44% 44.2%, transparent 44.2%),
    linear-gradient(180deg, transparent 70%, var(--graphite) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.page-hero-content p {
  max-width: 640px;
  margin-top: 18px;
  font-size: 18px;
}

.news-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 23, 24, 0.78);
}

.news-hero-media {
  min-height: 360px;
}

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

.article-card,
.guide-card,
.review-card {
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.article-card .media,
.guide-card .media,
.review-card .media {
  height: 210px;
  overflow: hidden;
}

.article-card .article-body,
.guide-card .article-body,
.review-card .article-body {
  min-height: 250px;
  justify-content: flex-start;
  padding: 22px;
}

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

.guide-sidebar {
  position: sticky;
  top: 102px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 21, 22, 0.78);
  backdrop-filter: blur(14px);
}

.guide-sidebar a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-sidebar a:last-child {
  border-bottom: 0;
}

.guide-sidebar a:hover {
  color: var(--cyan);
}

.featured-guide,
.featured-review {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.62fr);
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 23, 24, 0.78);
}

.featured-guide .media,
.featured-review .media {
  min-height: 360px;
}

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

.difficulty.beginner {
  border-color: rgba(168, 238, 238, 0.3);
  color: var(--cyan);
}

.difficulty.advanced {
  border-color: rgba(212, 176, 109, 0.32);
  color: var(--sand);
}

.difficulty.elite {
  border-color: rgba(182, 74, 67, 0.4);
  color: #ee928b;
}

.review-score {
  position: relative;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--panel-solid) 0 55%, transparent 56%),
    conic-gradient(var(--cyan) var(--score, 0%), rgba(255, 255, 255, 0.1) 0);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 34px rgba(168, 238, 238, 0.08);
  color: var(--paper);
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
}

.review-score small {
  color: var(--dim);
  font-size: 12px;
}

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

.pros-cons div {
  min-height: 120px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.17);
}

.pros-cons strong {
  display: block;
  margin-bottom: 6px;
  color: var(--sand);
  font-family: var(--font-head);
  text-transform: uppercase;
}

.pros-cons ul,
.legal-card ul {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 24px;
}

.contact-panel {
  padding: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

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

.field label {
  color: var(--steel);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  color: var(--paper);
  background: rgba(4, 7, 8, 0.44);
  outline: none;
  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: rgba(168, 238, 238, 0.58);
  background: rgba(9, 14, 15, 0.86);
  box-shadow: 0 0 0 4px rgba(168, 238, 238, 0.08);
}

.form-message {
  min-height: 28px;
  margin-top: 16px;
  color: var(--cyan);
  font-weight: 800;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
}

.contact-item strong {
  display: block;
  color: var(--sand);
  font-family: var(--font-head);
  text-transform: uppercase;
}

.map-placeholder {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(168, 238, 238, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(168, 238, 238, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(168, 238, 238, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, rgba(182, 74, 67, 0.18), rgba(15, 21, 22, 0.82)),
    url("../img/command-center.jpg") center / cover no-repeat;
  background-size: 34px 34px, 34px 34px, cover, cover;
}

.map-placeholder::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(212, 176, 109, 0.3);
  clip-path: polygon(0 0, 78% 0, 100% 26%, 100% 100%, 20% 100%, 0 76%);
}

.map-label {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: rgba(8, 11, 12, 0.72);
  backdrop-filter: blur(10px);
}

.legal-layout {
  display: grid;
  gap: 18px;
}

.legal-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  padding: 26px;
}

.legal-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(212, 176, 109, 0.32);
  border-radius: 4px;
  color: var(--sand);
  background: rgba(212, 176, 109, 0.08);
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
}

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

.highlight-box {
  padding: 18px;
  border-left: 3px solid var(--crimson);
  border-radius: 4px;
  margin: 18px 0 0;
  background: rgba(182, 74, 67, 0.08);
}

.site-footer {
  position: relative;
  padding: 58px 0 30px;
  border-top: 1px solid rgba(212, 176, 109, 0.16);
  background: rgba(8, 11, 12, 0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(250px, 0.45fr) minmax(250px, 0.45fr);
  gap: 28px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 26px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--dim);
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  width: min(440px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(212, 176, 109, 0.28);
  border-radius: var(--radius);
  background: rgba(12, 17, 18, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transform: translateY(24px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-banner h3 {
  margin-bottom: 8px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

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

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

.split-rule {
  height: 1px;
  margin: 26px 0;
  background: linear-gradient(90deg, transparent, rgba(212, 176, 109, 0.4), rgba(168, 238, 238, 0.2), transparent);
}

.surface-image {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.surface-image img {
  height: 100%;
  object-fit: cover;
}

.surface-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, transparent 55%, rgba(182, 74, 67, 0.22) 55.2%, transparent 55.4%),
    linear-gradient(180deg, transparent, rgba(8, 11, 12, 0.78));
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.55fr);
  gap: 24px;
  align-items: center;
}

@media (max-width: 1100px) {
  h1 { font-size: 58px; }
  h2 { font-size: 40px; }

  .hero-grid,
  .dashboard-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (max-width: 860px) {
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }
  h3 { font-size: 24px; }

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

  .section {
    padding: 76px 0;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 4px;
    padding: 12px;
    background: rgba(9, 13, 14, 0.96);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

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

  .nav-links a {
    padding: 14px;
  }

  .section-head,
  .intel-layout,
  .featured-article,
  .news-hero,
  .academy-layout,
  .featured-guide,
  .featured-review,
  .two-column {
    grid-template-columns: 1fr;
  }

  .guide-sidebar {
    position: relative;
    top: 0;
  }

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

  .guide-sidebar a {
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-panel,
  .metrics-grid,
  .guides-grid,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .signal-card blockquote {
    font-size: 26px;
  }
}

@media (max-width: 620px) {
  h1 { font-size: 36px; }
  h2 { font-size: 29px; }
  h3 { font-size: 22px; }

  .nav-frame {
    min-height: 70px;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-domain {
    display: none;
  }

  .nav-links {
    top: 70px;
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding-top: 124px;
  }

  .hero-copy p,
  .page-hero-content p {
    font-size: 16px;
  }

  .hero-panel,
  .tournament-grid,
  .magazine-grid,
  .playbook-grid,
  .metrics-grid,
  .guides-grid,
  .reviews-grid,
  .footer-grid,
  .pros-cons,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .article-card .media,
  .guide-card .media,
  .review-card .media,
  .featured-article .media,
  .featured-guide .media,
  .featured-review .media,
  .news-hero-media {
    min-height: 230px;
    height: 230px;
  }

  .article-body,
  .article-card .article-body,
  .guide-card .article-body,
  .review-card .article-body {
    padding: 20px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }
}
