﻿:root {
  --void: #070201;
  --obsidian: #130604;
  --midnight: #24100a;
  --steel: #3a1b10;
  --ink: #fff4e5;
  --muted: #c6a88d;
  --gold: #ffb84f;
  --gold-strong: #ffe0a3;
  --azure: #ff7a3d;
  --violet: #c0472f;
  --crimson: #ff3f2f;
  --emerald: #4de7b1;
  --line: rgba(255, 204, 128, 0.14);
  --line-strong: rgba(255, 204, 128, 0.3);
  --panel: rgba(34, 15, 8, 0.76);
  --panel-strong: rgba(43, 19, 10, 0.92);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --soft-border: rgba(255, 203, 132, 0.12);
  --soft-border-strong: rgba(255, 216, 153, 0.24);
  --max-w: 1240px;
}

* {
  box-sizing: border-box;
}

body.landing-page {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1180px 620px at 8% 14%, rgba(255, 92, 45, 0.19), transparent 64%),
    radial-gradient(1180px 620px at 92% 16%, rgba(255, 184, 79, 0.17), transparent 64%),
    radial-gradient(720px 420px at 56% 120%, rgba(184, 38, 24, 0.2), transparent 68%),
    linear-gradient(180deg, #070201 0%, #130704 42%, #070201 100%);
  overflow-x: hidden;
}

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

body.landing-page::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 0.9), transparent 75%);
  opacity: 0.4;
}

body.landing-page::after {
  background: radial-gradient(circle at 50% 20%, rgba(255, 210, 138, 0.1), transparent 54%);
  opacity: 0.35;
}

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

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

.skip-link {
  position: fixed;
  top: -40px;
  left: 16px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #000;
  font-weight: 700;
}

.skip-link:focus {
  top: 14px;
}

main {
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: max(8px, env(safe-area-inset-top));
  left: auto;
  right: auto;
  z-index: 80;
  pointer-events: auto;
  width: min(var(--max-w), calc(100% - 26px));
  margin: 10px auto 0;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(130deg, rgba(34, 15, 8, 0.95), rgba(13, 5, 3, 0.82)),
    rgba(20, 8, 5, 0.8);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(14px);
  transform: none;
  overflow: visible;
  transition: border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

body.landing-page .site-header {
  justify-content: space-between;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.site-header.is-scrolled {
  border-color: rgba(255, 122, 61, 0.3);
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.56), 0 0 26px rgba(255, 122, 61, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 212px;
  min-height: 0;
  padding: 8px 10px;
  border: 0;
  border-radius: 14px;
  clip-path: none;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  pointer-events: auto;
  transition: transform 180ms ease, filter 180ms ease;
}

body.landing-page .brand {
  display: inline-flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.brand::after {
  content: none;
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.1);
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 18px rgba(239, 79, 97, 0.45);
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.02rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-strong);
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, top 180ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
  top: 14px;
}

.nav-toggle span:nth-child(2) {
  top: 21px;
}

.nav-toggle span:nth-child(3) {
  top: 28px;
}

.nav-toggle b {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  min-width: 0;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 0 16px;
  clip-path: none;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #f3dcc5;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow: none;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: none;
  transition: border-color 180ms ease, transform 180ms ease, color 180ms ease, background-color 180ms ease;
}

.site-nav a::before,
.site-nav a::after {
  content: none;
}

.site-nav a:nth-child(2),
.site-nav a:nth-child(3),
.site-nav a:nth-child(4),
.site-nav a:nth-child(5) {
  transform: none;
  animation: none;
}

.site-nav a:nth-child(2):hover,
.site-nav a:nth-child(2):focus-visible,
.site-nav a:nth-child(3):hover,
.site-nav a:nth-child(3):focus-visible,
.site-nav a:nth-child(4):hover,
.site-nav a:nth-child(4):focus-visible,
.site-nav a:nth-child(5):hover,
.site-nav a:nth-child(5):focus-visible {
  transform: translateY(-1px);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.site-nav a.nav-cta {
  border-color: rgba(247, 198, 109, 0.5);
  background: linear-gradient(135deg, rgba(247, 198, 109, 0.18), rgba(247, 198, 109, 0.06));
  color: var(--gold-strong);
}

.site-nav a.nav-cta--download {
  border-color: rgba(255, 122, 61, 0.5);
  background: linear-gradient(135deg, rgba(255, 122, 61, 0.24), rgba(255, 122, 61, 0.08));
  color: #ffe7c2;
}

.site-nav a.nav-cta:hover,
.site-nav a.nav-cta:focus-visible,
.site-nav a.nav-cta--download:hover,
.site-nav a.nav-cta--download:focus-visible {
  transform: translateY(-1px);
}

.hero-shell {
  position: relative;
  isolation: isolate;
  width: min(var(--max-w), calc(100% - 30px));
  height: min(82svh, 780px);
  min-height: 440px;
  margin: 16px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(26, 10, 7, 0.9), rgba(8, 2, 1, 0.96)),
    #070201;
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-scene::before {
  content: none;
}

.hero-scene video,
.hero-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: none;
  animation: none;
}

.hero-scene img {
  position: relative;
  z-index: 1;
}

.hero-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg,
      rgba(7, 2, 1, 0.48) 0%,
      rgba(7, 2, 1, 0.18) 10%,
      rgba(7, 2, 1, 0.02) 24%,
      rgba(7, 2, 1, 0.02) 76%,
      rgba(7, 2, 1, 0.18) 90%,
      rgba(7, 2, 1, 0.5) 100%),
    linear-gradient(180deg, rgba(7, 2, 1, 0.02), rgba(7, 2, 1, 0.22));
}

