:root {
  --bg: #12071d;
  --bg-soft: #190d29;
  --midnight-violet: #12081d;
  --violet-deep: #24123d;
  --violet-metal: #8d74c7;
  --violet-sheen: #bba7ef;
  --panel: rgba(18, 9, 31, 0.88);
  --panel-strong: rgba(14, 8, 24, 0.95);
  --line: rgba(214, 164, 65, 0.3);
  --gold: #f0bd56;
  --gold-deep: #c88e2b;
  --text: #f6f1e8;
  --muted: #d1c8e2;
  --green: #2ecc71;
  --red: #d55454;
  --violet: #b694ff;
  --ember: #b94b4b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  --nav-offset: 128px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

section[id],
header[id] {
  scroll-margin-top: calc(var(--nav-offset) + 18px);
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(240, 189, 86, 0.2), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(182, 148, 255, 0.16), transparent 24%),
    radial-gradient(circle at bottom right, rgba(213, 84, 84, 0.16), transparent 22%),
    linear-gradient(180deg, #090411 0%, #12071d 42%, #06030c 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 82%);
  pointer-events: none;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 56px;
}

.background-sparkles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.background-sparkles::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(240, 189, 86, 0.08), transparent 18%),
    radial-gradient(circle at 78% 16%, rgba(187, 167, 239, 0.1), transparent 20%),
    radial-gradient(circle at 52% 78%, rgba(255, 255, 255, 0.04), transparent 24%);
}

.sparkle {
  position: absolute;
  top: var(--sparkle-top);
  left: var(--sparkle-left);
  width: var(--sparkle-size);
  height: var(--sparkle-size);
  border-radius: 999px;
  opacity: var(--sparkle-opacity);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(240, 189, 86, 0.62) 34%, rgba(187, 167, 239, 0.18) 64%, transparent 100%);
  box-shadow:
    0 0 var(--sparkle-blur) rgba(255, 244, 214, 0.42),
    0 0 calc(var(--sparkle-size) * 4) rgba(187, 167, 239, 0.18);
  animation:
    sparkle-drift var(--sparkle-duration) linear infinite,
    sparkle-pulse var(--sparkle-pulse) ease-in-out infinite;
  animation-delay: var(--sparkle-delay), var(--sparkle-pulse-delay);
  will-change: transform, opacity;
}

.sparkle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--sparkle-size) * 2.8);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0.45;
}

@keyframes sparkle-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(0.85);
  }

  50% {
    transform: translate3d(calc(var(--sparkle-drift-x) * 0.55), calc(var(--sparkle-drift-y) * 0.55), 0) scale(1.08);
  }

  100% {
    transform: translate3d(var(--sparkle-drift-x), var(--sparkle-drift-y), 0) scale(0.92);
  }
}

@keyframes sparkle-pulse {
  0%,
  100% {
    opacity: calc(var(--sparkle-opacity) * 0.72);
  }

  50% {
    opacity: calc(var(--sparkle-opacity) + 0.22);
  }
}

.hero,
.section {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero {
  padding: 22px;
}

.hero::after,
.section::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.site-nav {
  position: sticky;
  top: 16px;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  padding: 16px 20px;
  border-radius: 22px;
  background: rgba(14, 8, 24, 0.76);
  border: 1px solid rgba(240, 189, 86, 0.16);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

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

.site-nav-brand {
  display: block;
  width: 190px;
  height: 58px;
  color: var(--text);
  text-decoration: none;
  filter: drop-shadow(0 9px 12px rgba(0, 0, 0, 0.42));
  transition: transform 180ms ease, filter 180ms ease;
}

.site-nav-brand:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 12px 16px rgba(240, 189, 86, 0.18));
}

.site-nav-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

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

.site-nav-links {
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  min-width: 0;
}

