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

:root {
  --bg: #0b0d0c;
  --bg-2: #111410;
  --ink: #efe7d4;
  --muted: #b8ae9c;
  --muted-2: #887f70;
  --emerald: #129c67;
  --emerald-2: #42b184;
  --orange: #d47a38;
  --orange-2: #e1a264;
  --metal: #a7b0a6;
  --panel: rgba(23, 28, 24, 0.68);
  --panel-strong: rgba(25, 31, 27, 0.86);
  --panel-soft: rgba(239, 231, 212, 0.055);
  --line: rgba(239, 231, 212, 0.16);
  --line-strong: rgba(18, 156, 103, 0.42);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --soft-glow: 0 0 42px rgba(18, 156, 103, 0.17);
  --radius: 8px;
  --nav-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 18%, rgba(18, 156, 103, 0.09), transparent 30%),
    radial-gradient(circle at 84% 10%, rgba(212, 122, 56, 0.08), transparent 29%),
    linear-gradient(135deg, #090b0a 0%, #111410 48%, #15150f 100%);
  color: var(--ink);
  font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  opacity: 0;
  overflow-x: hidden;
  transition: opacity 420ms ease;
}

body.page-loaded {
  opacity: 1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(rgba(239, 231, 212, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 231, 212, 0.026) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 72%, transparent);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.025), transparent 28%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 7px);
  opacity: 0.38;
}

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

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

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

h1,
h2,
h3,
h4,
.brand-mark {
  font-family: "Space Grotesk", system-ui, sans-serif;
  letter-spacing: 0;
  line-height: 0.98;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
}

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

button {
  cursor: pointer;
}

::selection {
  background: rgba(18, 156, 103, 0.42);
  color: var(--ink);
}

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

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

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-height);
  border-bottom: 1px solid transparent;
  background: rgba(11, 13, 12, 0.2);
  backdrop-filter: blur(12px);
  transition: height 260ms ease, background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.site-nav.is-scrolled,
.site-nav.nav-open {
  height: 68px;
  border-color: var(--line);
  background: rgba(11, 13, 12, 0.82);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

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

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(18, 156, 103, 0.3);
}

.brand-mark {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.domain {
  color: var(--orange-2);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.nav-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 1px;
  background: var(--emerald);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus,
.nav-menu a.active {
  color: var(--ink);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(239, 231, 212, 0.06);
  color: var(--ink);
}

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

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(2px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(0) rotate(-45deg);
}

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

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 38px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--orange-2);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--emerald);
}

.section-title {
  max-width: 760px;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
}

.section-copy {
  max-width: 650px;
  margin-top: 18px;
  font-size: 1.02rem;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: calc(var(--nav-height) + 42px) 0 72px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11, 13, 12, 0.88), rgba(11, 13, 12, 0.46) 46%, rgba(11, 13, 12, 0.76)),
    url("../img/hero.jpg") center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(128deg, transparent 0 58%, rgba(18, 156, 103, 0.12) 58.2% 58.6%, transparent 58.8%),
    linear-gradient(108deg, transparent 0 72%, rgba(212, 122, 56, 0.13) 72.2% 72.6%, transparent 72.8%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 160px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: 52px;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 8.2vw, 8.5rem);
  text-transform: uppercase;
}

.hero .lead {
  max-width: 650px;
  margin-top: 24px;
  color: #d9cfb9;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
}

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

.btn-nx,
.btn-ghost,
.btn-mini {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0 20px;
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
  isolation: isolate;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.btn-nx {
  background: rgba(18, 156, 103, 0.18);
  box-shadow: var(--soft-glow);
}

.btn-ghost {
  background: rgba(239, 231, 212, 0.055);
  border-color: var(--line);
}

.btn-mini {
  min-height: 36px;
  padding: 0 13px;
  font-size: 0.72rem;
  background: rgba(212, 122, 56, 0.1);
}

.btn-nx::before,
.btn-ghost::before,
.btn-mini::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent, rgba(239, 231, 212, 0.18), transparent);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.btn-nx:hover,
.btn-ghost:hover,
.btn-mini:hover,
.btn-nx:focus,
.btn-ghost:focus,
.btn-mini:focus {
  transform: translateY(-2px);
  border-color: var(--orange-2);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28), var(--soft-glow);
}

.btn-nx:hover::before,
.btn-ghost:hover::before,
.btn-mini:hover::before,
.btn-nx:focus::before,
.btn-ghost:focus::before,
.btn-mini:focus::before {
  transform: translateX(120%);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 46px;
  max-width: 720px;
}

.meta-tile,
.glass-panel,
.article-card,
.feature-card,
.review-card,
.guide-card,
.legal-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.meta-tile {
  padding: 18px;
}