.hero-shell::before {
  z-index: 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 92, 45, 0.12), transparent 42%),
    radial-gradient(circle at 82% 48%, rgba(255, 184, 79, 0.12), transparent 40%),
    radial-gradient(circle at 50% 22%, rgba(255, 210, 138, 0.08), transparent 35%);
}

.hero-shell::after {
  z-index: 3;
  box-shadow:
    inset 0 1px 0 rgba(255, 236, 190, 0.08),
    inset 0 0 0 1px rgba(255, 208, 136, 0.04);
}

.hero-command {
  padding: 10px 0 6px;
}

.hero-command .reveal,
.hero-command .reveal.is-visible,
.js .hero-command .reveal,
.js .hero-command .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

body.landing-page .hero-command .hero-grid.hero-grid--below {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  align-items: start !important;
  justify-items: stretch !important;
}

body.landing-page .hero-command .hero-copy,
body.landing-page .hero-command .hero-panel {
  align-self: start !important;
  margin-top: 0 !important;
}

.hero-grid {
  width: min(var(--max-w), calc(100% - 30px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: start;
  gap: clamp(18px, 2vw, 28px);
}

.hero-grid.hero-grid--below {
  width: 100%;
  margin: 0;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.hero-copy {
  position: relative;
  padding: clamp(16px, 1.8vw, 20px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(42, 18, 10, 0.8), rgba(20, 8, 5, 0.56)),
    var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
  align-self: start;
  margin-top: 0;
}

.hero-copy::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -120px;
  left: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 79, 97, 0.28), transparent 72%);
  filter: blur(4px);
}

.hero-copy::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -140px;
  bottom: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 61, 0.24), transparent 70%);
  filter: blur(4px);
}

.hero-kicker {
  position: relative;
  z-index: 1;
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffe3bf;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  position: relative;
  z-index: 1;
  margin: 10px 0 8px;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.58rem, 2.4vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-copy h1 b {
  color: var(--gold-strong);
  font-weight: 800;
}

.hero-subtitle {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 760px;
  color: #f3ddc6;
  font-size: clamp(0.9rem, 1.05vw, 0.98rem);
  line-height: 1.48;
}

.hero-meta-line {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  color: #d8b990;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cta {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff4e5;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, filter 200ms ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.36);
  filter: brightness(1.06);
}

.cta--primary {
  border-color: rgba(255, 122, 61, 0.44);
  background: linear-gradient(140deg, rgba(255, 90, 46, 0.95), rgba(184, 56, 34, 0.92));
}

.cta--gold {
  border-color: rgba(247, 198, 109, 0.66);
  background: linear-gradient(140deg, rgba(255, 224, 146, 0.96), rgba(247, 198, 109, 0.9));
  color: #231705;
}

.cta--ghost {
  background: rgba(18, 7, 4, 0.76);
}

.hero-text-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  color: #f2d9bb;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 0;
  align-content: start;
  width: 100%;
  align-self: start;
}

.panel-card {
  position: relative;
  overflow: hidden;
  padding: 12px 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.hero-panel .panel-card {
  margin-top: 0;
}

.panel-card::after {
  content: "";
  position: absolute;
  inset: auto 14px 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(239, 79, 97, 0.9), rgba(255, 122, 61, 0.9));
  opacity: 0.9;
}

.panel-card--compact {
  padding: 12px 12px 10px;
}

.panel-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.panel-headline h2 {
  margin: 0;
}

.panel-badge {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(98, 255, 194, 0.34);
  background: rgba(44, 230, 155, 0.1);
  color: #66f2c7;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.panel-card h2,
.panel-card h3 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.panel-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.44;
}

