:root {
  --bg: #090807;
  --bg-soft: #12100c;
  --surface: rgba(21, 17, 10, 0.84);
  --surface-strong: rgba(29, 22, 11, 0.94);
  --surface-muted: rgba(255, 210, 102, 0.05);
  --border: rgba(255, 204, 89, 0.16);
  --border-strong: rgba(255, 204, 89, 0.28);
  --text: #f9f1de;
  --muted: #c8bb96;
  --gold: #ffc94a;
  --gold-strong: #ffb400;
  --amber: #ffe09b;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1584px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-bottom: 118px;
  font-family: "Exo 2", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 196, 72, 0.18), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(255, 179, 0, 0.1), transparent 20%),
    linear-gradient(180deg, #090807 0%, #110e09 52%, #070707 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 210, 112, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 210, 112, 0.03) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at center, black 46%, transparent 100%);
  opacity: 0.45;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.launch-countdown {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), var(--container));
  z-index: 24;
  padding-top: 0;
  margin-top: 0;
}

.launch-countdown-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 205, 96, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 207, 108, 0.08), transparent 100%),
    rgba(17, 14, 10, 0.82);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.launch-countdown-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.launch-countdown-copy strong {
  font-family: "Oxanium", sans-serif;
  font-size: 1rem;
  color: #fff3d2;
}

.launch-countdown-timer {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.launch-countdown-timer span {
  min-width: 88px;
  display: grid;
  gap: 4px;
  place-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 205, 96, 0.08);
  border: 1px solid rgba(255, 205, 96, 0.12);
}

.launch-countdown-timer strong {
  font-family: "Oxanium", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  color: #fff7df;
}

.launch-countdown-timer small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 14px;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 8px -16px auto;
  height: calc(100% - 8px);
  background: rgba(10, 9, 8, 0.56);
  border: 1px solid rgba(255, 205, 96, 0.08);
  border-radius: 999px;
  z-index: -1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark,
.footer-brand-mark {
  display: grid;
  place-items: center;
}

.brand-mark {
  width: 62px;
  height: 62px;
  padding: 4px;
  border-radius: 20px;
  background: rgba(255, 205, 96, 0.06);
  border: 1px solid rgba(255, 205, 96, 0.14);
  box-shadow: 0 12px 32px rgba(255, 183, 0, 0.16);
}

.brand-mark img,
.hero-logo-badge img,
.footer-brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong,
h1,
h2,
h3,
h4,
.footer-brand {
  font-family: "Oxanium", sans-serif;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.site-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  color: #f5e9c9;
  transition: background 0.22s ease, transform 0.22s ease, color 0.22s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 205, 96, 0.12);
  color: #fff7df;
  transform: translateY(-1px);
}

.nav-cta {
  border: 1px solid rgba(255, 205, 96, 0.28);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 205, 96, 0.18);
  border-radius: 18px;
  background: rgba(17, 14, 10, 0.9);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: var(--gold);
  border-radius: 99px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.section {
  padding: 46px 0;
}

.glass-card,
.mini-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 207, 108, 0.05), transparent 100%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background-clip: padding-box;
}

.glass-card::before,
.mini-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 220, 140, 0.08), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 173, 34, 0.08), transparent 28%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: stretch;
  padding-top: 44px;
}

.hero-main {
  padding: 34px;
}

.hero-main-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(380px, 1fr);
  gap: 28px;
  min-height: 470px;
  align-items: stretch;
}

.hero-copy,
.hero-side {
  position: relative;
}

.hero-copy {
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 128px;
  max-width: 520px;
}

.hero-stage-title-wrap {
  position: absolute;
  top: 34px;
  left: 34px;
  z-index: 4;
  max-width: 72%;
  pointer-events: none;
}

.hero-stage-title {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.88;
  color: #fff8e6;
  text-shadow:
    0 10px 30px rgba(0, 0, 0, 0.55),
    0 0 32px rgba(255, 201, 74, 0.18);
}

.hero-subtitle,
.section-heading p,
.glass-card p,
.site-footer p,
.spotlight-copy,
.rules-viewer-intro,
.rule-link span,
.rules-empty {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.hero-actions,
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #241709;
  background: linear-gradient(135deg, #ffe8a0, #ffc94a 45%, #ef9d00);
  box-shadow: 0 20px 35px rgba(255, 185, 0, 0.18);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(255, 205, 96, 0.22);
  background: rgba(255, 205, 96, 0.08);
}

.button-full {
  width: 100%;
}

.hero-inline-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-inline-highlights span,
.product-meta span,
.pill-live,
.tier-label,
.info-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 205, 96, 0.08);
  border: 1px solid rgba(255, 205, 96, 0.12);
  color: var(--amber);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-art-shell {
  position: relative;
  min-height: 470px;
  border-radius: 32px;
  border: 1px solid rgba(255, 205, 96, 0.14);
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 205, 96, 0.14), rgba(255, 205, 96, 0.04) 46%, transparent 70%),
    linear-gradient(180deg, rgba(255, 205, 96, 0.08), rgba(255, 205, 96, 0.02));
}