.site-nav-actions {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.site-nav-link {
  position: relative;
  padding: 11px 7px;
  border: 0;
  border-radius: 9px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.site-nav-link::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 5px;
  left: 10px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav-link-button {
  appearance: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.site-nav-link:hover,
.site-nav-link.is-active,
.site-nav-link[aria-current="page"] {
  color: var(--text);
  background: rgba(240, 189, 86, 0.07);
}

.site-nav-link:hover::after,
.site-nav-link.is-active::after,
.site-nav-link[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav-link:focus-visible,
.site-nav-brand:focus-visible {
  outline: 2px solid rgba(240, 189, 86, 0.55);
  outline-offset: 4px;
}

.brand-chip,
.discord-link {
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid rgba(187, 167, 239, 0.24);
  background: rgba(187, 167, 239, 0.07);
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.brand-chip:hover,
.discord-link:hover,
.button:hover {
  transform: translateY(-1px);
}

.brand-chip:hover {
  border-color: rgba(240, 189, 86, 0.4);
  background: rgba(240, 189, 86, 0.12);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hero-copy {
  padding: 16px 8px 16px 8px;
}

.eyebrow {
  margin: 0 0 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: "Cinzel", serif;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.hero-text,
.section-text,
.feature-card li,
.gallery-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 56ch;
  margin: 18px 0 0;
  font-size: 1.05rem;
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #ffcf66 42%, #f6e2b1 100%);
  color: #231404;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.button-secondary {
  color: var(--text);
  border: 1px solid rgba(187, 167, 239, 0.22);
  background: rgba(141, 116, 199, 0.12);
}

.button-large {
  margin-top: 20px;
  min-width: min(100%, 360px);
}

.quick-info {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quick-info li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(141, 116, 199, 0.1);
  border: 1px solid rgba(187, 167, 239, 0.14);
  color: var(--text);
  font-size: 0.94rem;
}

.hero-panel {
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(36, 18, 61, 0.82) 0%, rgba(14, 8, 24, 0.97) 100%);
  border: 1px solid rgba(240, 189, 86, 0.14);
}

.server-logo {
  display: block;
  width: min(240px, 74%);
  margin: 0 auto 20px;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.38));
}

.status-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(141, 116, 199, 0.08));
  border: 1px solid rgba(187, 167, 239, 0.14);
}

.status-label {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.status-text {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 800;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
}

.status-badge.is-checking {
  background: rgba(240, 189, 86, 0.12);
  color: #f6d27d;
  border: 1px solid rgba(240, 189, 86, 0.28);
}

.status-badge.is-online {
  background: rgba(46, 204, 113, 0.14);
  color: #7ee7aa;
  border: 1px solid rgba(46, 204, 113, 0.35);
}

.status-badge.is-offline {
  background: rgba(255, 108, 92, 0.12);
  color: #ff9b91;
  border: 1px solid rgba(255, 108, 92, 0.35);
}

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

.status-meta-item {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(187, 167, 239, 0.1);
}

.meta-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.status-meta-item strong {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
  overflow-wrap: anywhere;
}

.status-error {
  margin: 12px 2px 0;
  color: #ffaaa2;
  font-size: 0.9rem;
}

.section {
  margin-top: 24px;
  padding: 28px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.lore-section .section-text,
.gallery-section .section-text,
.social-section .section-text,
.faq-section .section-text {
  max-width: 70ch;
}

.lore-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

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

.lore-card {
  padding: 22px;
  border-radius: 22px;
  background: var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.lore-card-story {
  background:
    linear-gradient(180deg, rgba(240, 189, 86, 0.08), rgba(36, 18, 61, 0.26), rgba(14, 8, 24, 0.96));
  box-shadow: inset 0 0 0 1px rgba(240, 189, 86, 0.12);
}

.lore-side .lore-card {
  background:
    linear-gradient(180deg, rgba(141, 116, 199, 0.1), rgba(14, 8, 24, 0.96));
  box-shadow: inset 0 0 0 1px rgba(187, 167, 239, 0.12);
}

.lore-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lore-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.lore-card p + p {
  margin-top: 14px;
}

.lore-points {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.lore-points li {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(240, 189, 86, 0.12);
  color: var(--text);
}

.feature-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

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

.extraction-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(213, 84, 84, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(31, 11, 28, 0.96), rgba(10, 6, 18, 0.98));
  border-color: rgba(213, 84, 84, 0.34);
}

.extraction-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
  gap: 28px;
  align-items: end;
}

.extraction-intro .section-text {
  max-width: 68ch;
}

.extraction-mode-pills {
  display: grid;
  gap: 10px;
}

.extraction-mode-pills span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(240, 189, 86, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.extraction-mode-pills strong {
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.06em;
}

.extraction-loop {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: extraction;
}

.extraction-loop li {
  position: relative;
  min-height: 220px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(187, 167, 239, 0.14);
  background: linear-gradient(180deg, rgba(141, 116, 199, 0.09), rgba(14, 8, 24, 0.92));
}

.extraction-phase {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.extraction-loop h3 {
  margin-bottom: 10px;
}

.extraction-loop p,
.extraction-risk p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.extraction-risk {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(213, 84, 84, 0.3);
  background: rgba(185, 75, 75, 0.09);
}

.extraction-risk-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  background: var(--ember);
  font-family: "Cinzel", serif;
  font-size: 1.6rem;
  font-weight: 800;
  box-shadow: 0 0 28px rgba(213, 84, 84, 0.28);
}

.extraction-risk-label {
  color: #f09a9a;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.extraction-risk h3 {
  margin: 4px 0 6px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: center;
  margin-top: 24px;
  padding: 24px 26px;
  border: 1px solid rgba(240, 189, 86, 0.16);
  border-radius: 22px;
  background: rgba(14, 8, 24, 0.84);
  color: var(--muted);
}

.site-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.site-footer-brand strong {
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 1.08rem;
}

.site-footer-brand span,
.site-footer-copyright {
  font-size: 0.86rem;
  line-height: 1.55;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.site-footer-links a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

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

.site-footer-copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

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

.legal-content {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.legal-content h1 {
  margin-bottom: 8px;
}

.legal-content h2 {
  margin-top: 30px;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
}

.legal-content p {
  max-width: 76ch;
  color: var(--muted);
  line-height: 1.75;
}

.legal-updated {
  margin-top: 0;
  color: var(--gold) !important;
  font-size: 0.86rem;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.feature-card,
.gallery-card {
  border-radius: 22px;
  padding: 22px;
  background: var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.feature-card ul {
  margin: 0;
  padding-left: 18px;
}

.feature-card li + li {
  margin-top: 8px;
}

.accent-metal {
  box-shadow: inset 0 0 0 1px rgba(141, 116, 199, 0.28);
  background:
    linear-gradient(180deg, rgba(141, 116, 199, 0.1), rgba(14, 8, 24, 0.96));
}

.accent-midnight {
  box-shadow: inset 0 0 0 1px rgba(78, 47, 125, 0.34);
  background:
    linear-gradient(180deg, rgba(18, 8, 29, 0.98), rgba(36, 18, 61, 0.86));
}

.accent-gold {
  box-shadow: inset 0 0 0 1px rgba(241, 196, 15, 0.2);
  background:
    linear-gradient(180deg, rgba(240, 189, 86, 0.08), rgba(14, 8, 24, 0.96));
}

.accent-red {
  box-shadow: inset 0 0 0 1px rgba(213, 84, 84, 0.26);
  background:
    linear-gradient(180deg, rgba(185, 75, 75, 0.1), rgba(14, 8, 24, 0.96));
}

.accent-violet {
  box-shadow: inset 0 0 0 1px rgba(187, 167, 239, 0.28);
  background:
    linear-gradient(180deg, rgba(182, 148, 255, 0.1), rgba(14, 8, 24, 0.96));
}

.accent-ember {
  box-shadow: inset 0 0 0 1px rgba(185, 75, 75, 0.22);
  background:
    linear-gradient(180deg, rgba(240, 189, 86, 0.06), rgba(185, 75, 75, 0.08), rgba(14, 8, 24, 0.96));
}

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

.gallery-card {
  overflow: hidden;
  display: block;
  padding: 0;
  appearance: none;
  background:
    linear-gradient(180deg, rgba(141, 116, 199, 0.12), rgba(14, 8, 24, 0.96));
  box-shadow: inset 0 0 0 1px rgba(187, 167, 239, 0.12);
  cursor: zoom-in;
}

.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 180ms ease, filter 180ms ease;
}

.gallery-card:hover img {
  transform: scale(1.015);
  filter: saturate(1.05);
}

.gallery-card:focus-visible {
  outline: 2px solid rgba(240, 189, 86, 0.55);
  outline-offset: 4px;
}

.gallery-empty {
  margin: 0;
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(187, 167, 239, 0.12);
  color: var(--muted);
  line-height: 1.7;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background: rgba(6, 3, 12, 0.88);
  backdrop-filter: blur(10px);
}

.gallery-lightbox-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(1280px, 100%);
}

.gallery-lightbox-frame {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(240, 189, 86, 0.18);
  background:
    linear-gradient(180deg, rgba(20, 11, 34, 0.98), rgba(8, 5, 14, 0.98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.gallery-lightbox-image {
  display: block;
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  background: rgba(8, 5, 14, 0.95);
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  border: 1px solid rgba(240, 189, 86, 0.22);
  background:
    linear-gradient(180deg, rgba(240, 189, 86, 0.16), rgba(36, 18, 61, 0.92));
  color: var(--text);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.gallery-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 14px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.gallery-lightbox-nav {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
  border-color: rgba(240, 189, 86, 0.38);
  background:
    linear-gradient(180deg, rgba(240, 189, 86, 0.22), rgba(36, 18, 61, 0.96));
}

.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:focus-visible {
  outline: 2px solid rgba(240, 189, 86, 0.55);
  outline-offset: 3px;
}

.gallery-lightbox-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

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

.social-card {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(141, 116, 199, 0.08), rgba(14, 8, 24, 0.96));
  border: 1px solid rgba(187, 167, 239, 0.14);
}

.social-embed {
  position: relative;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(8, 5, 14, 0.1), rgba(8, 5, 14, 0.92)),
    var(--social-poster, linear-gradient(180deg, rgba(36, 18, 61, 0.92), rgba(8, 5, 14, 0.98))) center / cover no-repeat;
}

.social-placeholder,
.social-iframe {
  width: 100%;
  height: 100%;
}

.social-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(8, 5, 14, 0.08), rgba(8, 5, 14, 0.86));
}

.social-placeholder-label,
.social-platform {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(240, 189, 86, 0.12);
  border: 1px solid rgba(240, 189, 86, 0.2);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-placeholder strong {
  font-family: "Cinzel", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.1;
}

.social-card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  justify-content: center;
}

.social-card-copy h3 {
  margin-bottom: 0;
}

.social-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.social-iframe {
  display: block;
  border: 0;
  background: rgba(8, 5, 14, 0.96);
}

.partner-banner {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(36, 18, 61, 0.78), rgba(14, 8, 24, 0.96));
  border: 1px solid rgba(240, 189, 86, 0.18);
}

.partner-image-link {
  display: block;
  width: 100%;
}

.partner-banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 5, 14, 0.88);
}

.partner-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.partner-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(240, 189, 86, 0.1);
  border: 1px solid rgba(240, 189, 86, 0.22);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

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

.partner-point {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(187, 167, 239, 0.12);
}

.partner-point strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
}

.partner-point span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.promo-code-box {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 58px;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(240, 189, 86, 0.08);
  border: 1px solid rgba(240, 189, 86, 0.22);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  appearance: none;
}

.promo-label {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.promo-code-box strong {
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  line-height: 1;
  white-space: nowrap;
}

.promo-code-box:hover {
  transform: translateY(-1px);
  border-color: rgba(240, 189, 86, 0.38);
  background: rgba(240, 189, 86, 0.14);
}

.promo-code-box:focus-visible {
  outline: 2px solid rgba(240, 189, 86, 0.55);
  outline-offset: 3px;
}

.partner-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  width: 100%;
}

.partner-actions .button {
  width: 100%;
  min-height: 58px;
  padding: 12px 18px;
  border-radius: 16px;
}

.copy-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(13, 23, 17, 0.96);
  border: 1px solid rgba(46, 204, 113, 0.34);
  color: #9ef0bf;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.cta-section {
  text-align: center;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
  text-align: left;
}

.cta-card {
  padding: 20px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(141, 116, 199, 0.08), rgba(14, 8, 24, 0.96));
  border: 1px solid rgba(187, 167, 239, 0.14);
}