.server-stats {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.server-stats--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.server-stats div {
  min-height: 62px;
  padding: 8px 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  align-content: center;
  gap: 4px;
}

.server-stats--compact div {
  min-height: 56px;
  padding: 7px 8px;
}

.server-stats span {
  color: #c9a982;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.server-stats strong {
  font-size: 0.96rem;
  font-weight: 700;
}

.server-stats .online {
  color: var(--emerald);
}

.timeline-inline {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.timeline-inline div {
  min-height: 48px;
  padding: 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 3px;
}

.timeline-inline b {
  color: var(--gold-strong);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.timeline-inline span {
  color: #fff0d6;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
}

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

.surface + .surface {
  margin-top: 28px;
}

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

.section-head p {
  margin: 0;
  color: #c69d74;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 6px 0 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.55rem, 2.7vw, 2.45rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #f4dcc0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease;
}

.section-link:hover,
.section-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
}

.newcomer-zone {
  padding: 34px 0 22px;
}

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

.newcomer-card {
  position: relative;
  overflow: hidden;
  min-height: 226px;
  padding: 20px;
  border: 1px solid var(--soft-border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 110% -20%, rgba(255, 132, 61, 0.16), transparent 58%),
    linear-gradient(145deg, rgba(45, 19, 11, 0.86), rgba(23, 9, 5, 0.86));
  box-shadow:
    inset 0 0 0 1px rgba(255, 218, 160, 0.06),
    0 18px 38px rgba(0, 0, 0, 0.28);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.newcomer-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  top: -110px;
  right: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 61, 0.25), transparent 72%);
}

.newcomer-card:hover,
.newcomer-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 202, 132, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(255, 218, 160, 0.09),
    0 22px 42px rgba(0, 0, 0, 0.34);
}

.newcomer-card h3 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  text-transform: uppercase;
}

.newcomer-card p {
  margin: 10px 0 0;
  color: #dec2a0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.newcomer-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.newcomer-card--download {
  border-color: rgba(255, 176, 91, 0.2);
}

.newcomer-card--register {
  border-color: rgba(232, 209, 162, 0.2);
  background:
    radial-gradient(circle at 120% -20%, rgba(244, 190, 112, 0.14), transparent 56%),
    linear-gradient(145deg, rgba(45, 22, 12, 0.88), rgba(21, 8, 4, 0.86));
}

.newcomer-card--register::before {
  background: radial-gradient(circle, rgba(247, 198, 109, 0.28), transparent 72%);
}

.roadmap-zone {
  padding: 18px 0 22px;
}

.roadmap-board {
  border: 1px solid var(--soft-border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% -10%, rgba(255, 132, 61, 0.12), transparent 52%),
    linear-gradient(150deg, rgba(36, 15, 8, 0.88), rgba(18, 7, 4, 0.88));
  box-shadow:
    inset 0 0 0 1px rgba(255, 218, 160, 0.05),
    0 18px 42px rgba(0, 0, 0, 0.3);
  padding: 22px;
}

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

.roadmap-step {
  position: relative;
  min-height: 170px;
  padding: 14px 14px 16px;
  border: 1px solid rgba(255, 215, 151, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.018);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.roadmap-step:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 218, 160, 0.24);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.roadmap-step b {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 122, 61, 0.16);
  border: 1px solid rgba(255, 122, 61, 0.34);
  color: #ffe9c8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.roadmap-step h3 {
  margin: 12px 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
}

.roadmap-step p {
  margin: 0;
  color: #d7b891;
  font-size: 0.9rem;
  line-height: 1.55;
}

.roadmap-step--alpha b {
  background: rgba(255, 122, 61, 0.18);
  border-color: rgba(255, 122, 61, 0.42);
}

.roadmap-step--beta b {
  background: rgba(247, 198, 109, 0.2);
  border-color: rgba(247, 198, 109, 0.48);
  color: #fff0cf;
}

.roadmap-step--season b {
  background: rgba(196, 71, 47, 0.2);
  border-color: rgba(196, 71, 47, 0.48);
}

.news-zone {
  padding: 24px 0 20px;
  scroll-margin-top: 110px;
}

.news-tag {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.news-tag--notice {
  border-color: rgba(255, 122, 61, 0.46);
  background: rgba(255, 122, 61, 0.18);
}

.news-tag--event {
  border-color: rgba(247, 198, 109, 0.52);
  background: rgba(247, 198, 109, 0.2);
}

.news-tag--guide,
.news-tag--summary {
  border-color: rgba(196, 71, 47, 0.5);
  background: rgba(196, 71, 47, 0.18);
}

.news-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.44fr) minmax(0, 0.56fr);
  align-items: start;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 203, 132, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% -20%, rgba(239, 79, 97, 0.12), transparent 46%),
    radial-gradient(circle at 100% -10%, rgba(255, 132, 61, 0.12), transparent 52%),
    linear-gradient(145deg, rgba(38, 16, 9, 0.92), rgba(18, 7, 4, 0.92));
  box-shadow:
    inset 0 0 0 1px rgba(255, 218, 160, 0.05),
    0 16px 32px rgba(0, 0, 0, 0.26);
}