.hero-art-shell::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  border-radius: 24px;
  border: 1px solid rgba(255, 205, 96, 0.08);
  background:
    linear-gradient(rgba(255, 210, 112, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 210, 112, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
}

.hero-art-glow {
  position: absolute;
  left: 50%;
  bottom: 50px;
  z-index: 0;
  width: 260px;
  height: 260px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 197, 63, 0.34), rgba(255, 177, 0, 0.08) 58%, transparent 74%);
  filter: blur(18px);
}

.hero-logo-badge {
  position: absolute;
  inset: 16px;
  z-index: 2;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 205, 96, 0.05);
}

.hero-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float {
  position: absolute;
  z-index: 3;
  min-width: 160px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(10, 9, 8, 0.82);
  border: 1px solid rgba(255, 205, 96, 0.16);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.hero-float span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-float strong {
  display: block;
  margin-top: 6px;
  color: #fff4cf;
  font-size: 1rem;
}

.hero-float-top {
  top: 26px;
  right: 24px;
}

.hero-float-bottom {
  right: 24px;
  bottom: 24px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.mini-panel {
  padding: 18px;
}

.mini-panel strong,
.server-stats strong,
.spotlight-metrics strong,
.product-card strong {
  display: block;
  margin: 8px 0;
  font-size: 1.25rem;
}

.mini-panel p {
  margin: 0;
}

.mini-kicker,
.stat-label,
.nick-list-label,
.footer-heading {
  display: inline-flex;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
}

.hero-side {
  display: flex;
}

.status-card,
.info-card,
.status-spotlight,
.rule-card,
.product-card,
.cta-band-inner,
.rules-browser,
.rules-viewer {
  padding: 28px;
}

.status-card {
  width: 100%;
}

.card-topline,
.spotlight-header,
.spotlight-metrics,
.server-stats,
.feature-list,
.footer-links,
.site-footer {
  display: flex;
}

.card-topline {
  align-items: center;
  gap: 10px;
  color: var(--amber);
  margin-bottom: 12px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #82ff85;
  box-shadow: 0 0 18px rgba(130, 255, 133, 0.7);
}

.status-dot.is-offline {
  background: #ff7b7b;
  box-shadow: 0 0 18px rgba(255, 123, 123, 0.55);
}

.server-stats {
  gap: 16px;
  margin: 24px 0;
}

.server-stats > div,
.spotlight-metrics > div {
  flex: 1;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 205, 96, 0.06);
  border: 1px solid rgba(255, 205, 96, 0.12);
}

.server-ip-button {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 0;
  margin-top: 8px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.server-ip-button span {
  color: var(--muted);
  font-size: 0.92rem;
}

.server-ip-button:hover .server-ip {
  color: #fff5d4;
}

.whitelist-message {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 205, 96, 0.06);
  border: 1px solid rgba(255, 205, 96, 0.1);
  font-size: 0.98rem;
  line-height: 1.55;
}

.nick-list {
  margin-top: 22px;
}

.nick-list ul,
.clean-list {
  padding-left: 18px;
  margin: 14px 0 0;
}

.nick-list li,
.clean-list li {
  color: var(--muted);
  margin-bottom: 8px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading h2,
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  margin: 14px 0 10px;
}

.status-grid,
.shop-grid,
.rules-preview-grid,
.rules-categories {
  display: grid;
  gap: 20px;
}

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

.feature-list {
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.spotlight-header {
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.pill-live {
  color: #dfffe2;
  background: rgba(83, 219, 104, 0.18);
  border-color: rgba(83, 219, 104, 0.26);
}

.spotlight-metrics {
  gap: 16px;
  margin: 24px 0;
}

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

.homepage-rule-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.homepage-rule-card .button {
  margin-top: auto;
}

.rule-card h3,
.product-card h3 {
  margin: 0;
}

.rules-page-stack {
  display: grid;
  gap: 20px;
}

.rules-browser-head {
  margin-bottom: 18px;
}

.rules-browser-head h3,
.rules-viewer h3 {
  margin: 10px 0 0;
}

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

.rules-browser-list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rule-link {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 205, 96, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.rules-browser-list-inline .rule-link {
  width: auto;
  min-width: 220px;
  flex: 0 1 auto;
}

.rule-link:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 205, 96, 0.22);
  background: rgba(255, 205, 96, 0.06);
}

.rule-link.is-active {
  background: linear-gradient(135deg, rgba(255, 205, 96, 0.18), rgba(255, 164, 31, 0.1));
  border-color: rgba(255, 205, 96, 0.26);
}

.rule-link strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.rules-empty-state {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 205, 96, 0.05);
  border: 1px solid rgba(255, 205, 96, 0.1);
}

.rules-empty-state strong {
  font-size: 1.02rem;
  color: #fff2c8;
}

.rules-viewer-wide {
  min-height: 520px;
}

.rules-viewer-content {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.rule-block {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 205, 96, 0.05);
  border: 1px solid rgba(255, 205, 96, 0.1);
}

.rule-block h4 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.rule-block p {
  margin: 0;
}

.rule-block p + p,
.rule-block p + ul,
.rule-block ul + p,
.rule-block ul + ul {
  margin-top: 12px;
}

.rule-block ul {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.rule-block li {
  line-height: 1.6;
}

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

.product-media {
  width: 100%;
  height: 210px;
  margin-bottom: 18px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 205, 96, 0.12), rgba(255, 205, 96, 0.04));
  border: 1px solid rgba(255, 205, 96, 0.1);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 12px;
  background: rgba(10, 9, 8, 0.26);
}