.cta-label {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.cta-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.05rem;
}

.cta-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.button-small {
  margin-top: 8px;
  padding: 10px 14px;
  font-size: 0.92rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  align-items: flex-start;
}

.cta-primary-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.discord-cta-primary {
  min-width: min(100%, 460px);
  padding: 18px 28px;
  font-size: 1.02rem;
  box-shadow:
    0 22px 46px rgba(240, 189, 86, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.cta-note {
  width: min(100%, 460px);
  margin: 0;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(240, 189, 86, 0.08);
  border: 1px solid rgba(240, 189, 86, 0.16);
  color: var(--text);
  line-height: 1.65;
  text-align: center;
}

.cta-support-link {
  width: min(100%, 460px);
  margin-top: 0;
}

.staff-section .section-text {
  max-width: 62ch;
  margin: 0 auto;
  text-align: center;
}

.staff-staircase,
.reasons-grid {
  display: grid;
  gap: 18px;
}

.staff-staircase {
  width: 100%;
  margin: 22px auto 0;
  justify-items: center;
  gap: 14px;
}

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

.staff-step,
.reason-card {
  padding: 20px;
  border-radius: 22px;
  background: var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.staff-step {
  width: min(100%, 220px);
  padding: 16px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(141, 116, 199, 0.1), rgba(14, 8, 24, 0.96));
  box-shadow: inset 0 0 0 1px rgba(187, 167, 239, 0.12);
}

.staff-step-owner {
  width: min(100%, 232px);
  background:
    linear-gradient(180deg, rgba(240, 189, 86, 0.12), rgba(36, 18, 61, 0.92));
  box-shadow: inset 0 0 0 1px rgba(240, 189, 86, 0.18);
}

.staff-step-admin {
  width: min(100%, 580px);
}

.staff-step-dev {
  width: min(100%, 232px);
}

.staff-head-frame {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 14px;
  border-radius: 24px;
  border: 1px solid rgba(240, 189, 86, 0.2);
  background:
    radial-gradient(circle at 30% 30%, rgba(240, 189, 86, 0.22), transparent 48%),
    linear-gradient(180deg, rgba(141, 116, 199, 0.12), rgba(8, 5, 14, 0.95));
}

.staff-head {
  display: block;
  width: 62px;
  height: 62px;
  image-rendering: pixelated;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.34));
}