.news-board::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.news-board::after {
  top: 16px;
  bottom: 16px;
  left: calc(44% + 7px);
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
}

.news-command-card {
  min-height: 100%;
  padding: 14px;
  border: 1px solid rgba(255, 203, 132, 0.14);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 122, 61, 0.15), transparent 58%),
    linear-gradient(145deg, rgba(38, 16, 9, 0.84), rgba(18, 7, 4, 0.84));
  display: grid;
  gap: 10px;
}

.news-command-card__kicker {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255, 218, 160, 0.22);
  border-radius: 999px;
  color: #f8dfbd;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-command-card h3 {
  margin: 0;
  font-size: 1.46rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.news-command-card p {
  margin: 0;
  color: #dfbf9b;
  font-size: 0.92rem;
  line-height: 1.5;
}

.news-command-points {
  display: grid;
  gap: 8px;
}

.news-command-points span {
  position: relative;
  padding-left: 16px;
  color: #f2d9bb;
  font-size: 0.84rem;
  line-height: 1.4;
}

.news-command-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-strong), #ffb357);
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(255, 191, 88, 0.45);
}

.news-command-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.news-chip {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255, 216, 153, 0.2);
  border-radius: 999px;
  color: #f8dfbd;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: border-color 170ms ease, transform 170ms ease, background-color 170ms ease;
}

.news-chip:hover,
.news-chip:focus-visible {
  border-color: rgba(255, 218, 160, 0.36);
  background: rgba(255, 218, 160, 0.06);
  transform: translateY(-1px);
}

.news-stream {
  display: grid;
  gap: 10px;
}

.news-stream-item {
  min-height: 94px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 203, 132, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(33, 13, 7, 0.86), rgba(18, 7, 4, 0.86));
  display: grid;
  gap: 6px;
  transition: border-color 170ms ease, transform 170ms ease, box-shadow 170ms ease;
}

.news-stream-item:hover,
.news-stream-item:focus-visible {
  border-color: rgba(255, 218, 160, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.news-stream-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.news-stream-item__top time {
  color: #cdaa86;
  font-size: 0.77rem;
  font-weight: 600;
}

.news-stream-item strong {
  display: block;
  color: #fff1dc;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.28;
}

.news-stream-item p {
  margin: 0;
  color: #d9b98f;
  font-size: 0.88rem;
  line-height: 1.42;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-more {
  width: 100%;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 216, 153, 0.2);
  border-radius: 12px;
  color: #f8dfbd;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-more:hover,
.news-more:focus-visible {
  border-color: rgba(255, 218, 160, 0.3);
}

.community-zone {
  padding: 24px 0 34px;
}

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

.community-card {
  position: relative;
  min-height: 220px;
  padding: 20px;
  border: 1px solid rgba(255, 203, 132, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% -15%, rgba(255, 132, 61, 0.12), transparent 58%),
    linear-gradient(150deg, rgba(39, 17, 9, 0.9), rgba(21, 8, 4, 0.9));
  box-shadow:
    inset 0 0 0 1px rgba(255, 218, 160, 0.05),
    0 16px 34px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
  overflow: hidden;
}

.community-card::before {
  content: "";
  position: absolute;
  inset: -80px -120px auto auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 61, 0.22), transparent 72%);
}

.community-card:hover,
.community-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 218, 160, 0.42);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 210, 122, 0.18), transparent 46%),
    radial-gradient(circle at 100% -15%, rgba(255, 132, 61, 0.2), transparent 58%),
    linear-gradient(150deg, rgba(54, 21, 9, 0.94), rgba(23, 8, 4, 0.94));
  box-shadow:
    inset 0 0 0 1px rgba(255, 218, 160, 0.14),
    0 20px 42px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(255, 143, 61, 0.16);
}

.community-card:active {
  transform: translateY(-1px) scale(0.985);
}

.community-card h3 {
  margin: 4px 0 8px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.35rem;
}

.community-card p {
  margin: 0;
  color: #ddc0a0;
  font-size: 0.93rem;
  line-height: 1.55;
}

.community-card .community-mark {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  overflow: hidden;
  font-size: 1.35rem;
  font-weight: 700;
  font-family: "Cinzel", Georgia, serif;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.42));
  overflow: visible;
  animation: communityIconPulse 2.8s ease-in-out infinite;
  transition: transform 180ms ease, filter 180ms ease;
}

.community-card .community-mark::after {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 1px solid rgba(255, 218, 160, 0.38);
  border-radius: 50%;
  opacity: 0;
  animation: communityIconRing 2.8s ease-out infinite;
  pointer-events: none;
}