.meta-tile strong {
  display: block;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
}

.meta-tile span {
  color: var(--muted-2);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-orbit {
  position: relative;
  min-height: 560px;
}

.orbital-core {
  position: absolute;
  inset: 12% 7% 12% 10%;
  border: 1px solid rgba(18, 156, 103, 0.32);
  border-radius: 50%;
  animation: slowSpin 28s linear infinite;
}

.orbital-core::before,
.orbital-core::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(239, 231, 212, 0.16);
  border-radius: 50%;
}

.orbital-core::before {
  inset: 12%;
  transform: rotate(35deg);
}

.orbital-core::after {
  inset: 24%;
  border-color: rgba(212, 122, 56, 0.34);
  transform: rotate(-22deg);
}

.floating-widget {
  position: absolute;
  width: min(240px, 48vw);
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(20, 25, 22, 0.72);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  animation: floatDrift 6s ease-in-out infinite;
}

.floating-widget:nth-child(2) {
  top: 4%;
  right: 0;
}

.floating-widget:nth-child(3) {
  top: 44%;
  left: 0;
  animation-delay: -1.6s;
}

.floating-widget:nth-child(4) {
  right: 12%;
  bottom: 2%;
  animation-delay: -3s;
}

.widget-label {
  color: var(--orange-2);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.widget-value {
  display: block;
  margin: 8px 0 3px;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.signal-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}

.signal-row i {
  display: block;
  height: 5px;
  flex: 1;
  background: rgba(18, 156, 103, 0.26);
}

.signal-row i:nth-child(2),
.signal-row i:nth-child(4) {
  background: rgba(212, 122, 56, 0.38);
}

.particle-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle-field i {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--emerald-2);
  opacity: 0.35;
  animation: particleRise linear infinite;
}

.diagonal-divider {
  position: absolute;
  inset: auto 0 -1px 0;
  height: 94px;
  background: linear-gradient(168deg, transparent 0 49%, var(--bg) 50%);
  pointer-events: none;
}

.pulse-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.82fr);
  gap: 26px;
  align-items: stretch;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 540px;
}

.feature-card img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 620ms ease, opacity 300ms ease;
}

.feature-card:hover img {
  transform: scale(1.055);
  opacity: 0.9;
}

.feature-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px;
  background: linear-gradient(to top, rgba(7, 8, 7, 0.95), transparent);
}

.feature-body h3 {
  max-width: 650px;
  margin: 14px 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
}

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

.pulse-row,
.compact-row {
  position: relative;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(239, 231, 212, 0.045);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.pulse-row::before,
.compact-row::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--emerald);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 220ms ease;
}

.pulse-row:hover,
.compact-row:hover {
  transform: translateX(4px);
  border-color: var(--line-strong);
  background: rgba(239, 231, 212, 0.07);
}

.pulse-row:hover::before,
.compact-row:hover::before {
  transform: scaleY(1);
}

.pulse-row img,
.compact-row img {
  width: 108px;
  height: 96px;
  object-fit: cover;
  border-radius: 6px;
}

.tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted-2);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border: 1px solid rgba(18, 156, 103, 0.36);
  border-radius: 999px;
  padding: 0 9px;
  color: var(--emerald-2);
  background: rgba(18, 156, 103, 0.08);
}

.tag.orange {
  border-color: rgba(212, 122, 56, 0.4);
  color: var(--orange-2);
  background: rgba(212, 122, 56, 0.08);
}

.pulse-row h3,
.compact-row h3,
.article-card h3,
.guide-card h3,
.review-card h3 {
  margin: 8px 0;
  font-size: 1.05rem;
  line-height: 1.18;
}

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

.glass-panel {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.panel-title h3 {
  font-size: 1.34rem;
}

.activity-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.activity-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 18px var(--emerald);
  animation: pulseDot 1.6s ease-in-out infinite;
}

.tournament-list {
  display: grid;
  gap: 12px;
}

.tournament-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.countdown {
  min-width: 128px;
  border-left: 1px solid var(--line);
  padding-left: 16px;
  color: var(--orange-2);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-align: right;
}

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

.ranking-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(239, 231, 212, 0.045);
}

.ranking-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.4rem;
}

.ranking-card span {
  color: var(--muted-2);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-bars {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

.status-bars span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--emerald), rgba(18, 156, 103, 0.12));
  transform-origin: left;
  animation: barScan 3s ease-in-out infinite;
}

.status-bars span:nth-child(2) {
  width: 77%;
  background: linear-gradient(90deg, var(--orange), rgba(212, 122, 56, 0.1));
  animation-delay: -1s;
}

.status-bars span:nth-child(3) {
  width: 54%;
  animation-delay: -2s;
}

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

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