.staff-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.reason-card {
  background:
    linear-gradient(180deg, rgba(141, 116, 199, 0.08), rgba(14, 8, 24, 0.96));
  box-shadow: inset 0 0 0 1px rgba(187, 167, 239, 0.12);
}

.staff-role,
.reason-kicker {
  display: inline-block;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.staff-separator {
  color: var(--muted);
  font-weight: 700;
}

.staff-player-name {
  color: var(--text);
  font-family: "Cinzel", serif;
  font-size: 1rem;
}

.staff-member-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}

.staff-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.staff-step-admin .staff-meta {
  margin-bottom: 10px;
}

.staff-step-admin .staff-head-frame {
  width: 72px;
  height: 72px;
  margin: 0;
  border-radius: 20px;
}

.staff-step-admin .staff-head {
  width: 48px;
  height: 48px;
}

.staff-member-name {
  color: var(--text);
  font-family: "Cinzel", serif;
  font-size: 0.88rem;
  line-height: 1.1;
}

.reason-kicker {
  margin-bottom: 16px;
}

.reason-card h3 {
  margin-bottom: 0;
}

.reason-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-toggle-button {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 46;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 16px 14px 18px;
  border-radius: 18px 0 0 18px;
  border: 1px solid rgba(240, 189, 86, 0.24);
  border-right: 0;
  background:
    linear-gradient(180deg, rgba(240, 189, 86, 0.18), rgba(36, 18, 61, 0.96));
  color: var(--text);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.faq-toggle-button:hover {
  transform: translate(-2px, -50%);
}

.faq-toggle-button small {
  color: var(--muted);
  font-size: 0.78rem;
}

.faq-toggle-title {
  font-family: "Cinzel", serif;
  font-size: 1.15rem;
  color: var(--gold);
}

.faq-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 44;
  background: rgba(6, 3, 12, 0.62);
  backdrop-filter: blur(4px);
}

.faq-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 45;
  width: min(420px, calc(100vw - 24px));
  height: 100vh;
  padding: 26px 22px 30px;
  overflow-y: auto;
  background:
    linear-gradient(180deg, rgba(20, 11, 34, 0.98), rgba(8, 5, 14, 0.98));
  border-left: 1px solid rgba(240, 189, 86, 0.18);
  box-shadow: -22px 0 50px rgba(0, 0, 0, 0.42);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

body.faq-drawer-open {
  overflow: hidden;
}

body.faq-drawer-open .faq-drawer {
  transform: translateX(0);
}

body.faq-drawer-open .faq-toggle-button {
  opacity: 0;
  pointer-events: none;
}

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

.faq-drawer-header .eyebrow {
  margin-bottom: 10px;
}