.community-card:nth-child(2) .community-mark,
.community-card:nth-child(2) .community-mark::after {
  animation-delay: 1.1s;
}

.community-card .community-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.community-card:hover .community-mark,
.community-card:focus-visible .community-mark {
  transform: translateY(-2px) scale(1.12);
  filter:
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 18px rgba(255, 218, 160, 0.48));
}

@keyframes communityIconPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.42));
  }

  45% {
    transform: translateY(-2px) scale(1.08);
    filter:
      drop-shadow(0 8px 14px rgba(0, 0, 0, 0.42))
      drop-shadow(0 0 16px rgba(255, 218, 160, 0.5));
  }
}

@keyframes communityIconRing {
  0% {
    opacity: 0;
    transform: scale(0.78);
  }

  35% {
    opacity: 0.8;
  }

  80%,
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .community-card .community-mark,
  .community-card .community-mark::after {
    animation: none;
  }
}

.final-cta-zone {
  padding: 0 0 64px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 203, 132, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0 0, rgba(239, 79, 97, 0.14), transparent 52%),
    radial-gradient(circle at 100% 0, rgba(255, 122, 61, 0.14), transparent 56%),
    linear-gradient(145deg, rgba(36, 15, 8, 0.94), rgba(18, 7, 4, 0.94));
  padding: 24px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 218, 160, 0.06),
    0 18px 36px rgba(0, 0, 0, 0.3);
}

.final-cta h2 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  text-transform: uppercase;
}

.final-cta p {
  margin: 10px 0 0;
  color: #dfc2a2;
  max-width: 820px;
  line-height: 1.7;
}

.final-cta .hero-actions {
  margin-top: 18px;
}

.quick-support {
  position: fixed;
  right: 16px;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 78;
  display: grid;
  gap: 10px;
}

.quick-support a {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  background: rgba(20, 8, 5, 0.84);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
  transition: transform 170ms ease, border-color 170ms ease;
}

.quick-support a:hover,
.quick-support a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 61, 0.44);
}

.quick-support img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.site-footer {
  width: fit-content;
  max-width: calc(100% - 30px);
  margin: 0 auto 34px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 218, 160, 0.16);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 5, 3, 0.62);
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: #bd9c79;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Roboto typography + softer glass borders */
body.landing-page,
body.landing-page * {
  font-family: "Roboto", Arial, sans-serif;
}

.brand strong,
.hero-copy h1,
.section-head h2,
.panel-card h2,
.panel-card h3,
.newcomer-card h3,
.roadmap-step h3,
.news-command-card h3,
.news-stream-item strong,
.community-card h3,
.final-cta h2 {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-nav a,
.hero-kicker,
.news-tag,
.cta,
.section-link,
.hero-meta-line,
.news-more {
  font-family: "Roboto", Arial, sans-serif;
  letter-spacing: 0.04em;
}

.site-header,
.hero-shell,
.hero-copy,
.panel-card,
.newcomer-card,
.roadmap-board,
.roadmap-step,
.news-board,
.news-command-card,
.news-stream-item,
.news-more,
.community-card,
.final-cta,
.server-stats div,
.timeline-inline div {
  border: 1px solid transparent;
  background-clip: padding-box;
  border-color: transparent;
  box-shadow:
    inset 0 0 0 1px var(--soft-border),
    inset 0 10px 28px rgba(255, 196, 112, 0.04),
    0 16px 38px rgba(0, 0, 0, 0.3);
}

.site-header,
.hero-shell,
.hero-copy,
.panel-card,
.newcomer-card,
.roadmap-board,
.roadmap-step,
.news-board,
.news-command-card,
.news-stream-item,
.community-card,
.final-cta {
  border-radius: 24px;
}

.cta,
.site-nav a,
.section-link,
.news-tag,
.hero-kicker {
  border-color: rgba(255, 216, 153, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 218, 160, 0.12),
    inset 0 8px 18px rgba(255, 210, 142, 0.03);
}

.site-nav a.nav-cta,
.site-nav a.nav-cta--download {
  border-color: var(--soft-border-strong);
}

.site-header::before {
  border-color: rgba(255, 216, 153, 0.1);
}

.reveal {
  opacity: 1;
  transform: none;
}

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

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

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(0, -1.8%, 0);
  }
}