.guide-card:hover,
.review-card:hover,
.article-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42), var(--soft-glow);
}

.vault-card {
  min-height: 240px;
  padding: 22px;
}

.vault-number {
  color: var(--orange-2);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.vault-more {
  max-height: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: max-height 320ms ease, opacity 250ms ease, transform 250ms ease;
}

.vault-card:hover .vault-more {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
}

.metrics-band {
  position: relative;
  background:
    linear-gradient(104deg, rgba(18, 156, 103, 0.11), transparent 40%),
    linear-gradient(276deg, rgba(212, 122, 56, 0.11), transparent 44%),
    rgba(239, 231, 212, 0.035);
  border-block: 1px solid var(--line);
}

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

.metric-card {
  padding: 24px 18px;
  border-inline-start: 1px solid var(--line);
}

.metric-card strong {
  display: block;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.metric-card span {
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}

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

.impression-track {
  display: flex;
  transition: transform 420ms cubic-bezier(.22,.61,.36,1);
}

.impression-slide {
  min-width: 100%;
  padding: 4px;
}

.impression-card {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 24px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(239, 231, 212, 0.055);
  backdrop-filter: blur(18px);
}

.rating {
  color: var(--orange-2);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  animation: ratingPulse 2.4s ease-in-out infinite;
}

.quote-mark {
  display: block;
  color: rgba(18, 156, 103, 0.42);
  font-family: "Space Grotesk", sans-serif;
  font-size: 7rem;
  line-height: 0.7;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(239, 231, 212, 0.055);
  color: var(--ink);
  transition: transform 220ms ease, border-color 220ms ease;
}

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

.slider-dots {
  display: flex;
  gap: 8px;
  margin-left: 8px;
}

.slider-dots button {
  width: 24px;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: rgba(239, 231, 212, 0.22);
  padding: 0;
}

.slider-dots button.active {
  background: var(--emerald);
}

.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 96px) 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(11, 13, 12, 0.93), rgba(11, 13, 12, 0.72)),
    var(--page-image, url("../img/arena.jpg")) center/cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 54%, rgba(18, 156, 103, 0.13) 54.2% 54.6%, transparent 54.8%),
    linear-gradient(98deg, transparent 0 80%, rgba(212, 122, 56, 0.12) 80.2% 80.6%, transparent 80.8%);
  pointer-events: none;
}

.page-hero .container-nx {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 940px;
  font-size: clamp(3rem, 8vw, 7.6rem);
  text-transform: uppercase;
}

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

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

.article-card img,
.review-card img,
.guide-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 540ms ease, opacity 260ms ease;
}

.article-card:hover img,
.review-card:hover img,
.guide-card:hover img {
  transform: scale(1.04);
  opacity: 0.94;
}

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

.metadata {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted-2);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-news {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
  gap: 24px;
  align-items: stretch;
}

.feature-news .feature-card {
  min-height: 480px;
}

.feature-news .feature-card img {
  min-height: 480px;
}

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

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

.filter-panel h2 {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

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

.filter-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 13px;
  background: rgba(239, 231, 212, 0.04);
  color: var(--muted);
  font-weight: 700;
  text-align: left;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease;
}

.filter-btn.active,
.filter-btn:hover,
.filter-btn:focus {
  border-color: var(--emerald);
  background: rgba(18, 156, 103, 0.11);
  color: var(--ink);
}

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

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

.difficulty {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 9px;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(18, 156, 103, 0.18);
  border: 1px solid rgba(18, 156, 103, 0.38);
}

.difficulty.elite {
  background: rgba(212, 122, 56, 0.16);
  border-color: rgba(212, 122, 56, 0.4);
}

.difficulty.beginner {
  background: rgba(239, 231, 212, 0.08);
  border-color: rgba(239, 231, 212, 0.18);
}

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

.score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.score-ring {
  --score: 84%;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--bg) 0 55%, transparent 56%),
    conic-gradient(var(--emerald) var(--score), rgba(239, 231, 212, 0.12) 0);
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.38), 0 0 30px rgba(18, 156, 103, 0.12);
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.pros-cons div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px;
  background: rgba(255, 255, 255, 0.034);
}