.faq-close-button {
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(187, 167, 239, 0.22);
  background: rgba(141, 116, 199, 0.12);
  color: var(--text);
  cursor: pointer;
}

.faq-drawer-text {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(187, 167, 239, 0.12);
  transition: background 220ms ease, border-color 220ms ease;
}

.faq-item.is-open {
  background: rgba(240, 189, 86, 0.06);
  border-color: rgba(240, 189, 86, 0.22);
}

.faq-question {
  position: relative;
  width: 100%;
  padding: 16px 28px 16px 0;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font-weight: 800;
  font: inherit;
}

.faq-question:focus-visible {
  outline: 2px solid rgba(240, 189, 86, 0.45);
  outline-offset: 2px;
  border-radius: 8px;
}

.faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform 220ms ease;
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.faq-item.is-open .faq-answer p {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.roadmap-page-nav {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.roadmap-page-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.roadmap-page-section {
  margin-top: 24px;
}

.roadmap-teaser-section {
  position: relative;
  min-height: 390px;
  padding: 0;
  background: #0b0612;
  border-color: rgba(240, 189, 86, 0.34);
}

.roadmap-teaser-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 4, 14, 0.95) 0%, rgba(8, 4, 14, 0.7) 50%, rgba(8, 4, 14, 0.25) 100%),
    linear-gradient(0deg, rgba(8, 4, 14, 0.92), transparent 54%);
  pointer-events: none;
}

.roadmap-teaser-section picture,
.roadmap-teaser-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.roadmap-teaser-section img {
  object-fit: cover;
  object-position: center;
}

.roadmap-teaser-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 36px;
  min-height: 390px;
  padding: 42px;
}

.roadmap-teaser-content > div:first-child {
  max-width: 660px;
}

.roadmap-teaser-content h2 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  text-wrap: balance;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

.roadmap-teaser-content p:not(.eyebrow) {
  max-width: 62ch;
  margin: 16px 0 0;
  color: #e1d8ed;
  line-height: 1.7;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.84);
}

.roadmap-teaser-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.roadmap-teaser-highlights span {
  padding: 8px 11px;
  border: 1px solid rgba(240, 189, 86, 0.22);
  border-radius: 999px;
  color: #f4e7ca;
  background: rgba(12, 6, 21, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
}

.roadmap-teaser-date {
  display: grid;
  justify-items: center;
  min-width: 188px;
  padding: 20px 22px;
  border: 1px solid rgba(240, 189, 86, 0.4);
  border-radius: 20px;
  background: rgba(11, 5, 19, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.roadmap-teaser-date span,
.roadmap-teaser-date small {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.roadmap-teaser-date strong {
  margin: 6px 0;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 1.22rem;
}

.roadmap-section {
  padding: 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(182, 148, 255, 0.13), transparent 28%),
    linear-gradient(160deg, rgba(24, 11, 39, 0.98), rgba(8, 4, 14, 0.99));
  border-color: rgba(240, 189, 86, 0.34);
}

.roadmap-cover {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-bottom: 1px solid rgba(240, 189, 86, 0.2);
}

.roadmap-cover::before,
.roadmap-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.roadmap-cover::before {
  background:
    linear-gradient(90deg, rgba(8, 4, 14, 0.9) 0%, rgba(8, 4, 14, 0.52) 46%, rgba(8, 4, 14, 0.16) 76%),
    linear-gradient(0deg, rgba(8, 4, 14, 0.98) 0%, transparent 46%);
}

.roadmap-cover::after {
  box-shadow: inset 0 0 110px rgba(5, 2, 9, 0.58);
}

.roadmap-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
}

.roadmap-cover-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  min-height: 430px;
  padding: 48px;
}

.roadmap-cover-content > div:first-child {
  max-width: 650px;
}

.roadmap-cover-content h1,
.roadmap-cover-content h2 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 5.6vw, 4.8rem);
  text-wrap: balance;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.72);
}

.roadmap-cover-content p:not(.eyebrow) {
  max-width: 60ch;
  margin: 18px 0 0;
  color: #e1d8ed;
  line-height: 1.7;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.86);
}