@media (max-width: 1140px) {
  .hero-grid,
  .hero-grid--below {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 980px) {
  .site-header {
    min-height: 68px;
    gap: 10px;
    align-items: center;
    flex-wrap: nowrap;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 40;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(13, 5, 3, 0.96);
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.52);
  }

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

  .site-header .nav-toggle[aria-expanded="true"] ~ .site-nav {
    display: flex !important;
  }

  .site-nav a {
    justify-content: flex-start;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 12px;
    border-color: rgba(255, 255, 255, 0.14);
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .newcomer-grid,
  .community-grid {
    grid-template-columns: 1fr;
  }

  .news-board {
    grid-template-columns: 1fr;
  }

  .news-board::after {
    content: none;
  }

  .news-command-card {
    min-height: 0;
  }

  .server-stats--compact,
  .timeline-inline {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    height: min(72svh, 640px);
    min-height: 320px;
    margin-top: 14px;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 20px);
    padding: 10px;
  }

  .brand {
    min-width: 0;
    padding: 6px 8px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .hero-shell {
    height: min(58svh, 430px);
    min-height: 260px;
    margin-top: 10px;
  }

  .hero-copy {
    padding: 20px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cta {
    width: 100%;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .server-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-text-link {
    min-height: 38px;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.02);
  }

  .newcomer-card,
  .roadmap-step,
  .community-card {
    min-height: 0;
  }

  .news-board {
    padding: 12px;
  }

  .news-command-card h3 {
    font-size: 1.26rem;
  }

  .news-command-card p {
    font-size: 0.85rem;
  }

  .news-stream-item {
    min-height: 86px;
    padding: 10px 11px;
  }

  .news-stream-item strong {
    font-size: 0.94rem;
  }

  .news-stream-item p {
    font-size: 0.83rem;
  }

  .quick-support {
    right: 10px;
  }

  .quick-support a {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .quick-support img {
    width: 30px;
    height: 30px;
  }

  .site-footer {
    margin-bottom: 88px;
  }
}

@media (max-width: 520px) {
  .surface {
    width: calc(100% - 22px);
  }

  .hero-copy h1 {
    font-size: 1.72rem;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .roadmap-track,
  .server-stats {
    grid-template-columns: 1fr;
  }

  .news-command-card {
    padding: 10px;
  }

  .news-command-points span {
    font-size: 0.8rem;
  }

  .roadmap-board,
  .final-cta {
    padding: 16px;
  }

  .site-footer {
    padding: 12px;
  }
}

/* Premium news board refresh */
.news-zone {
  position: relative;
  padding: 42px 0 30px;
  scroll-margin-top: 110px;
}

.news-zone .section-head {
  margin-bottom: 18px;
}

.news-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 208, 126, 0.24);
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 208, 126, 0.16), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(255, 90, 45, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(44, 15, 7, 0.92), rgba(13, 4, 2, 0.94));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.42),
    0 0 54px rgba(255, 92, 45, 0.08),
    inset 0 1px 0 rgba(255, 239, 204, 0.1);
}

.news-board::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  background:
    linear-gradient(120deg, rgba(255, 236, 190, 0.08), transparent 30%, rgba(255, 91, 45, 0.07) 72%, transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 42%);
  pointer-events: none;
}

.news-board::after {
  content: none !important;
}

.news-command-card,
.news-stream {
  position: relative;
  z-index: 1;
}

.news-command-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 221, 154, 0.22);
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 214, 126, 0.18), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(255, 91, 45, 0.15), transparent 42%),
    linear-gradient(150deg, rgba(62, 21, 10, 0.9), rgba(20, 6, 3, 0.9));
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 245, 218, 0.1);
}

.news-command-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-strong), var(--azure), var(--crimson));
  box-shadow: 0 0 24px rgba(255, 137, 52, 0.5);
}

.news-command-card::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -76px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 79, 0.2), transparent 68%);
  pointer-events: none;
}