.product-media-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-family: "Oxanium", sans-serif;
  font-size: 2rem;
  color: var(--gold);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.price-old {
  display: block;
  margin-bottom: 6px;
  color: #b5a57c;
  text-decoration: line-through;
}

.cta-band {
  padding-bottom: 70px;
}

.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 0 36px;
  border-top: 1px solid rgba(255, 205, 96, 0.1);
  margin-top: 12px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.footer-brand-mark {
  width: 54px;
  height: 54px;
  padding: 4px;
  border-radius: 18px;
  background: rgba(255, 205, 96, 0.06);
  border: 1px solid rgba(255, 205, 96, 0.12);
  box-shadow: 0 12px 24px rgba(255, 183, 0, 0.12);
}

.footer-brand {
  display: block;
  font-size: 1.2rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: minmax(220px, 320px);
  gap: 18px;
  justify-content: end;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 205, 96, 0.05);
  border: 1px solid rgba(255, 205, 96, 0.1);
}

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

.footer-links-vertical {
  flex-direction: column;
  align-items: stretch;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 205, 96, 0.06);
  border: 1px solid rgba(255, 205, 96, 0.1);
}

.footer-links a i {
  width: 18px;
  text-align: center;
  color: var(--amber);
}

.back-to-top-button {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 205, 96, 0.24);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 205, 96, 0.18), rgba(255, 205, 96, 0.08));
  color: #fff3cc;
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.32);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  z-index: 60;
}

.back-to-top-button:hover {
  border-color: rgba(255, 205, 96, 0.38);
  background: linear-gradient(180deg, rgba(255, 205, 96, 0.28), rgba(255, 205, 96, 0.14));
}

.back-to-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 205, 96, 0.08);
  color: #cdbf96;
  font-size: 0.95rem;
}

.footer-disclaimer {
  max-width: 760px;
  color: #b9ab83;
}

.page-hero {
  padding-top: 58px;
}

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

  .hero-main-grid,
  .status-grid,
  .shop-grid,
  .rules-preview-grid,
  .hero-points,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
    padding-top: 130px;
  }

  .hero-art-shell {
    min-height: 380px;
  }

  .footer-columns {
    justify-content: start;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 22px), var(--container));
  }

  body {
    padding-bottom: 172px;
  }

  .launch-countdown {
    left: 16px;
    right: 16px;
    bottom: 14px;
    transform: none;
    width: auto;
  }

  .launch-countdown-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 16px;
  }

  .launch-countdown-timer {
    justify-content: flex-start;
  }

  .launch-countdown-timer span {
    min-width: calc(50% - 6px);
  }

  .back-to-top-button {
    right: 18px;
    bottom: 18px;
  }

  .topbar {
    padding-top: 16px;
  }

  .topbar::before {
    inset: 6px -4px auto;
    border-radius: 28px;
  }

  .menu-toggle {
    display: block;
    flex-shrink: 0;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 24px;
    background: rgba(10, 9, 8, 0.95);
    border: 1px solid rgba(255, 205, 96, 0.12);
    box-shadow: var(--shadow);
  }

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

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

  .hero-main,
  .status-card,
  .info-card,
  .status-spotlight,
  .rule-card,
  .product-card,
  .cta-band-inner,
  .rules-browser,
  .rules-viewer {
    padding: 22px;
  }

  .hero-main-grid {
    min-height: unset;
  }

  .hero-stage-title-wrap {
    position: static;
    max-width: none;
    margin-bottom: 18px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-art-shell {
    min-height: 300px;
  }

  .hero-float {
    min-width: 132px;
    padding: 12px 14px;
  }

  .server-stats,
  .spotlight-metrics,
  .cta-band-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .rules-browser-list-inline {
    flex-direction: column;
  }

  .rules-browser-list-inline .rule-link {
    width: 100%;
    min-width: 0;
  }

  .section {
    padding: 34px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