.roadmap-release-stamp {
  flex: 0 0 auto;
  display: grid;
  justify-items: center;
  min-width: 158px;
  padding: 18px 22px;
  border: 1px solid rgba(240, 189, 86, 0.46);
  border-radius: 20px;
  background: rgba(11, 5, 19, 0.76);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 18px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.roadmap-release-stamp span,
.roadmap-release-stamp small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.roadmap-release-stamp strong {
  margin: 4px 0 2px;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 1.18rem;
}

.roadmap-overview {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: stretch;
  gap: 12px;
  margin: -22px 28px 0;
}

.roadmap-overview > div,
.roadmap-overview > p {
  min-height: 92px;
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(187, 167, 239, 0.17);
  border-radius: 18px;
  background: rgba(15, 8, 26, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.roadmap-overview > div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
}

.roadmap-overview > div:first-child {
  border-color: rgba(46, 204, 113, 0.28);
}

.roadmap-overview > div:nth-child(2) {
  border-color: rgba(240, 189, 86, 0.28);
}

.roadmap-overview strong {
  color: var(--gold);
}

.roadmap-overview > div > strong {
  font-family: "Cinzel", serif;
  font-size: 2rem;
}

.roadmap-overview span {
  max-width: 14ch;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.4;
}

.roadmap-overview > p {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.6;
}

.roadmap-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin: 34px 32px 0;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.roadmap-toolbar-label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.roadmap-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.roadmap-filter {
  appearance: none;
  padding: 10px 15px;
  border: 1px solid rgba(187, 167, 239, 0.18);
  border-radius: 999px;
  background: rgba(141, 116, 199, 0.08);
  color: var(--muted);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.roadmap-filter:hover {
  transform: translateY(-1px);
  color: var(--text);
  border-color: rgba(240, 189, 86, 0.32);
}

.roadmap-filter.is-active {
  color: #261604;
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, var(--gold), #f8d98e);
}

.roadmap-filter:focus-visible {
  outline: 2px solid rgba(240, 189, 86, 0.7);
  outline-offset: 3px;
}

.roadmap-groups {
  padding: 34px 32px 8px;
}

.roadmap-group[hidden] {
  display: none;
}

.roadmap-group-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.roadmap-group-heading span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.roadmap-group-heading h2,
.roadmap-group-heading h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.roadmap-group-marker {
  width: 14px;
  height: 52px;
  border-radius: 999px;
}

.roadmap-group-marker-active {
  background: linear-gradient(180deg, #89efb5, var(--green));
  box-shadow: 0 0 24px rgba(46, 204, 113, 0.32);
}

.roadmap-group-marker-upcoming {
  background: linear-gradient(180deg, #ffe5a9, var(--gold-deep));
  box-shadow: 0 0 24px rgba(240, 189, 86, 0.26);
}

.roadmap-group-marker-concept {
  background: linear-gradient(180deg, #d8c5ff, #7654bd);
  box-shadow: 0 0 24px rgba(182, 148, 255, 0.3);
}

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

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

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

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

.roadmap-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(187, 167, 239, 0.15);
  border-radius: 22px;
  background:
    linear-gradient(155deg, rgba(141, 116, 199, 0.1), transparent 38%),
    rgba(12, 6, 21, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.roadmap-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(182, 148, 255, 0.07);
  filter: blur(10px);
  pointer-events: none;
}

.roadmap-card-featured {
  border-color: rgba(213, 84, 84, 0.28);
  background:
    radial-gradient(circle at 92% 12%, rgba(213, 84, 84, 0.18), transparent 32%),
    linear-gradient(155deg, rgba(122, 27, 50, 0.15), transparent 45%),
    rgba(12, 6, 21, 0.92);
}

.roadmap-card-rebirth {
  border-color: rgba(240, 189, 86, 0.26);
  background:
    radial-gradient(circle at 92% 12%, rgba(240, 189, 86, 0.12), transparent 32%),
    linear-gradient(155deg, rgba(141, 116, 199, 0.12), transparent 45%),
    rgba(12, 6, 21, 0.92);
}

.roadmap-card-city {
  border-color: rgba(213, 84, 84, 0.26);
  background:
    radial-gradient(circle at 92% 12%, rgba(213, 84, 84, 0.14), transparent 32%),
    linear-gradient(155deg, rgba(84, 65, 96, 0.14), transparent 45%),
    rgba(12, 6, 21, 0.92);
}

.roadmap-card-events {
  border-color: rgba(182, 148, 255, 0.28);
  background:
    radial-gradient(circle at 92% 12%, rgba(182, 148, 255, 0.13), transparent 32%),
    linear-gradient(155deg, rgba(141, 116, 199, 0.12), transparent 45%),
    rgba(12, 6, 21, 0.92);
}

.roadmap-card-season {
  border-color: rgba(182, 148, 255, 0.32);
  background:
    radial-gradient(circle at 92% 12%, rgba(182, 148, 255, 0.15), transparent 34%),
    linear-gradient(155deg, rgba(141, 116, 199, 0.14), transparent 48%),
    rgba(12, 6, 21, 0.92);
}

.roadmap-card-multiplayer {
  border-color: rgba(240, 189, 86, 0.25);
  background:
    radial-gradient(circle at 92% 12%, rgba(240, 189, 86, 0.11), transparent 34%),
    linear-gradient(155deg, rgba(141, 116, 199, 0.1), transparent 48%),
    rgba(12, 6, 21, 0.92);
}

.roadmap-card[hidden] {
  display: none;
}

.roadmap-card-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.roadmap-date {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.roadmap-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.roadmap-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.roadmap-status-active {
  color: #80e8ad;
  border-color: rgba(46, 204, 113, 0.28);
  background: rgba(46, 204, 113, 0.09);
}

.roadmap-status-planned {
  color: #f4ce7e;
  border-color: rgba(240, 189, 86, 0.26);
  background: rgba(240, 189, 86, 0.08);
}

.roadmap-status-development {
  color: #c7b3f7;
  border-color: rgba(182, 148, 255, 0.28);
  background: rgba(182, 148, 255, 0.09);
}

.roadmap-status-community {
  color: #d7c4ff;
  border-color: rgba(182, 148, 255, 0.32);
  background: rgba(182, 148, 255, 0.1);
}

.roadmap-status-pending {
  color: #c8bfd2;
  border-color: rgba(200, 191, 210, 0.2);
  background: rgba(200, 191, 210, 0.06);
}

.roadmap-status-concept {
  color: #d8c5ff;
  border-color: rgba(182, 148, 255, 0.34);
  background: rgba(182, 148, 255, 0.11);
}

.roadmap-card-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.roadmap-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(187, 167, 239, 0.18);
  border-radius: 16px;
  color: var(--violet-sheen);
  background: rgba(141, 116, 199, 0.1);
}

.roadmap-icon svg {
  width: 27px;
  height: 27px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.roadmap-icon-heart {
  color: #ff8798;
  border-color: rgba(213, 84, 84, 0.28);
  background: rgba(213, 84, 84, 0.1);
}

.roadmap-icon-heart svg path {
  fill: rgba(213, 84, 84, 0.16);
}

.roadmap-icon-crown,
.roadmap-icon-rebirth {
  color: var(--gold);
  border-color: rgba(240, 189, 86, 0.26);
  background: rgba(240, 189, 86, 0.08);
}

.roadmap-icon-map {
  color: #d6c3ff;
}

.roadmap-icon-extraction {
  color: #efa0a0;
  border-color: rgba(213, 84, 84, 0.24);
  background: rgba(213, 84, 84, 0.08);
}

.roadmap-icon-community {
  color: #d7c4ff;
  border-color: rgba(182, 148, 255, 0.26);
  background: rgba(182, 148, 255, 0.09);
}

.roadmap-icon-season {
  color: #d8c5ff;
  border-color: rgba(182, 148, 255, 0.28);
  background: rgba(182, 148, 255, 0.1);
}

.roadmap-icon-multiplayer {
  color: var(--gold);
  border-color: rgba(240, 189, 86, 0.26);
  background: rgba(240, 189, 86, 0.08);
}

.roadmap-mode {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.roadmap-card h3,
.roadmap-card h4 {
  margin: 0;
  color: var(--text);
  font-family: "Cinzel", serif;
  font-size: 1.35rem;
  line-height: 1.15;
}

.roadmap-month-placeholder {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  padding: 20px 22px;
  border: 1px dashed rgba(187, 167, 239, 0.24);
  border-radius: 20px;
  background: rgba(141, 116, 199, 0.055);
}

.roadmap-month-name {
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.roadmap-month-placeholder h3 {
  margin: 0 0 5px;
  font-size: 1.08rem;
}

.roadmap-month-placeholder p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.roadmap-card > p {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.65;
}

.roadmap-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.roadmap-card li {
  position: relative;
  padding-left: 17px;
  color: #e9e2f1;
  font-size: 0.83rem;
  line-height: 1.5;
}

.roadmap-card li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--gold);
  transform: rotate(45deg);
}

.roadmap-path {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 28px 0;
}

.roadmap-path span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 189, 86, 0.34));
}

.roadmap-path span:last-child {
  background: linear-gradient(90deg, rgba(240, 189, 86, 0.34), transparent);
}

.roadmap-path p {
  margin: 0;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.roadmap-path-concept p {
  color: #cdb8f8;
}

.roadmap-path-concept span {
  background: linear-gradient(90deg, transparent, rgba(182, 148, 255, 0.34));
}

.roadmap-path-concept span:last-child {
  background: linear-gradient(90deg, rgba(182, 148, 255, 0.34), transparent);
}

.roadmap-concept-group {
  padding: 24px;
  border: 1px solid rgba(182, 148, 255, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 10%, rgba(182, 148, 255, 0.1), transparent 30%),
    rgba(141, 116, 199, 0.035);
}

.roadmap-concept-warning {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding: 15px 17px;
  border: 1px dashed rgba(182, 148, 255, 0.3);
  border-radius: 16px;
  background: rgba(182, 148, 255, 0.065);
}

.roadmap-concept-warning strong {
  color: #d8c5ff;
  font-family: "Cinzel", serif;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.roadmap-concept-warning p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.roadmap-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin: 24px 32px 32px;
  padding: 16px 18px;
  border: 1px solid rgba(240, 189, 86, 0.16);
  border-radius: 18px;
  background: rgba(240, 189, 86, 0.055);
}

.roadmap-note > span {
  color: var(--gold);
  font-size: 1.2rem;
}

.roadmap-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.roadmap-note a {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.roadmap-note a:hover {
  color: #ffe1a2;
}

@media (max-width: 1120px) {
  :root {
    --nav-offset: 236px;
  }

  .site-nav {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-nav-links,
  .site-nav-actions,
  .roadmap-page-links {
    justify-content: center;
  }

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

@media (max-width: 980px) {
  .hero-grid,
  .feature-grid,
  .lore-grid,
  .extraction-intro,
  .social-card {
    grid-template-columns: 1fr;
  }

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

  .partner-points,
  .partner-actions {
    grid-template-columns: 1fr;
  }

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

  .social-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

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

  .staff-step {
    width: min(100%, 280px);
  }

  .staff-step-admin {
    width: min(100%, 520px);
  }

  .status-meta {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-primary-stack,
  .cta-actions .button-large,
  .cta-note {
    width: 100%;
  }

  .roadmap-teaser-content {
    grid-template-columns: 1fr;
  }

  .roadmap-teaser-date {
    justify-self: start;
  }

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

  .roadmap-overview > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --nav-offset: 268px;
  }

  .page-shell {
    width: min(100% - 18px, 100%);
    padding-top: 10px;
  }

  .site-nav {
    top: 10px;
    padding: 14px 16px;
    border-radius: 20px;
  }

  .site-nav-brand {
    width: 170px;
    height: 50px;
  }

  .site-nav-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .site-nav-actions {
    width: 100%;
    justify-content: center;
  }

  .hero,
  .section {
    border-radius: 22px;
    padding: 20px;
  }

  .status-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-card {
    padding: 18px;
  }

  .extraction-loop,
  .extraction-risk {
    grid-template-columns: 1fr;
  }

  .extraction-loop li {
    min-height: 0;
  }

  .extraction-phase {
    margin-bottom: 18px;
  }

  .extraction-risk .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 22px 20px;
  }

  .site-footer-links {
    justify-content: flex-start;
  }

  .social-card-copy {
    gap: 12px;
  }

  .faq-toggle-button {
    top: auto;
    right: 14px;
    bottom: 18px;
    border-radius: 18px;
    border-right: 1px solid rgba(240, 189, 86, 0.24);
    transform: none;
  }

  .faq-toggle-button:hover {
    transform: translateY(-1px);
  }

  .faq-drawer {
    width: min(100vw - 12px, 380px);
    padding: 22px 18px 26px;
  }

  .gallery-lightbox {
    padding: 14px;
  }

  .gallery-lightbox-panel {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gallery-lightbox-frame {
    order: 1;
    border-radius: 22px;
  }

  .gallery-lightbox-image {
    max-height: 76vh;
  }

  .gallery-lightbox-nav {
    position: fixed;
    bottom: 18px;
    z-index: 1;
  }

  .gallery-lightbox-nav-prev {
    left: 18px;
  }

  .gallery-lightbox-nav-next {
    right: 18px;
  }

  .status-badge {
    min-width: 0;
  }

  .roadmap-cover,
  .roadmap-cover-content {
    min-height: 500px;
  }

  .roadmap-cover img {
    object-position: 68% center;
  }

  .roadmap-cover::before {
    background:
      linear-gradient(0deg, rgba(8, 4, 14, 0.98) 0%, rgba(8, 4, 14, 0.46) 72%, rgba(8, 4, 14, 0.2) 100%);
  }

  .roadmap-cover-content {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 28px 22px;
  }

  .roadmap-cover-content h2 {
    max-width: 11ch;
    font-size: clamp(2.3rem, 12vw, 3.6rem);
  }

  .roadmap-cover-content h1 {
    max-width: 11ch;
    font-size: clamp(2.3rem, 12vw, 3.6rem);
  }

  .roadmap-teaser-section,
  .roadmap-teaser-content {
    min-height: 480px;
  }

  .roadmap-teaser-section img {
    object-position: 68% center;
  }

  .roadmap-teaser-section::before {
    background:
      linear-gradient(0deg, rgba(8, 4, 14, 0.98) 0%, rgba(8, 4, 14, 0.55) 72%, rgba(8, 4, 14, 0.22) 100%);
  }

  .roadmap-teaser-content {
    align-content: end;
    padding: 28px 22px;
  }

  .roadmap-teaser-content h2 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .roadmap-teaser-date {
    grid-template-columns: auto auto;
    justify-items: start;
    gap: 5px 8px;
    min-width: 0;
    padding: 12px 15px;
  }

  .roadmap-teaser-date strong {
    margin: 0;
  }

  .roadmap-teaser-date small {
    grid-column: 1 / -1;
  }

  .roadmap-release-stamp {
    grid-template-columns: auto auto auto;
    align-items: center;
    justify-items: start;
    gap: 6px;
    min-width: 0;
    padding: 11px 14px;
  }

  .roadmap-release-stamp strong {
    margin: 0;
  }

  .roadmap-overview {
    margin: -14px 14px 0;
  }

  .roadmap-overview > div {
    min-width: 0;
  }

  .roadmap-toolbar {
    align-items: flex-start;
    margin: 30px 20px 0;
  }

  .roadmap-groups {
    padding: 30px 20px 6px;
  }

  .roadmap-grid-active,
  .roadmap-grid-upcoming,
  .roadmap-grid-concept {
    grid-template-columns: 1fr;
  }

  .roadmap-note {
    grid-template-columns: auto minmax(0, 1fr);
    margin: 22px 20px 24px;
  }

  .roadmap-note a {
    grid-column: 2;
  }

  .roadmap-month-placeholder {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .roadmap-month-placeholder .roadmap-status {
    justify-self: start;
  }

  .roadmap-concept-group {
    padding: 18px;
  }

  .roadmap-concept-warning {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  h1 {
    font-size: clamp(2.5rem, 15vw, 4rem);
  }
}

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

  .roadmap-overview {
    grid-template-columns: 1fr;
  }

  .roadmap-overview > p {
    grid-column: auto;
  }

  .roadmap-overview > div,
  .roadmap-overview > p {
    min-height: 0;
  }

  .roadmap-toolbar {
    flex-direction: column;
  }

  .roadmap-page-links {
    width: 100%;
  }

  .roadmap-card {
    padding: 18px;
  }

  .roadmap-card-topline {
    align-items: flex-start;
  }

  .roadmap-status {
    font-size: 0.6rem;
  }

  .roadmap-path {
    gap: 10px;
  }

  .roadmap-path p {
    font-size: 0.62rem;
  }
}

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

  .sparkle,
  .site-nav-link,
  .gallery-card img,
  .brand-chip,
  .discord-link,
  .button,
  .promo-code-box,
  .faq-toggle-button {
    animation: none;
    transition: none;
  }

  .roadmap-filter {
    transition: none;
  }
}