.news-command-card__kicker {
  width: fit-content;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 221, 154, 0.28);
  border-radius: 999px;
  color: #fff0ce;
  background: rgba(255, 244, 229, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.news-command-card h3 {
  max-width: 420px;
  margin: 0;
  color: #fff7e8;
  font-size: clamp(1.58rem, 2.6vw, 2.35rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.news-command-card p {
  max-width: 500px;
  margin: 0;
  color: #e9cdaa;
  font-size: 0.98rem;
  line-height: 1.65;
}

.news-command-points {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.news-command-points span {
  position: relative;
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 8px 12px 8px 34px;
  border: 1px solid rgba(255, 221, 154, 0.12);
  border-radius: 14px;
  color: #ffe6c5;
  background: rgba(255, 244, 229, 0.045);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.news-command-points span::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe3a4, #ff8f3d);
  transform: translateY(-50%);
  box-shadow: 0 0 14px rgba(255, 180, 76, 0.58);
}

.news-command-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-chip {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 216, 153, 0.2);
  border-radius: 999px;
  color: #ffe8c7;
  background: rgba(255, 244, 229, 0.045);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.news-chip:hover,
.news-chip:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 213, 128, 0.48);
  background: rgba(255, 159, 66, 0.14);
}

.news-more {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 16px;
  border: 1px solid rgba(255, 216, 153, 0.28);
  border-radius: 16px;
  color: #2a0d02;
  background: linear-gradient(135deg, #ffe0a3, #ff9b42 54%, #ff6940);
  box-shadow:
    0 14px 28px rgba(255, 111, 45, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.news-more:hover,
.news-more:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 18px 36px rgba(255, 111, 45, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.news-stream {
  display: grid;
  gap: 12px;
}

.news-stream-item {
  position: relative;
  min-height: 112px;
  width: 100%;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px 58px 16px 18px;
  border: 1px solid rgba(255, 214, 142, 0.16);
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 207, 126, 0.12), transparent 28%),
    linear-gradient(110deg, rgba(37, 12, 6, 0.86), rgba(13, 4, 2, 0.92));
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.news-stream-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold-strong), var(--azure), var(--crimson));
  opacity: 0.78;
}

.news-stream-item::after {
  content: ">";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 216, 153, 0.22);
  border-radius: 50%;
  color: #ffe9c8;
  background: rgba(255, 244, 229, 0.06);
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.news-stream-item:first-child {
  border-color: rgba(255, 216, 153, 0.3);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 216, 153, 0.2), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(255, 89, 45, 0.13), transparent 38%),
    linear-gradient(110deg, rgba(52, 17, 8, 0.9), rgba(17, 5, 2, 0.92));
}