.pros-cons h4 {
  margin-bottom: 8px;
  color: var(--orange-2);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.pros-cons ul {
  margin: 0;
  padding-left: 17px;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.contact-panel {
  padding: 24px;
}

.contact-detail {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.detail-line {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(239, 231, 212, 0.04);
}

.detail-icon,
.legal-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(18, 156, 103, 0.38);
  border-radius: 50%;
  color: var(--emerald-2);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.nx-form {
  display: grid;
  gap: 16px;
}

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

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: rgba(6, 8, 7, 0.54);
  color: var(--ink);
  outline: 0;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--emerald);
  background: rgba(11, 14, 12, 0.88);
  box-shadow: 0 0 0 4px rgba(18, 156, 103, 0.1);
}

.field-error {
  min-height: 18px;
  margin-top: 5px;
  color: var(--orange-2);
  font-size: 0.76rem;
}

.form-status {
  display: none;
  border: 1px solid rgba(18, 156, 103, 0.42);
  border-radius: var(--radius);
  padding: 13px;
  color: var(--ink);
  background: rgba(18, 156, 103, 0.11);
}

.form-status.is-visible {
  display: block;
  animation: revealUp 420ms ease both;
}

.map-placeholder {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18, 156, 103, 0.16), transparent 32%),
    linear-gradient(45deg, transparent 0 49%, rgba(212, 122, 56, 0.24) 50%, transparent 51%),
    repeating-linear-gradient(90deg, rgba(239, 231, 212, 0.05) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(0deg, rgba(239, 231, 212, 0.04) 0 1px, transparent 1px 38px),
    #111410;
}

.map-marker {
  position: absolute;
  left: 52%;
  top: 46%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 12px rgba(212, 122, 56, 0.12), 0 0 34px rgba(212, 122, 56, 0.4);
}

.map-label {
  position: absolute;
  left: 52%;
  top: calc(46% + 30px);
  transform: translateX(-40%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(11, 13, 12, 0.78);
  color: var(--ink);
  font-weight: 700;
}

.legal-wrap {
  display: grid;
  gap: 18px;
  max-width: 940px;
}

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

.legal-card h2 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

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

.legal-highlight {
  border-left: 3px solid var(--orange);
  margin-top: 18px;
  padding: 12px 14px;
  background: rgba(212, 122, 56, 0.08);
  color: var(--ink);
}

.footer {
  position: relative;
  padding: 56px 0 32px;
  border-top: 1px solid var(--line);
  background: rgba(7, 8, 7, 0.62);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--emerald-2);
}

.footer small {
  display: block;
  margin-top: 22px;
  color: var(--muted-2);
}

.cookie-banner {
  position: fixed;
  z-index: 1200;
  right: 18px;
  bottom: 18px;
  width: min(430px, calc(100% - 36px));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(15, 18, 16, 0.93);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 340ms ease, opacity 340ms ease;
}

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

.cookie-banner h2 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

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

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

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

.reveal:nth-child(2) {
  transition-delay: 70ms;
}

.reveal:nth-child(3) {
  transition-delay: 140ms;
}

.reveal:nth-child(4) {
  transition-delay: 210ms;
}

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

@keyframes floatDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes particleRise {
  from {
    transform: translateY(18px);
  }
  to {
    transform: translateY(-120vh);
  }
}

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

@keyframes barScan {
  0%,
  100% {
    transform: scaleX(0.62);
  }
  50% {
    transform: scaleX(1);
  }
}

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

@keyframes ratingPulse {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(212, 122, 56, 0);
  }
  50% {
    text-shadow: 0 0 18px rgba(212, 122, 56, 0.44);
  }
}

@media (max-width: 992px) {
  :root {
    --nav-height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 76px;
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    background: rgba(11, 13, 12, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

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

  .nav-menu a {
    min-height: 48px;
  }

  .hero-grid,
  .pulse-layout,
  .dashboard-grid,
  .feature-news,
  .academy-layout,
  .contact-grid,
  .impression-card {
    grid-template-columns: 1fr;
  }

  .hero-orbit {
    min-height: 420px;
  }

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

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

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

@media (max-width: 720px) {
  body {
    line-height: 1.55;
  }

  .container-nx {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 76px 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 16px;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 48px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.75rem, 17vw, 4.65rem);
  }

  .hero-meta,
  .article-grid,
  .guide-grid,
  .review-grid,
  .vault-grid,
  .field-grid,
  .ranking-grid,
  .pros-cons,
  .metric-grid {
    grid-template-columns: 1fr;
  }

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

  .floating-widget:nth-child(2) {
    top: 0;
    right: 8%;
  }

  .floating-widget:nth-child(3) {
    top: 36%;
    left: 0;
  }

  .floating-widget:nth-child(4) {
    right: 0;
    bottom: 0;
  }

  .pulse-row,
  .compact-row {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 13px;
    padding: 12px;
  }

  .pulse-row img,
  .compact-row img {
    width: 86px;
    height: 86px;
  }

  .feature-card,
  .feature-card img,
  .feature-news .feature-card,
  .feature-news .feature-card img {
    min-height: 420px;
  }

  .feature-body {
    padding: 22px;
  }

  .tournament-item {
    grid-template-columns: 1fr;
  }

  .countdown {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 10px 0 0;
    text-align: left;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