.news-stream-item:hover,
.news-stream-item:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 216, 153, 0.38);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.32),
    0 0 36px rgba(255, 103, 45, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.news-stream-item:hover::after,
.news-stream-item:focus-visible::after {
  color: #2a0d02;
  background: linear-gradient(135deg, #ffe0a3, #ff9b42);
  transform: translate(4px, -50%);
}

.news-stream-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.news-stream-item__top time {
  color: #f0c994;
  font-size: 0.78rem;
  font-weight: 800;
}

.news-stream-item strong {
  display: block;
  color: #fff7e8;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.news-stream-item p {
  max-width: 680px;
  margin: 0;
  color: #d8b58e;
  font-size: 0.9rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-tag {
  min-height: 27px;
  padding: 0 10px;
  border-radius: 999px;
  color: #ffe7c4;
  background: rgba(255, 244, 229, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.66rem;
  font-weight: 900;
}

.news-tag--event {
  border-color: rgba(255, 190, 91, 0.46);
  background: rgba(255, 157, 61, 0.18);
}

.news-tag--guide,
.news-tag--summary {
  border-color: rgba(255, 102, 66, 0.42);
  background: rgba(255, 91, 45, 0.16);
}

@media (max-width: 1024px) {
  .news-board {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .news-command-card {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .news-zone {
    padding: 30px 0 22px;
  }

  .news-board {
    width: 100%;
    padding: 12px;
    border-radius: 24px;
  }

  .news-command-card {
    padding: 18px;
    border-radius: 22px;
  }

  .news-stream-item {
    min-height: 100px;
    padding: 14px 48px 14px 15px;
    border-radius: 18px;
  }

  .news-stream-item::after {
    right: 12px;
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 520px) {
  .news-command-card h3 {
    font-size: 1.42rem;
  }

  .news-command-card p,
  .news-stream-item p {
    font-size: 0.84rem;
  }

  .news-command-points span {
    font-size: 0.8rem;
  }

  .news-stream-item__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

/* Compact news board polish */
.news-zone .section-head {
  max-width: 980px;
  margin-inline: auto;
}

.news-board {
  max-width: 980px;
  margin-inline: auto;
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border-color: rgba(255, 218, 160, 0.3);
  background:
    linear-gradient(135deg, rgba(255, 214, 126, 0.1), rgba(255, 91, 45, 0.08)),
    linear-gradient(145deg, rgba(34, 12, 6, 0.94), rgba(9, 4, 3, 0.96));
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 239, 204, 0.1);
}

.news-board::before {
  inset: 1px;
  border-radius: 17px;
  background: linear-gradient(120deg, rgba(255, 236, 190, 0.08), transparent 42%, rgba(255, 91, 45, 0.08));
}

.news-command-card {
  min-height: 0;
  gap: 10px;
  padding: 16px;
  border-radius: 16px;
  border-color: rgba(255, 221, 154, 0.26);
}

.news-command-card::after {
  content: none;
}

.news-command-card__kicker {
  min-height: 28px;
  padding: 0 10px;
  font-size: 0.64rem;
}

.news-command-card h3 {
  max-width: 320px;
  font-size: clamp(1.18rem, 1.8vw, 1.48rem);
  line-height: 1.14;
  letter-spacing: 0;
}

.news-command-card h3,
.news-stream-item strong {
  position: relative;
  color: #fff7e8;
  font-weight: 900;
  text-wrap: balance;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
}

.news-command-card h3::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffe0a3, #ff8f3d, transparent);
  box-shadow: 0 0 16px rgba(255, 143, 61, 0.38);
}

.news-command-card p {
  font-size: 0.86rem;
  line-height: 1.5;
}

.news-command-points {
  gap: 7px;
}

.news-command-points span {
  min-height: 34px;
  padding: 7px 10px 7px 30px;
  border-radius: 10px;
  font-size: 0.8rem;
}

.news-command-points span::before {
  left: 12px;
  width: 7px;
  height: 7px;
}

.news-command-card__chips {
  gap: 6px;
}

.news-chip {
  min-height: 30px;
  padding: 0 10px;
  font-size: 0.66rem;
}

.news-more {
  min-height: 40px;
  border-radius: 12px;
  font-size: 0.72rem;
}

.news-stream {
  gap: 8px;
}

.news-stream-item {
  min-height: 88px;
  gap: 5px;
  padding: 12px 50px 12px 16px;
  border-radius: 15px;
  border-color: rgba(255, 214, 142, 0.23);
  background:
    linear-gradient(110deg, rgba(38, 13, 7, 0.92), rgba(13, 5, 3, 0.95)),
    rgba(255, 244, 229, 0.03);
}

.news-stream-item:first-child {
  border-color: rgba(255, 216, 153, 0.5);
  background:
    linear-gradient(110deg, rgba(67, 24, 10, 0.94), rgba(20, 7, 3, 0.96)),
    rgba(255, 216, 153, 0.06);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 216, 153, 0.08);
}

.news-stream-item::before {
  width: 3px;
}

.news-stream-item::after {
  right: 14px;
  width: 30px;
  height: 30px;
}

.news-stream-item__top {
  gap: 8px;
}

.news-stream-item__top time {
  color: #ffd89c;
  font-size: 0.72rem;
}

.news-stream-item strong {
  color: #fff8ec;
  font-size: clamp(1rem, 1.28vw, 1.12rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.news-stream-item:hover strong,
.news-stream-item:focus-visible strong {
  color: #ffe2a8;
}

.news-stream-item p {
  color: #e4c09b;
  font-size: 0.82rem;
  line-height: 1.35;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.news-tag {
  min-height: 24px;
  padding: 0 8px;
  color: #fff0cf;
  font-size: 0.6rem;
}

@media (max-width: 1024px) {
  .news-board {
    max-width: 760px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .news-board {
    padding: 10px;
    border-radius: 16px;
  }

  .news-command-card {
    padding: 14px;
    border-radius: 14px;
  }

  .news-stream-item {
    min-height: auto;
    padding: 12px 44px 12px 13px;
    border-radius: 13px;
  }
}

@media (max-width: 520px) {
  .news-stream-item__top {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .news-stream-item p {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}

/* Section rhythm balance */
.community-zone {
  padding: 20px 0 22px;
}

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

.community-card {
  min-height: 190px;
}

.news-zone {
  padding: 22px 0 24px;
}

.news-zone .section-head {
  max-width: none;
  margin: 0 0 16px;
}

.news-board {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(280px, 0.32fr) minmax(0, 1fr);
  gap: 14px;
}

.js .news-board.reveal .news-command-card,
.js .news-board.reveal .news-stream-item {
  opacity: 0;
  transform: translateY(16px) scale(0.96);
}

.js .news-board.reveal.is-visible .news-command-card,
.js .news-board.reveal.is-visible .news-stream-item {
  animation: newsItemPopIn 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.js .news-board.reveal.is-visible .news-command-card {
  animation-delay: 60ms;
}

.js .news-board.reveal.is-visible .news-stream-item:nth-child(1) {
  animation-delay: 130ms;
}

.js .news-board.reveal.is-visible .news-stream-item:nth-child(2) {
  animation-delay: 200ms;
}

.js .news-board.reveal.is-visible .news-stream-item:nth-child(3) {
  animation-delay: 270ms;
}

.js .news-board.reveal.is-visible .news-stream-item:nth-child(4) {
  animation-delay: 340ms;
}

@keyframes newsItemPopIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.94);
    filter: blur(3px);
  }

  70% {
    opacity: 1;
    transform: translateY(-2px) scale(1.01);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .news-board.reveal .news-command-card,
  .js .news-board.reveal .news-stream-item,
  .js .news-board.reveal.is-visible .news-command-card,
  .js .news-board.reveal.is-visible .news-stream-item {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.news-command-card h3 {
  max-width: none;
}

@media (max-width: 1024px) {
  .community-grid {
    grid-template-columns: 1fr;
  }

  .news-zone .section-head,
  .news-board {
    max-width: 760px;
    margin-inline: auto;
  }

  .news-board {
    grid-template-columns: 1fr;
  }
}


