:root {
  --bg: #06060c;
  --bg-soft: #0b0c17;
  --panel: rgba(12, 14, 25, 0.9);
  --panel-strong: rgba(16, 18, 32, 0.96);
  --line: rgba(215, 179, 88, 0.18);
  --gold: #d4ad57;
  --gold-soft: #f3dda4;
  --violet: #b6a2ff;
  --violet-strong: #8a74ff;
  --blue: #4f7cff;
  --blue-soft: #9cd8ff;
  --text: #f5f1ff;
  --muted: #cabfdf;
  --success: #60d497;
  --danger: #ff8d90;
  --radius: 14px;
  --shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
  --width: 1180px;
  --section-gap: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background: #05060a;
}

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

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

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

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

.site-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 5, 10, 0.04), rgba(4, 5, 10, 0.34) 52%, rgba(4, 5, 10, 0.76) 100%),
    radial-gradient(circle at 50% 20%, rgba(156, 216, 255, 0.045), transparent 34%),
    url("home-wilderness-bg-wide.webp") center top / cover no-repeat;
  opacity: 1;
}

.site-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.18)),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.34));
}

.site-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: none;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
}

.site-atmosphere span {
  position: absolute;
  left: -12%;
  width: 124%;
  height: 18vh;
  background: linear-gradient(90deg, transparent, rgba(156, 216, 255, 0.055), rgba(212, 173, 87, 0.035), transparent);
  filter: blur(18px);
  transform: translate3d(0, 0, 0);
  animation: atmosphere-drift 24s linear infinite;
}

.site-atmosphere span:nth-child(1) {
  top: 18%;
}

.site-atmosphere span:nth-child(2) {
  top: 48%;
  animation-duration: 34s;
  animation-direction: reverse;
  opacity: 0.72;
}

.site-atmosphere span:nth-child(3) {
  top: 72%;
  animation-duration: 42s;
  opacity: 0.48;
}

@keyframes atmosphere-drift {
  0% {
    transform: translate3d(-5%, 0, 0);
  }

  50% {
    transform: translate3d(5%, -8px, 0);
  }

  100% {
    transform: translate3d(-5%, 0, 0);
  }
}

.container {
  width: min(calc(100% - 32px), var(--width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 16px 0;
  background: transparent;
  border-bottom: 0;
}

.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 14px 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10, 12, 20, 0.88), rgba(6, 8, 14, 0.84));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  justify-self: start;
}

.brand img {
  width: clamp(170px, 14vw, 230px);
}

.site-nav,
.topbar-actions,
.hero-actions,
.mini-links,
.action-list {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.site-nav {
  justify-self: center;
  justify-content: center;
  gap: 24px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.site-nav a,
.site-nav-more__summary,
.ghost-link,
.mini-links a {
  color: var(--muted);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.site-nav a,
.site-nav-more__summary {
  padding: 8px 0;
}

.site-nav-more {
  position: relative;
  display: flex;
  align-items: center;
}

.site-nav-more__summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.site-nav-more__summary::-webkit-details-marker {
  display: none;
}

.site-nav-more__summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.75;
}

.site-nav-more[open] .site-nav-more__summary::after {
  transform: translateY(1px) rotate(225deg);
}

.site-nav-more__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 60;
  min-width: 168px;
  padding: 8px;
  border: 1px solid rgba(156, 216, 255, 0.2);
  border-radius: 14px;
  background: rgba(9, 12, 20, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.site-nav-more__menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.93rem;
}

.site-nav-more__menu a:hover,
.site-nav-more__menu a.is-active {
  color: var(--text);
  background: rgba(156, 216, 255, 0.09);
}

.topbar-actions {
  justify-self: end;
  justify-content: flex-end;
  gap: 16px;
}

.site-nav a.is-active,
.site-nav a:hover,
.site-nav-more__summary.is-active,
.site-nav-more__summary:hover,
.site-nav-more[open] .site-nav-more__summary,
.ghost-link:hover,
.mini-links a:hover {
  color: var(--text);
}

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

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

.button:disabled {
  opacity: 0.56;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.button.is-disabled,
.button[aria-disabled="true"] {
  opacity: 0.56;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

.button-primary {
  color: #08101b;
  background: linear-gradient(135deg, #f1d17b 0%, #9dc7ff 37%, #6579ff 68%, #c3a256 100%);
  box-shadow: 0 12px 32px rgba(79, 124, 255, 0.34);
}

.button-primary:hover,
.button-primary:focus-visible,
.button-cart-add:hover,
.button-cart-add:focus-visible {
  box-shadow:
    0 16px 40px rgba(79, 124, 255, 0.42),
    0 0 0 3px rgba(157, 199, 255, 0.16);
}

.button-secondary,
.button-ghost {
  color: var(--text);
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.1);
}

.button-danger {
  color: #fff2f3;
  border-color: rgba(255, 141, 144, 0.26);
  background: linear-gradient(135deg, rgba(154, 35, 56, 0.95), rgba(109, 21, 40, 0.98));
  box-shadow: 0 12px 28px rgba(109, 21, 40, 0.24);
}

.button-danger:hover,
.button-danger:focus-visible {
  box-shadow:
    0 16px 38px rgba(154, 35, 56, 0.34),
    0 0 0 3px rgba(255, 141, 144, 0.14);
}

.button:focus-visible {
  outline: none;
}

.button-block {
  width: 100%;
}

.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;
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  font-size: 0.92rem;
}

.panel,
.card,
.provider-card,
.catalog-card {
  background:
    linear-gradient(180deg, rgba(13, 15, 26, 0.96), rgba(8, 10, 18, 0.96)),
    radial-gradient(circle at top, rgba(79, 124, 255, 0.1), transparent 40%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel,
.card,
.provider-card,
.catalog-card {
  padding: 28px;
}

.hero {
  padding: 72px 0 28px;
}

.page-home .hero {
  padding: 42px 0 18px;
}

.home-hero-panel {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 54px);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(11, 13, 21, 0.88), rgba(6, 8, 14, 0.9)),
    radial-gradient(circle at center top, rgba(212, 173, 87, 0.1), transparent 42%);
  backdrop-filter: blur(10px);
}

.home-hero-panel h1 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(3.4rem, 8vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow:
    0 0 18px rgba(245, 241, 255, 0.18),
    0 10px 38px rgba(0, 0, 0, 0.72);
}

.home-hero-panel .lede {
  max-width: 620px;
  margin: 18px auto 0;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.home-hero-panel .hero-actions {
  justify-content: center;
  margin-top: 24px;
}

.server-status-widget {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 100%;
  margin: 18px auto 0;
  padding: 10px 16px;
  border: 1px solid rgba(156, 216, 255, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(15, 20, 34, 0.92), rgba(8, 10, 18, 0.9)),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 12px 28px rgba(0, 0, 0, 0.22);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1;
}

.server-status-widget > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.server-status-widget > span:not(.server-status-dot) + span:not(.server-status-dot) {
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid rgba(156, 216, 255, 0.16);
}

.server-status-widget strong {
  color: var(--text);
}

.server-status-dot {
  width: 10px;
  height: 10px;
  align-self: center;
  margin-right: 8px;
  border-radius: 999px;
  background: #8b92a8;
  box-shadow: 0 0 18px rgba(139, 146, 168, 0.42);
}

.server-status-widget.is-online .server-status-dot {
  background: #37d67a;
  box-shadow: 0 0 18px rgba(55, 214, 122, 0.52);
}

.server-status-widget.is-offline .server-status-dot {
  background: #ff4e6d;
  box-shadow: 0 0 18px rgba(255, 78, 109, 0.42);
}

.home-section-panel {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(215, 179, 88, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(8, 10, 18, 0.82), rgba(5, 7, 13, 0.84)),
    radial-gradient(circle at center top, rgba(156, 216, 255, 0.07), transparent 46%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.home-why-panel {
  display: grid;
  gap: 26px;
}

.home-why-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.72fr);
  gap: 16px;
  align-items: stretch;
}

.home-why-card,
.home-discord-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(156, 216, 255, 0.13);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(12, 15, 25, 0.82), rgba(6, 8, 14, 0.86)),
    radial-gradient(circle at top left, rgba(212, 173, 87, 0.07), transparent 42%);
}

.home-why-card h3,
.home-discord-card h3 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.18;
}

.home-why-card .feature-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.home-discord-card {
  justify-items: start;
  border-color: rgba(215, 179, 88, 0.18);
}

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

.home-discord-card .button {
  margin-top: auto;
}

.hero-home .hero-grid,
.showcase-grid,
.portal-grid,
.auth-grid {
  display: grid;
  gap: 22px;
}

.hero-home .hero-grid {
  grid-template-columns: 1.35fr 0.95fr;
}

.hero-copy,
.portal-preview {
  display: flex;
  flex-direction: column;
}

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

.auth-grid {
  align-items: stretch;
}

.hero-copy h1,
.hero-compact h1,
.auth-copy h1,
.single-panel h1,
.panel h2,
.card h3,
.provider-card h3,
.catalog-card h3,
.footer-brand h2 {
  margin: 0;
  font-family: "Cinzel", serif;
}

.hero-copy h1,
.hero-compact h1,
.auth-copy h1,
.single-panel h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.04;
  text-shadow: 0 0 18px rgba(182, 162, 255, 0.18);
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--gold-soft);
}

.lede,
.panel p,
.card p,
.catalog-card p,
.provider-card p,
.footer-brand p,
.footer-legal,
.history-item span,
.history-item time {
  color: var(--muted);
  line-height: 1.7;
}

.hero-stats,
.card-grid,
.catalog-grid,
.provider-grid {
  display: grid;
  gap: 18px;
}

.download-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}

.download-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.download-card .hero-actions {
  margin-top: auto;
  padding-top: 10px;
}

.download-file-meta,
.download-picker__meta {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-release-meta,
.download-file-note {
  margin: 0;
  color: var(--blue-soft);
  font-weight: 800;
}

.download-picker {
  margin-top: 4px;
}

.download-picker__name {
  margin: 2px 0 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.12;
  color: var(--text);
}

.download-card-alt .custom-select__menu {
  max-height: 320px;
  overflow: auto;
}

.download-details summary {
  cursor: pointer;
  color: var(--gold-soft);
  font-weight: 900;
}

.download-details__body {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.inline-link {
  color: var(--blue-soft);
  font-weight: 800;
}

.download-checksum-list {
  display: grid;
  gap: 10px;
}

.download-checksum-item {
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) minmax(90px, 0.35fr) minmax(0, 1.5fr);
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid rgba(156, 216, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.download-checksum-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.download-checksum-item code {
  color: #d8e7ff;
  font-family: Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.hero-stats div {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.hero-stats strong,
.history-item strong {
  display: block;
  margin-bottom: 6px;
}

.section-band {
  padding: 30px 0;
}

.section-band-alt {
  padding-top: 8px;
}

.page-support .card-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.rules-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.support-card,
.guide-section,
.rules-card {
  display: grid;
  gap: 14px;
}

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

.rules-columns div,
.member-row,
.admin-stat-card {
  border: 1px solid rgba(156, 216, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.rules-columns div {
  padding: 16px;
}

.member-directory {
  display: grid;
  gap: 10px;
}

.member-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.2fr) minmax(150px, 0.8fr) minmax(190px, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.member-row:hover {
  border-color: rgba(156, 216, 255, 0.28);
  background: rgba(156, 216, 255, 0.045);
  transform: translateY(-1px);
}

.member-row__cell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px;
  align-items: baseline;
  min-width: 0;
}

.member-row__cell small {
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.member-row__cell small::after {
  content: ":";
}

.member-row__cell strong {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
}

.admin-analytics-panel {
  display: grid;
  gap: 16px;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.realtime-list {
  display: grid;
  gap: 10px;
}

.realtime-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(156, 216, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.realtime-row strong,
.realtime-row span {
  display: block;
}

.realtime-row span,
.realtime-row small {
  color: var(--muted);
}

.admin-stat-card {
  display: grid;
  gap: 8px;
  min-height: 92px;
  padding: 16px;
  align-content: center;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.admin-stat-card span {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-stat-card strong {
  display: block;
  color: var(--text);
  font-size: 1.65rem;
  line-height: 1;
}

.referral-link-card {
  display: grid;
  gap: 18px;
}

.referral-link-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.referral-link-card__header form {
  flex: 0 0 auto;
}

.referral-url-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  max-width: 100%;
}

.referral-url {
  flex: 1 1 auto;
  min-width: 0;
  margin: 12px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(156, 216, 255, 0.14);
  border-radius: 14px;
  color: var(--blue-soft);
  background: rgba(255, 255, 255, 0.025);
  font-family: Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.copy-icon-button {
  flex: 0 0 46px;
  width: 46px;
  min-height: 46px;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(156, 216, 255, 0.16);
  border-radius: 14px;
  color: var(--blue-soft);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.copy-icon-button:hover,
.copy-icon-button:focus-visible,
.copy-icon-button.is-copied {
  color: var(--gold-soft);
  border-color: rgba(241, 209, 123, 0.38);
  background: rgba(241, 209, 123, 0.09);
  transform: translateY(-1px);
}

.copy-icon {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.referral-description {
  margin: 10px 0 0;
  color: var(--muted);
}

.referral-description strong {
  color: var(--gold-soft);
}

.referral-stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.referral-stats-grid .admin-stat-card {
  min-height: 72px;
  gap: 6px;
  padding: 12px 14px;
}

.referral-stats-grid .admin-stat-card strong {
  font-size: 1.25rem;
}

.referral-link-card__quick {
  display: grid;
  grid-template-columns: minmax(140px, 0.65fr) minmax(190px, 0.85fr) minmax(280px, 1.5fr);
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(156, 216, 255, 0.1);
  border-bottom: 1px solid rgba(156, 216, 255, 0.1);
  align-items: start;
}

.referral-quick-item {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.referral-quick-item > span,
.referral-section-heading span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.referral-quick-item strong,
.referral-quick-item .command-text {
  min-width: 0;
  color: var(--text);
  overflow-wrap: anywhere;
}

.referral-download-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.referral-download-pills span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 100%;
  padding: 7px 9px;
  border: 1px solid rgba(156, 216, 255, 0.14);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.8rem;
}

.referral-download-pills strong {
  color: var(--blue-soft);
}

.referral-evidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
  gap: 18px;
  align-items: start;
}

.referral-detail-section {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.referral-journey-list {
  grid-column: 1 / -1;
}

.referral-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.referral-section-heading h3 {
  margin: 0;
  color: var(--gold-soft);
  font-size: 1rem;
  line-height: 1.2;
}

.referral-table-wrap {
  max-height: 340px;
  overflow: auto;
  border: 1px solid rgba(156, 216, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
}

.referral-data-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.referral-data-table th,
.referral-data-table td {
  padding: 9px 11px;
  border-bottom: 1px solid rgba(156, 216, 255, 0.08);
  vertical-align: top;
  overflow-wrap: anywhere;
}

.referral-data-table tr:last-child th,
.referral-data-table tr:last-child td {
  border-bottom: 0;
}

.referral-data-table th {
  width: 31%;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: left;
}

.referral-data-table td {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
}

.referral-empty-state {
  margin: 0;
  padding: 10px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.referral-link-card__details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.referral-download-breakdown ul,
.referral-player-list ul,
.referral-visitor-summary ul,
.referral-journey-list ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.referral-download-breakdown li,
.referral-player-list li,
.referral-visitor-summary li,
.referral-journey-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.referral-download-breakdown strong {
  color: var(--text);
}

.referral-player-list li,
.referral-visitor-summary li,
.referral-journey-list li {
  align-items: flex-start;
}

.referral-player-list span,
.referral-player-list small,
.referral-visitor-summary span,
.referral-visitor-summary small,
.referral-journey-list span,
.referral-journey-list small {
  display: block;
}

.referral-player-list small,
.referral-visitor-summary small,
.referral-journey-list small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: right;
}

.referral-visitor-summary,
.referral-journey-list {
  min-height: 160px;
}

.guide-list {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.guide-command-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.guide-command-grid div,
.mini-panel {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(156, 216, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.026);
}

.guide-command-grid strong,
.mini-panel h3 {
  color: var(--gold-soft);
}

.guide-command-grid span,
.mini-panel p {
  color: var(--muted);
}

.section-copy.center,
.center {
  text-align: center;
}

.section-copy h2 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  line-height: 1.12;
}

.section-copy p {
  max-width: 780px;
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.narrow {
  max-width: 760px;
  margin-inline: auto;
}

.single-panel {
  padding: 56px 0 24px;
}

.stack {
  display: grid;
  gap: 20px;
}

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

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

.home-action-card h3 {
  margin: 0;
  font-family: "Cinzel", serif;
}

.home-action-card a {
  margin-top: auto;
  color: var(--blue-soft);
  font-weight: 800;
}

.home-action-card {
  min-height: 188px;
  background:
    linear-gradient(180deg, rgba(12, 15, 25, 0.82), rgba(6, 8, 14, 0.86)),
    radial-gradient(circle at top left, rgba(212, 173, 87, 0.08), transparent 42%);
  backdrop-filter: blur(8px);
}

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

.card-index {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(212, 173, 87, 0.1);
  border: 1px solid rgba(212, 173, 87, 0.24);
  font-weight: 800;
}

.card a,
.catalog-card span {
  color: var(--blue-soft);
  font-weight: 700;
}

.catalog-card strong {
  display: block;
  margin-top: 8px;
  color: var(--gold-soft);
  font-size: 1.2rem;
}

.catalog-card--cart {
  display: grid;
  gap: 16px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.catalog-card--cart:hover {
  transform: translateY(-2px);
  border-color: rgba(156, 216, 255, 0.22);
  box-shadow: 0 18px 52px rgba(79, 124, 255, 0.1);
}

.catalog-card--cart.is-in-cart {
  border-color: rgba(156, 216, 255, 0.34);
  box-shadow: 0 18px 52px rgba(79, 124, 255, 0.16);
}

.catalog-card__top,
.catalog-section__header,
.cart-item,
.cart-summary {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.catalog-card__top strong {
  margin-top: 0;
}

.catalog-card__tag,
.catalog-section__note,
.cart-item span,
.cart-summary span,
.cart-panel__intro {
  color: var(--muted);
  line-height: 1.7;
}

.catalog-card__tag {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.86rem;
}

.catalog-card__actions {
  display: grid;
  gap: 10px;
}

.catalog-section {
  display: grid;
  gap: 18px;
}

.catalog-section__header {
  align-items: end;
}

.catalog-section__header h3 {
  margin: 0;
  font-family: "Cinzel", serif;
}

.catalog-section__note {
  max-width: 320px;
  margin: 0;
  text-align: right;
}

.cart-catalog {
  gap: 28px;
}

.empty-cart {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.empty-cart p {
  margin: 0;
}

.cart-list {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.cart-item {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.cart-item strong {
  display: block;
  margin-bottom: 4px;
}

.cart-item__actions {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.cart-item__actions form {
  margin: 0;
}

.cart-summary {
  margin-bottom: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(212, 173, 87, 0.2);
  background: linear-gradient(180deg, rgba(30, 24, 12, 0.18), rgba(13, 14, 24, 0.4));
}

.cart-summary div {
  display: grid;
  gap: 6px;
}

.cart-summary strong {
  color: var(--gold-soft);
  font-size: 1.1rem;
}

.feature-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.hero-copy .lede,
.portal-preview .feature-list {
  margin-bottom: 0;
}

.hero-copy .hero-actions {
  margin-top: auto;
  padding-top: 28px;
  justify-content: center;
}

.portal-preview .button {
  align-self: center;
  margin-top: auto;
  min-width: 190px;
}

.perk-section {
  margin-top: 26px;
}

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

.stack-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.stack-form span {
  color: var(--gold-soft);
  font-size: 0.92rem;
}

.custom-select {
  position: relative;
}

.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(124, 156, 255, 0.62);
  background: linear-gradient(180deg, rgba(37, 48, 86, 0.98), rgba(18, 24, 46, 0.98));
  color: #f8f8ff;
  font-weight: 700;
  text-align: left;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 0 0 1px rgba(79, 124, 255, 0.08);
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.custom-select__trigger:hover {
  transform: translateY(-1px);
  border-color: rgba(156, 216, 255, 0.72);
}

.custom-select__trigger:focus-visible {
  outline: none;
  border-color: rgba(156, 216, 255, 0.75);
  box-shadow: 0 0 0 4px rgba(79, 124, 255, 0.12);
}

.custom-select__chevron {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-right: 2px solid #dbe5ff;
  border-bottom: 2px solid #dbe5ff;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.18s ease;
}

.custom-select.is-open .custom-select__chevron {
  transform: rotate(-135deg) translateY(-1px);
}

.custom-select.is-open .custom-select__trigger,
.custom-select.is-invalid .custom-select__trigger {
  border-color: rgba(156, 216, 255, 0.78);
  box-shadow: 0 0 0 4px rgba(79, 124, 255, 0.12);
}

.custom-select.is-invalid .custom-select__trigger {
  border-color: rgba(255, 141, 144, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 141, 144, 0.12);
}

.custom-select__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 25;
  display: grid;
  gap: 8px;
  max-height: 340px;
  padding: 10px;
  overflow-y: auto;
  border-radius: 18px;
  border: 1px solid rgba(124, 156, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(25, 33, 62, 0.98), rgba(11, 16, 31, 0.98)),
    radial-gradient(circle at top, rgba(79, 124, 255, 0.14), transparent 52%);
  box-shadow: 0 20px 50px rgba(3, 5, 14, 0.55);
}

.custom-select__menu[hidden] {
  display: none;
}

.custom-select__menu::-webkit-scrollbar {
  width: 10px;
}

.custom-select__menu::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.03);
  border-radius: 999px;
}

.custom-select__menu::-webkit-scrollbar-thumb {
  background: rgba(79, 124, 255, 0.52);
  border-radius: 999px;
}

.custom-select__option {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  color: #f7f9ff;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.custom-select__option:hover,
.custom-select__option:focus-visible,
.custom-select__option.is-active {
  outline: none;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(96, 143, 255, 0.95), rgba(56, 83, 183, 0.98));
  border-color: rgba(170, 213, 255, 0.65);
  transform: translateY(-1px);
}

.custom-select__option.is-selected {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(63, 94, 205, 0.92), rgba(26, 37, 83, 0.98));
  border-color: rgba(156, 216, 255, 0.36);
}

.custom-select__option.is-placeholder {
  color: #dfe7ff;
}

.product-picker {
  display: grid;
  gap: 12px;
}

.product-choice {
  display: block;
}

.product-choice__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.product-choice__card {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.product-choice__card strong {
  color: var(--text);
  font-size: 1rem;
}

.product-choice__card small {
  color: var(--muted);
  line-height: 1.6;
}

.product-choice__card em {
  color: var(--blue-soft);
  font-style: normal;
  font-weight: 800;
}

.product-choice:hover .product-choice__card {
  transform: translateY(-1px);
  border-color: rgba(156, 216, 255, 0.3);
}

.product-choice__input:focus + .product-choice__card,
.product-choice__input:checked + .product-choice__card {
  border-color: rgba(156, 216, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(79, 124, 255, 0.12);
  background: linear-gradient(180deg, rgba(28, 33, 59, 0.96), rgba(13, 16, 30, 0.96));
}

input,
select,
textarea {
  min-height: 54px;
  width: 100%;
  padding: 0 16px;
  color: var(--text);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text);
  caret-color: var(--text);
  box-shadow: 0 0 0 1000px #101521 inset;
  border-color: rgba(156, 216, 255, 0.32);
  transition: background-color 9999s ease-out;
}

textarea {
  min-height: 156px;
  padding: 16px;
  line-height: 1.55;
  resize: vertical;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 52px;
  color: #f8f8ff;
  font-weight: 700;
  color-scheme: dark;
  background:
    linear-gradient(180deg, rgba(37, 48, 86, 0.98), rgba(18, 24, 46, 0.98));
  border-color: rgba(124, 156, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 0 0 1px rgba(79, 124, 255, 0.08);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(156, 216, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(79, 124, 255, 0.12);
}

select option {
  color: #f8fbff !important;
  background: #18264a !important;
  font-weight: 700;
}

select option:checked,
select option:hover,
select option:focus {
  color: #ffffff !important;
  background: #4f7cff !important;
}

select option[value=""] {
  color: #dbe5ff !important;
  background: #1d2b52 !important;
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.checkbox-row input {
  width: 20px;
  min-height: 20px;
  margin-top: 4px;
}

.admin-product-editor {
  margin: 0;
  min-inline-size: 0;
}

.admin-product-editor legend {
  float: left;
  width: 100%;
  margin-bottom: 8px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
}

.admin-product-editor legend + * {
  clear: both;
}

.admin-save-panel {
  display: flex;
  justify-content: flex-end;
}

.admin-users-shell {
  padding-top: clamp(20px, 3vw, 34px);
}

.admin-users-workspace {
  display: grid;
  gap: 12px;
}

.admin-users-compact-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(215, 179, 88, 0.16);
  border-radius: 16px;
  background: rgba(8, 10, 18, 0.86);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.admin-users-compact-header h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.1;
}

.admin-users-compact-header .eyebrow,
.admin-user-summary .eyebrow {
  margin-bottom: 4px;
}

.admin-users-compact-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.admin-users-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
}

.admin-users-search input,
.admin-user-details input,
.admin-user-details select {
  min-height: 44px;
  padding: 0 14px;
}

.admin-users-list {
  display: grid;
  gap: 6px;
}

.admin-user-card {
  display: block;
}

.admin-user-details {
  padding: 0;
  overflow: visible;
  border-radius: 12px;
}

.admin-users-table-head,
.admin-user-row {
  display: grid;
  grid-template-columns: 70px minmax(220px, 1.7fr) minmax(120px, 0.9fr) 94px 86px 100px 148px 68px;
  gap: 10px;
  align-items: center;
}

.admin-users-table-head {
  padding: 0 14px 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-user-row {
  min-height: 58px;
  padding: 10px 14px;
  cursor: pointer;
  list-style: none;
}

.admin-user-row::marker,
.admin-user-details summary::marker,
.admin-user-row::-webkit-details-marker {
  display: none;
  content: "";
}

.admin-user-row > span,
.admin-user-row time {
  min-width: 0;
  color: var(--text);
  font-size: 0.92rem;
}

.admin-user-row:hover {
  background: rgba(156, 216, 255, 0.045);
}

.admin-user-id {
  color: var(--gold-light) !important;
  font-size: 0.78rem !important;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-user-account strong {
  display: block;
  overflow-wrap: anywhere;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.2;
}

.admin-user-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  width: fit-content;
  max-width: 100%;
  padding: 0 9px;
  border: 1px solid rgba(156, 216, 255, 0.18);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.76rem !important;
  font-weight: 800;
}

.admin-user-badge.is-good {
  border-color: rgba(125, 231, 180, 0.2);
  color: #aaf2cc;
}

.admin-user-badge.is-warning {
  border-color: rgba(246, 213, 139, 0.24);
  color: var(--gold-light);
}

.admin-user-badge.is-danger {
  border-color: rgba(255, 141, 144, 0.28);
  color: #ffb6b8;
}

.admin-user-row-action {
  justify-self: end;
  min-width: 54px !important;
  padding: 6px 10px;
  border: 1px solid rgba(156, 216, 255, 0.2);
  border-radius: 999px;
  color: var(--blue-soft) !important;
  text-align: center;
  font-size: 0.76rem !important;
  font-weight: 900;
}

.admin-user-details[open] .admin-user-row-action {
  color: var(--gold-light) !important;
}

.admin-user-body {
  display: grid;
  gap: 12px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(156, 216, 255, 0.12);
}

.admin-user-fields {
  gap: 10px;
}

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

.admin-moderation-grid .checkbox-row {
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid rgba(156, 216, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.admin-moderation-grid input:disabled + span {
  opacity: 0.6;
}

.admin-user-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}

.admin-user-primary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-delete-menu {
  position: relative;
  justify-self: end;
}

.admin-delete-menu summary {
  list-style: none;
  cursor: pointer;
}

.admin-delete-menu summary::-webkit-details-marker {
  display: none;
}

.admin-delete-confirm {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 5;
  display: grid;
  gap: 10px;
  width: min(260px, calc(100vw - 48px));
  padding: 14px;
  border: 1px solid rgba(255, 141, 144, 0.24);
  border-radius: 16px;
  background: rgba(8, 10, 18, 0.98);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.44);
}

.admin-delete-confirm span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.member-display {
  color: var(--blue-soft);
  font-weight: 800;
  text-shadow: 0 0 5px rgba(156, 216, 255, 0.18);
}

.member-display--owner {
  color: #a06cff;
  text-shadow:
    0 0 5px rgba(160, 108, 255, 0.55),
    1px 1px 0 rgba(64, 42, 132, 0.9);
}

.member-display--admin {
  color: #ff5f6d;
  text-shadow: 0 0 8px rgba(255, 95, 109, 0.55);
}

.member-display--mod {
  color: #65d47e;
  text-shadow: 0 0 8px rgba(101, 212, 126, 0.48);
}

.member-display--silver {
  color: #d7dde8;
  text-shadow: 0 0 8px rgba(215, 221, 232, 0.42);
}

.member-display--gold {
  color: #f0c75e;
  text-shadow: 0 0 8px rgba(240, 199, 94, 0.55);
}

.member-display--diamond {
  color: #77d6ff;
  text-shadow:
    0 0 5px rgba(119, 214, 255, 0.65),
    0 0 10px rgba(79, 124, 255, 0.34);
}

.policy-note {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(212, 173, 87, 0.28);
  background: linear-gradient(180deg, rgba(52, 38, 15, 0.24), rgba(22, 16, 10, 0.32));
}

.policy-note strong {
  color: var(--gold-soft);
}

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

.command-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(156, 216, 255, 0.34);
  background: linear-gradient(135deg, rgba(42, 61, 121, 0.96), rgba(19, 27, 53, 0.98));
  color: #f7faff;
  font-family: "JetBrains Mono", "Consolas", monospace;
  font-size: 0.92em;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 10px 24px rgba(79, 124, 255, 0.16);
  white-space: nowrap;
}

.command-chip--hero {
  padding: 7px 14px;
  font-size: 1rem;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 14px 30px rgba(79, 124, 255, 0.22);
}

.command-callout {
  display: grid;
  gap: 10px;
  width: fit-content;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(156, 216, 255, 0.18);
  background: linear-gradient(180deg, rgba(17, 24, 46, 0.86), rgba(10, 14, 28, 0.94));
}

.command-callout__label {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
}

.command-callout__body {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--text);
  font-weight: 700;
}

.command-text {
  color: var(--blue-soft);
  font-family: "JetBrains Mono", "Consolas", monospace;
  font-size: 0.95em;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.flash-stack {
  padding-top: 18px;
}

.flash {
  margin-bottom: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}

.flash ul {
  margin: 12px 0 0;
}

.flash-success {
  color: #dcffee;
  background: rgba(96, 212, 151, 0.08);
  border-color: rgba(96, 212, 151, 0.24);
}

.flash-error {
  color: #ffe3e4;
  background: rgba(255, 141, 144, 0.08);
  border-color: rgba(255, 141, 144, 0.26);
}

.history-list {
  display: grid;
  gap: 14px;
}

.history-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.history-item time {
  white-space: nowrap;
}

.auth-shell {
  padding: 52px 0 28px;
}

.auth-form-card,
.provider-card {
  align-self: start;
}

.vote-flow {
  display: grid;
  gap: 20px;
}

.vote-identity {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 18px;
  align-items: end;
  padding: 18px;
  border: 1px solid rgba(156, 216, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(18, 23, 39, 0.72), rgba(8, 11, 20, 0.76)),
    radial-gradient(circle at top left, rgba(79, 124, 255, 0.12), transparent 42%);
}

.vote-identity label {
  display: grid;
  gap: 8px;
}

.vote-identity span {
  color: var(--gold-soft);
  font-weight: 800;
}

.vote-identity p {
  margin: 0;
}

.vote-site-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.vote-site-choice {
  display: block;
}

.vote-site-option {
  min-height: 118px;
  display: grid;
  gap: 10px;
  align-content: start;
  width: 100%;
  padding: 16px 18px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(13, 15, 26, 0.92), rgba(8, 10, 18, 0.94)),
    radial-gradient(circle at top left, rgba(212, 173, 87, 0.09), transparent 44%);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.vote-site-choice:hover .vote-site-option,
.vote-site-option:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(156, 216, 255, 0.34);
  box-shadow: 0 18px 52px rgba(79, 124, 255, 0.13);
  outline: none;
}

.vote-site-choice.is-complete .vote-site-option,
.vote-site-option:disabled {
  cursor: default;
  transform: none;
  background:
    linear-gradient(180deg, rgba(13, 16, 25, 0.7), rgba(7, 9, 16, 0.72)),
    radial-gradient(circle at top left, rgba(156, 216, 255, 0.07), transparent 44%);
  border-color: rgba(156, 216, 255, 0.2);
  opacity: 0.66;
}

.vote-site-header h3 {
  min-width: 0;
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 1.04rem;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vote-site-option p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.vote-provider-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
}

.vote-provider-status span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
}

.vote-provider-status strong {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.2;
  white-space: nowrap;
}

.vote-site-header {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex-wrap: nowrap;
}

.vote-site-choice--waiting .vote-provider-status strong {
  color: var(--gold-soft);
}

.vote-site-choice--confirmed .vote-provider-status {
  border-color: transparent;
  background: transparent;
}

.vote-site-choice--confirmed .vote-provider-status strong {
  color: #8ff0b4;
}

.vote-site-choice--expired .vote-provider-status {
  border-color: transparent;
  background: transparent;
}

.vote-site-choice--expired .vote-provider-status strong {
  color: #ffb1b1;
}

.vote-site-choice--locked .vote-site-option {
  cursor: default;
  transform: none;
  border-color: rgba(212, 173, 87, 0.28);
  background:
    linear-gradient(180deg, rgba(14, 15, 22, 0.78), rgba(8, 10, 16, 0.82)),
    radial-gradient(circle at top left, rgba(212, 173, 87, 0.12), transparent 46%);
  box-shadow: none;
  opacity: 0.82;
}

.vote-site-choice--locked:hover .vote-site-option,
.vote-site-choice--locked .vote-site-option:focus-visible {
  transform: none;
  border-color: rgba(212, 173, 87, 0.28);
  box-shadow: none;
}

.vote-site-choice--locked .vote-provider-status strong {
  color: var(--gold-soft);
}

.vote-site-choice--locked .vote-site-option__action {
  color: var(--muted);
}

.vote-site-option__meta {
  flex: 0 0 auto;
  width: fit-content;
  padding: 5px 9px;
  border-radius: 8px;
  color: var(--gold-soft);
  background: rgba(212, 173, 87, 0.1);
  border: 1px solid rgba(212, 173, 87, 0.2);
  font-size: 0.78rem;
  font-weight: 800;
}

.vote-site-option__action {
  align-self: start;
  margin-top: 0;
  color: var(--blue-soft);
  font-weight: 900;
}

.vote-site-choice.is-complete .vote-site-option__action {
  color: var(--gold-soft);
}

.vote-submit-panel {
  display: grid;
  gap: 22px;
}

.vote-reward-picker {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(156, 216, 255, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(13, 15, 26, 0.9), rgba(8, 10, 18, 0.93)),
    radial-gradient(circle at top right, rgba(212, 173, 87, 0.11), transparent 42%);
}

.vote-reward-picker h3,
.vote-reward-picker p {
  margin: 0;
}

.vote-reward-picker h3 {
  font-family: "Cinzel", serif;
}

.vote-reward-picker p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.vote-reward-alert {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 8px 11px;
  border: 1px solid rgba(212, 173, 87, 0.28);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(212, 173, 87, 0.09);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.25;
}

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

.vote-reward-card {
  position: relative;
  display: grid;
  min-height: 132px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.vote-reward-card:hover,
.vote-reward-card:focus-within {
  transform: translateY(-1px);
  border-color: rgba(156, 216, 255, 0.34);
  box-shadow: 0 16px 40px rgba(79, 124, 255, 0.1);
}

.vote-reward-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.vote-reward-card span {
  display: grid;
  gap: 8px;
  align-content: start;
}

.vote-reward-card strong {
  color: var(--text);
  font-family: "Cinzel", serif;
}

.vote-reward-card small {
  color: var(--muted);
  line-height: 1.5;
}

.vote-reward-card__select {
  align-self: end;
  margin-top: 4px;
  color: var(--blue-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.vote-reward-card:has(input:checked) {
  border-color: rgba(212, 173, 87, 0.58);
  background:
    linear-gradient(180deg, rgba(30, 27, 20, 0.84), rgba(11, 14, 24, 0.92)),
    radial-gradient(circle at top left, rgba(212, 173, 87, 0.18), transparent 52%);
  box-shadow: 0 18px 52px rgba(212, 173, 87, 0.11);
}

.vote-reward-card:has(input:checked) .vote-reward-card__select {
  color: var(--gold-soft);
}

.vote-reward-card:has(input:checked)::after {
  content: "Selected";
  justify-self: start;
  align-self: end;
  margin-top: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(212, 173, 87, 0.11);
  border: 1px solid rgba(212, 173, 87, 0.24);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vote-submit-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding-top: 4px;
}

.vote-submit-row p {
  margin: 0;
}

.vote-submit-button {
  min-width: 220px;
}

.form-note {
  margin-top: 18px;
  color: var(--muted);
}

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

.footer-panel {
  display: grid;
  gap: 18px;
}

.footer-main,
.footer-links {
  display: grid;
  gap: 22px;
}

.footer-main {
  grid-template-columns: 1fr auto;
  align-items: start;
  padding-top: 8px;
}

.footer-brand {
  justify-self: end;
}

.footer-brand img {
  width: min(220px, 28vw);
}

.footer-links {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.footer-links h3 {
  margin: 0 0 12px;
  font-family: "Cinzel", serif;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

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

.footer-community {
  padding: 10px 12px;
  border: 1px solid rgba(156, 216, 255, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(11, 14, 22, 0.84), rgba(5, 8, 14, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 18px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

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

.footer-community__pill {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 52px;
  padding: 9px 16px;
  border-left: 1px solid rgba(215, 179, 88, 0.14);
  color: var(--muted);
  line-height: 1.1;
}

.footer-community__pill:first-child {
  border-left: 0;
}

.footer-community__pill > span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-community__pill strong {
  color: var(--blue-soft);
  font-size: 0.96rem;
  font-weight: 800;
}

.footer-shell {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  padding-top: 8px;
}

.footer-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(151, 98, 255, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(7, 8, 16, 0.76), rgba(4, 5, 11, 0.78)),
    radial-gradient(circle at 50% 0%, rgba(116, 74, 255, 0.06), transparent 58%);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.footer-stat-strip span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 10px 16px;
  border-left: 1px solid rgba(151, 98, 255, 0.13);
}

.footer-stat-strip span:first-child {
  border-left: 0;
}

.footer-stat-strip small {
  color: #d8cef1;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-stat-strip strong {
  color: #9bdcff;
  font-size: 0.95rem;
  font-weight: 900;
  text-align: right;
  text-shadow: 0 0 12px rgba(55, 176, 255, 0.45);
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: clamp(18px, 3vw, 36px);
  align-items: start;
  padding: clamp(14px, 2vw, 24px) 0 4px;
}

.footer-brand-mark {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 2px;
}

.footer-brand-mark img {
  width: min(170px, 22vw);
  filter: drop-shadow(0 0 18px rgba(103, 69, 255, 0.22));
}

.footer-link-group {
  display: grid;
  gap: 7px;
}

.footer-link-group h3 {
  margin: 0 0 3px;
  color: #f0e8ff;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1rem;
  line-height: 1.1;
}

.footer-link-group a {
  color: #cec2eb;
  font-size: 0.93rem;
  line-height: 1.25;
}

.footer-link-group a:hover,
.footer-link-group a:focus-visible {
  color: #9bdcff;
}

.footer-shell .footer-legal {
  margin: 0;
  color: #d7cdf0;
  font-size: 0.92rem;
}

.error-page {
  min-height: 100vh;
}

.error-page__shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.error-page__panel {
  width: min(640px, 100%);
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.error-page__panel img {
  width: min(420px, 86vw);
}

@media (max-width: 980px) {
  .topbar,
  .hero-home .hero-grid,
  .home-why-content,
  .download-layout,
  .showcase-grid,
  .portal-grid,
  .auth-grid,
  .card-grid,
  .home-action-grid,
  .catalog-grid,
  .provider-grid,
  .vote-identity,
  .vote-site-grid,
  .vote-reward-grid,
  .vote-submit-row,
  .footer-main,
  .footer-links,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .topbar {
    justify-items: center;
    gap: 16px;
    padding: 16px;
  }

  .brand img {
    width: min(290px, 72vw);
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 10px 16px;
  }

  .footer-brand {
    justify-self: center;
  }

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

  .footer-stat-strip span:nth-child(odd) {
    border-left: 0;
  }

  .footer-stat-strip span:nth-child(n+3) {
    border-top: 1px solid rgba(151, 98, 255, 0.13);
  }

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

  .footer-brand-mark {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .footer-brand-mark img {
    width: min(170px, 44vw);
  }

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

  .admin-moderation-grid {
    grid-template-columns: 1fr;
  }

  .referral-link-card__quick,
  .referral-evidence-grid {
    grid-template-columns: 1fr;
  }

  .referral-journey-list {
    grid-column: auto;
  }

  .history-item {
    align-items: start;
    flex-direction: column;
  }

  .catalog-card__top,
  .catalog-section__header,
  .cart-item,
  .cart-summary {
    flex-direction: column;
  }

  .catalog-section__note {
    max-width: none;
    text-align: left;
  }

  .cart-item__actions {
    width: 100%;
    justify-items: stretch;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 10px 0;
  }

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

  .topbar-actions,
  .site-nav,
  .hero-actions,
  .mini-links,
  .action-list {
    width: 100%;
  }

  .button,
  .ghost-link {
    width: 100%;
    justify-content: center;
  }

  .panel,
  .card,
  .provider-card,
  .catalog-card,
  .mini-panel {
    padding: 22px;
  }

  .admin-user-actions,
  .admin-delete-menu {
    width: 100%;
  }

  .admin-users-compact-header {
    display: grid;
    align-items: start;
  }

  .admin-users-table-head {
    display: none;
  }

  .admin-users-search,
  .admin-user-row {
    grid-template-columns: 1fr;
  }

  .admin-user-details {
    padding: 0;
  }

  .admin-user-row-action {
    justify-self: stretch;
  }

  .admin-moderation-grid {
    grid-template-columns: 1fr;
  }

  .admin-user-primary-actions,
  .admin-user-primary-actions form {
    width: 100%;
  }

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

  .referral-url-row {
    align-items: flex-start;
  }

  .referral-data-table th,
  .referral-data-table td {
    display: block;
    width: 100%;
  }

  .referral-data-table th {
    padding-bottom: 3px;
  }

  .referral-data-table td {
    padding-top: 0;
  }

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

  .member-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
  }

  .member-row__cell {
    grid-template-columns: minmax(112px, auto) minmax(0, 1fr);
  }

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

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

  .site-nav-more__menu {
    position: static;
    width: 100%;
    margin-top: 4px;
    box-shadow: none;
    transform: none;
  }

  .admin-delete-confirm {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .footer-community {
    padding: 14px;
  }

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

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 20px), var(--width));
  }

  .topbar {
    padding: 12px;
    border-radius: 18px;
  }

  .brand img {
    width: min(240px, 76vw);
  }

  .site-nav {
    gap: 6px 12px;
    padding: 10px 12px;
  }

  .site-nav a,
  .site-nav-more__summary,
  .ghost-link,
  .mini-links a {
    font-size: 0.94rem;
  }

  .panel,
  .card,
  .provider-card,
  .catalog-card,
  .mini-panel {
    padding: 18px;
  }
}

/* Smooth site redesign */
.topbar {
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  padding: 10px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(9, 11, 19, 0.86), rgba(5, 7, 13, 0.82));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.brand img {
  width: clamp(150px, 11rem, 190px);
}

.site-nav {
  gap: 18px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.018);
}

.site-nav a,
.site-nav-more__summary,
.ghost-link,
.mini-links a {
  font-size: 0.94rem;
}

.topbar-actions {
  gap: 10px;
}

.button {
  min-height: 46px;
  border-radius: 10px;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

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

.panel,
.card,
.provider-card,
.catalog-card {
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(11, 13, 22, 0.9), rgba(6, 8, 15, 0.92)),
    radial-gradient(circle at top, rgba(156, 216, 255, 0.055), transparent 42%);
}

.panel,
.card,
.provider-card,
.catalog-card {
  padding: 22px;
}

.hero {
  padding: 48px 0 18px;
}

.hero-compact {
  padding: 34px 0 12px;
}

.section-band {
  padding: 22px 0;
}

.section-band-alt {
  background: transparent;
}

.page-portal .hero-compact .panel,
.page-download .hero-compact .panel {
  padding: 24px;
}

.hero-compact h1,
.single-panel h1,
.panel h2,
.card h3 {
  letter-spacing: 0;
}

.eyebrow {
  margin-bottom: 10px;
  letter-spacing: 0.18em;
}

.home-split-hero {
  padding-top: 54px;
}

.home-split-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  align-items: center;
}

.home-hero-copy h1 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 6rem;
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 0 20px rgba(245, 241, 255, 0.18), 0 14px 40px rgba(0, 0, 0, 0.7);
}

.home-hero-copy .lede {
  max-width: 680px;
  margin: 18px 0 0;
  font-size: 1.16rem;
}

.home-hero-copy .hero-actions {
  margin-top: 24px;
}

.home-live-card {
  display: grid;
  gap: 16px;
}

.home-live-card .server-status-widget {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 12px;
  justify-content: stretch;
  overflow: hidden;
}

.server-status-column {
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 70px;
  padding: 14px 16px;
  border-left: 1px solid rgba(156, 216, 255, 0.15);
  text-align: left;
  min-width: 0;
}

.server-status-column:first-child {
  border-left: 0;
}

.server-status-column > span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.server-status-column strong {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1;
  white-space: nowrap;
}

.server-status-column--state strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.server-status-column--state strong::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 999px;
  background: #8b92a8;
  box-shadow: 0 0 18px rgba(139, 146, 168, 0.42);
}

.server-status-widget.is-online .server-status-column--state strong::before {
  background: #37d67a;
  box-shadow: 0 0 18px rgba(55, 214, 122, 0.58);
}

.server-status-widget.is-offline .server-status-column--state strong::before {
  background: #ff4e6d;
  box-shadow: 0 0 18px rgba(255, 78, 109, 0.46);
}

.server-status-widget--hero .server-status-dot {
  display: none;
}

.home-live-card__meta,
.download-help-row,
.home-quick-strip__grid {
  display: grid;
  gap: 10px;
}

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

.home-live-card__meta span,
.download-help-row span,
.home-quick-strip a,
.download-support-strip a,
.vote-steps span {
  border: 1px solid rgba(156, 216, 255, 0.13);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 12px;
}

.home-live-card__meta span {
  padding: 10px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.home-quick-strip {
  padding: 6px 0 18px;
}

.home-quick-strip__grid,
.download-support-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.home-quick-strip a,
.download-support-strip a {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.home-quick-strip a:hover,
.download-support-strip a:hover {
  transform: translateY(-1px);
  border-color: rgba(156, 216, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.home-quick-strip strong,
.download-support-strip strong {
  font-family: "Cinzel", serif;
  color: var(--text);
}

.home-quick-strip span,
.download-support-strip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.home-section-panel {
  border-radius: 16px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
}

.home-why-card,
.home-discord-card {
  border-radius: 12px;
}

.play-download-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: center;
}

.play-download-copy h1 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 4.2rem;
  line-height: 1;
}

.play-download-copy .lede {
  margin-top: 16px;
}

.play-download-console {
  display: grid;
  gap: 16px;
}

.download-platform-tabs {
  display: grid;
  grid-template-columns: minmax(150px, 1.35fr) repeat(4, minmax(92px, 1fr));
  gap: 8px;
}

.download-platform-tab {
  display: grid;
  gap: 5px;
  min-height: 76px;
  padding: 12px 11px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  border: 1px solid rgba(156, 216, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.026);
  transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.download-platform-tab:hover,
.download-platform-tab:focus-visible,
.download-platform-tab.is-active {
  border-color: rgba(212, 173, 87, 0.48);
  background: rgba(212, 173, 87, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.download-platform-tab strong {
  font-size: 0.88rem;
  line-height: 1.18;
}

.download-platform-tab span {
  color: var(--muted);
  font-size: 0.78rem;
}

.download-selected-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(156, 216, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.download-selected-card h2,
.download-selected-card p {
  margin: 0;
}

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

.download-help-row span {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

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

.guides-shell {
  align-items: stretch;
}

.guides-copy {
  align-self: center;
}

.guides-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.guides-console {
  align-content: center;
}

.guide-topic-grid,
.guides-content,
.guides-help-grid,
.guides-perk-grid {
  display: grid;
  gap: 14px;
}

.guide-topic-grid {
  grid-template-columns: 1fr;
}

.guide-topic-grid a,
.guides-perk-grid div,
.guide-fix-list div {
  border: 1px solid rgba(156, 216, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.guide-topic-grid a {
  display: grid;
  gap: 5px;
  padding: 14px;
  color: var(--text);
}

.guide-topic-grid a:hover,
.guide-topic-grid a:focus-visible {
  border-color: rgba(212, 173, 87, 0.5);
  background: rgba(212, 173, 87, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.guide-topic-grid span,
.guide-fix-list span,
.guides-perk-grid p {
  color: var(--muted);
}

.guides-content {
  gap: 24px;
}

.guides-help-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: stretch;
}

.guide-step-card {
  gap: 18px;
  border-radius: 16px;
}

.guide-step-list {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
  counter-reset: guide-step;
}

.guide-step-list li {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 66px;
  padding: 14px 14px 14px 54px;
  border: 1px solid rgba(156, 216, 255, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  line-height: 1.45;
  counter-increment: guide-step;
}

.guide-step-list li::before {
  content: counter(guide-step);
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #08101b;
  font-weight: 900;
  background: var(--gold-soft);
}

.guide-step-list strong,
.guide-fix-list strong,
.guides-perk-grid strong {
  color: var(--text);
}

.guide-fix-list {
  display: grid;
  gap: 10px;
}

.guide-fix-list div {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.guide-section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.guide-section-heading h2 {
  margin-bottom: 0;
}

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

.guides-perk-grid div {
  display: grid;
  gap: 8px;
  min-height: 178px;
  padding: 18px;
}

.guides-perk-grid span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guides-support-strip {
  margin-top: 0;
}

.vote-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.vote-steps span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: var(--muted);
}

.vote-steps strong {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: #08101b;
  background: var(--gold-soft);
}

.vote-identity,
.vote-reward-picker,
.vote-site-option {
  border-radius: 12px;
}

.vote-site-option {
  min-height: 168px;
  padding: 18px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.vote-reward-picker {
  padding: 18px;
}

.vote-reward-card {
  min-height: 112px;
  border-radius: 12px;
}

.donate-shop-shell {
  align-items: start;
}

.donate-shop-shell > .panel:last-child {
  position: sticky;
  top: 98px;
}

.catalog-section {
  gap: 14px;
  padding-top: 16px;
}

.catalog-grid {
  gap: 12px;
}

.catalog-card--cart,
.product-choice__card,
.history-item,
.admin-stat-card {
  border-radius: 12px;
}

.dashboard-hub-grid,
.admin-tool-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dashboard-hub-grid .card,
.admin-tool-grid .card {
  padding: 18px;
}

.admin-tool-grid .card p {
  margin-bottom: 8px;
}

.footer-community {
  border-radius: 12px;
}

.footer-main {
  align-items: center;
}

.footer-brand img {
  width: min(170px, 22vw);
}

.footer-links h3 {
  margin-bottom: 8px;
}

.footer-links a {
  margin-bottom: 6px;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .home-split-hero__grid,
  .play-download-shell,
  .home-quick-strip__grid,
  .download-support-strip,
  .guides-help-grid,
  .guides-perk-grid,
  .vote-steps,
  .dashboard-hub-grid,
  .admin-tool-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .donate-shop-shell > .panel:last-child {
    position: static;
  }
}

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

  .home-split-hero__grid,
  .play-download-shell,
  .home-quick-strip__grid,
  .download-support-strip,
  .download-help-row,
  .guides-help-grid,
  .guides-perk-grid,
  .vote-steps,
  .dashboard-hub-grid,
  .admin-tool-grid,
  .home-live-card__meta {
    grid-template-columns: 1fr;
  }

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

  .home-live-card .server-status-widget {
    grid-template-columns: 1fr;
  }

  .server-status-column {
    border-left: 0;
    border-top: 1px solid rgba(156, 216, 255, 0.15);
  }

  .server-status-column:first-child {
    border-top: 0;
  }

  .play-download-copy h1 {
    font-size: 3rem;
  }

  .download-platform-tabs {
    grid-template-columns: 1fr;
  }

  .guides-hero-actions .button {
    width: 100%;
  }
}

/* Donate slick shop */
.donate-claim-strip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  margin-top: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(156, 216, 255, 0.18);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(18, 23, 39, 0.82), rgba(8, 11, 20, 0.84));
}

.donate-claim-strip__label,
.donate-mini-claim span {
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.donate-claim-chip,
.donate-mini-claim .command-chip {
  cursor: pointer;
}

.donate-claim-chip.is-copied,
.donate-mini-claim .command-chip.is-copied {
  border-color: rgba(96, 212, 151, 0.54);
  box-shadow: 0 0 0 3px rgba(96, 212, 151, 0.12);
}

.donate-shop-shell {
  display: grid;
  gap: 16px;
}

.donate-username-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
}

.donate-username-modal.is-open {
  display: grid;
}

.donate-username-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 10, 0.72);
  backdrop-filter: blur(8px);
}

.donate-username-modal__panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  animation: modal-rise 0.18s ease-out;
}

.donate-username-modal__panel p {
  color: var(--muted);
  line-height: 1.65;
}

@keyframes modal-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.donate-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 8px;
  border: 1px solid rgba(156, 216, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.donate-tab {
  min-height: 46px;
  color: var(--muted);
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  font-weight: 900;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.donate-tab:hover,
.donate-tab:focus-visible,
.donate-tab.is-active {
  color: var(--text);
  border-color: rgba(212, 173, 87, 0.38);
  background: rgba(212, 173, 87, 0.08);
  outline: none;
}

.donate-tab:hover {
  transform: translateY(-1px);
}

.donate-tab:disabled,
.donate-tab.is-disabled {
  color: rgba(202, 191, 223, 0.48);
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.045);
  background: rgba(255, 255, 255, 0.014);
  transform: none;
}

.donate-account-strip {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(140px, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(156, 216, 255, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.donate-pricing-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(156, 216, 255, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.donate-account-strip span,
.donate-pricing-summary span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.donate-account-strip strong,
.donate-pricing-summary strong {
  color: var(--text);
}

.donate-account-strip .button {
  justify-self: end;
}

.donate-tab-panel[hidden] {
  display: none;
}

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

.donate-section-head h2,
.donate-section-head p {
  margin: 0;
}

.donate-section-head > p {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.55;
}

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

.donate-rank-card,
.donate-item-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(156, 216, 255, 0.15);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(13, 15, 26, 0.88), rgba(8, 10, 18, 0.92)),
    radial-gradient(circle at top left, rgba(212, 173, 87, 0.09), transparent 46%);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.donate-rank-card:hover,
.donate-item-card:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 173, 87, 0.34);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.donate-rank-card.is-in-cart,
.donate-item-card.is-in-cart {
  border-color: rgba(96, 212, 151, 0.34);
}

.donate-upgrade-note {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(96, 212, 151, 0.2);
  border-radius: 10px;
  background: rgba(96, 212, 151, 0.06);
}

.donate-upgrade-note.is-blocked {
  border-color: rgba(255, 78, 109, 0.22);
  background: rgba(255, 78, 109, 0.07);
}

.donate-upgrade-note span {
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.donate-upgrade-note strong {
  color: var(--text);
  font-size: 0.88rem;
}

.donate-rank-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.donate-rank-card__top span,
.donate-item-card__tag {
  width: fit-content;
  padding: 5px 9px;
  color: var(--gold-soft);
  border: 1px solid rgba(212, 173, 87, 0.22);
  border-radius: 999px;
  background: rgba(212, 173, 87, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.donate-rank-card__top strong,
.donate-item-card > strong {
  color: var(--gold-soft);
  font-size: 1.18rem;
}

.donate-rank-card h3,
.donate-item-card h3 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  line-height: 1.18;
}

.donate-rank-card p,
.donate-item-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.donate-checkout-card {
  max-width: 980px;
  margin: 0 auto;
}

.donate-checkout-card .cart-list,
.donate-checkout-card .stack-form {
  margin-top: 14px;
}

.donate-mini-claim {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(156, 216, 255, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.donate-pricing-summary {
  margin-bottom: 18px;
}

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

.hiscores-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(420px, 100%);
}

.hiscores-search input {
  min-height: 44px;
}

.hiscores-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(156, 216, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
}

.hiscores-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.hiscores-table th,
.hiscores-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(156, 216, 255, 0.1);
}

.hiscores-table th {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hiscores-table td {
  color: var(--text);
  font-weight: 700;
}

.hiscores-table tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 980px) {
  .donate-rank-grid,
  .donate-item-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .donate-tabs,
  .donate-rank-grid,
  .donate-item-grid,
  .donate-account-strip,
  .donate-pricing-summary {
    grid-template-columns: 1fr;
  }

  .donate-account-strip .button {
    justify-self: stretch;
  }

  .hiscores-search {
    align-items: stretch;
    flex-direction: column;
  }

  .donate-claim-strip,
  .donate-mini-claim {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Site simplification pass */
.section-band {
  padding: var(--section-gap) 0;
}

.hero-compact {
  padding: 28px 0 10px;
}

.home-why-panel {
  gap: 20px;
}

.home-why-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.home-why-list li,
.dashboard-account-meta div {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(156, 216, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.home-why-list strong,
.home-why-list span {
  display: block;
}

.home-why-list strong {
  margin-bottom: 6px;
  color: var(--gold-soft);
}

.home-why-list span {
  color: var(--muted);
  line-height: 1.55;
}

.home-why-actions {
  justify-content: center;
  margin-top: 2px;
}

.download-support-strip--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.download-support-strip--compact a {
  padding: 14px 16px;
  min-height: 0;
}

.vote-progress-panel .vote-flow,
.vote-progress-panel .vote-site-grid {
  margin-top: 16px;
}

.page-dashboard .hero-compact {
  padding: 22px 0 6px;
}

.page-dashboard .site-header {
  padding: 10px 0;
}

.page-dashboard .topbar {
  padding: 10px 18px;
  border-radius: 18px;
}

.page-dashboard .brand img {
  width: clamp(138px, 11vw, 176px);
}

.page-dashboard .site-nav {
  padding: 9px 18px;
}

.page-dashboard .button {
  min-height: 46px;
}

.page-dashboard .section-band {
  padding: 14px 0;
}

.dashboard-account-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 18px;
  align-items: start;
}

.dashboard-account-panel--compact {
  grid-template-columns: minmax(220px, 0.58fr) minmax(360px, 0.42fr);
  align-items: center;
  padding-block: 18px;
}

.hero-compact .dashboard-account-panel--compact h1 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1;
}

.dashboard-account-panel--compact .lede {
  max-width: 620px;
  margin-bottom: 0;
}

.dashboard-account-panel__copy {
  display: grid;
  gap: 10px;
}

.dashboard-account-form {
  align-self: stretch;
}

.dashboard-account-form--compact {
  align-self: end;
  gap: 10px;
}

.dashboard-account-form--inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.dashboard-account-form--inline label {
  min-width: 0;
}

.dashboard-account-form--compact input {
  min-height: 42px;
  padding: 10px 13px;
}

.dashboard-account-form--compact .button {
  width: auto;
  min-height: 42px;
  padding: 10px 18px;
}

.dashboard-account-meta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.dashboard-account-panel--compact .dashboard-account-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-status-strip {
  gap: 8px;
}

.dashboard-status-strip div {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
}

.dashboard-account-meta span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dashboard-account-meta strong {
  color: var(--text);
}

.dashboard-status-strip span {
  margin: 0;
  font-size: 0.66rem;
}

.dashboard-status-strip strong {
  overflow-wrap: anywhere;
  text-align: right;
}

.dashboard-claim-panel {
  display: grid;
  gap: 16px;
}

.dashboard-claim-panel--empty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
}

.dashboard-claim-panel--empty .eyebrow {
  margin: 0;
}

.dashboard-claim-panel .admin-stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-history-grid {
  align-items: start;
}

.dashboard-history-grid--receipts {
  grid-template-columns: minmax(0, 740px);
  justify-content: center;
}

.dashboard-receipts-panel {
  display: grid;
  gap: 12px;
}

.dashboard-receipts-panel--empty {
  justify-self: center;
  width: min(100%, 520px);
  padding: 16px 18px;
}

.dashboard-receipts-panel--empty .eyebrow {
  margin: 0;
}

.dashboard-empty-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.dashboard-receipts-panel h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.dashboard-receipts-panel .history-list {
  gap: 8px;
}

.dashboard-receipts-panel .history-item {
  padding: 12px 14px;
  border-radius: 12px;
}

.dashboard-receipts-panel .history-item strong {
  margin-bottom: 3px;
}

.dashboard-receipts-panel .history-item span,
.dashboard-receipts-panel .history-item time {
  font-size: 0.92rem;
  line-height: 1.45;
}

.donate-support-section--compact {
  padding-top: 8px;
}

.donate-support-panel {
  display: grid;
  gap: 14px;
}

.donate-support-panel h2 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  line-height: 1.08;
}

.donate-support-panel .lede {
  max-width: 760px;
}

@media (max-width: 980px) {
  .home-why-list,
  .dashboard-account-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .dashboard-account-form--inline {
    grid-template-columns: 1fr auto;
  }

  .dashboard-claim-panel .admin-stats-grid,
  .dashboard-history-grid--receipts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .home-why-list,
  .download-support-strip--compact,
  .dashboard-account-meta {
    grid-template-columns: 1fr;
  }

  .dashboard-account-form--inline {
    grid-template-columns: 1fr;
  }

  .dashboard-account-form--compact .button {
    width: 100%;
  }

  .dashboard-claim-panel--empty {
    align-items: flex-start;
    flex-direction: column;
  }
}

.site-header .brand img {
  width: clamp(230px, 20vw, 330px);
  max-height: 92px;
  object-fit: contain;
}

@media (max-width: 520px) {
  .site-header .brand img {
    width: min(260px, 78vw);
    max-height: 82px;
  }
}

/* Home landing redesign */
.page-home .site-backdrop {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(3, 4, 8, 0.54) 58%, rgba(0, 0, 0, 0.9) 100%),
    url("home-wilderness-bg-wide.webp") center top / cover no-repeat;
}

.page-home .site-backdrop::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 25%, transparent 75%, rgba(0, 0, 0, 0.28)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.44));
}

.site-header--home {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 22px 0 0;
  background: transparent;
}

.site-header--modern {
  isolation: isolate;
}

.topbar--home {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  gap: clamp(22px, 3vw, 46px);
  align-items: center;
  padding: 66px clamp(18px, 3vw, 44px) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.brand--home {
  justify-self: center;
}

.site-header .brand--home img {
  width: clamp(280px, 25vw, 410px);
  max-height: 126px;
}

.site-home-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 32px);
  min-width: 0;
}

.site-home-nav--left {
  justify-self: end;
  justify-content: flex-end;
}

.site-home-nav--right {
  justify-self: start;
  justify-content: flex-start;
}

.site-home-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(150px, 12vw, 194px);
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(139, 91, 230, 0.7);
  border-radius: 8px;
  background: rgba(10, 6, 29, 0.74);
  color: #e6d8ff;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition: border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.site-home-nav a:hover,
.site-home-nav a:focus-visible,
.site-home-nav a.is-active {
  border-color: rgba(129, 80, 255, 0.95);
  background: rgba(31, 8, 78, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(74, 179, 255, 0.25),
    0 0 20px rgba(109, 63, 255, 0.18);
}

.topbar-actions--home {
  position: absolute;
  top: 0;
  right: clamp(18px, 3vw, 50px);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.topbar-actions--home a,
.site-home-more__summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 24px;
  padding: 0 14px;
  border: 1px solid rgba(148, 98, 255, 0.74);
  border-radius: 999px;
  background: rgba(9, 5, 27, 0.62);
  color: #efe7ff;
  font-family: Georgia, serif;
  font-size: 0.88rem;
  line-height: 1;
}

.site-home-more {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-home-more__summary {
  gap: 7px;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.site-home-more__summary::-webkit-details-marker {
  display: none;
}

.site-home-more__summary::after {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  opacity: 0.82;
}

.site-home-more[open] .site-home-more__summary::after {
  transform: translateY(2px) rotate(225deg);
}

.site-home-more__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  width: 300px;
  padding: 10px;
  border: 1px solid rgba(151, 98, 255, 0.34);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(9, 8, 20, 0.94), rgba(4, 5, 12, 0.94)),
    radial-gradient(circle at 100% 0%, rgba(55, 157, 255, 0.14), transparent 45%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-home-more__menu a {
  min-width: 0;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(151, 98, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  color: #ddd2ff;
}

.site-home-more__menu a:hover,
.site-home-more__menu a:focus-visible,
.site-home-more__menu a.is-active {
  border-color: rgba(151, 98, 255, 0.42);
  background: rgba(72, 37, 144, 0.34);
  color: #fff;
}

.home-landing-hero {
  padding: 244px 0 46px;
}

.home-landing-hero__inner {
  display: block;
  text-align: center;
}

.home-landing-copy {
  width: min(100%, 940px);
  margin: 0 auto;
}

.home-landing-title {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(4.6rem, 6.4vw, 6.6rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #b99cff;
  text-shadow:
    0 0 8px rgba(140, 76, 255, 0.95),
    0 0 18px rgba(106, 54, 255, 0.62),
    0 8px 0 rgba(8, 2, 28, 0.78),
    0 18px 36px rgba(0, 0, 0, 0.86);
}

.home-landing-title span {
  display: block;
  background:
    linear-gradient(180deg, #fff 0%, #ded0ff 13%, #8e5df0 33%, #2a0b61 55%, #9b68ef 72%, #18073f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(226, 212, 255, 0.7);
}

.home-landing-lede {
  max-width: 1120px;
  margin: 32px auto 0;
  color: #f0e8ff;
  font-family: Georgia, serif;
  font-size: clamp(1.18rem, 1.55vw, 1.55rem);
  line-height: 1.25;
  white-space: nowrap;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.86);
}

.home-landing-actions {
  justify-content: center;
  gap: clamp(28px, 4vw, 50px);
  margin-top: 42px;
}

.home-landing-actions .button {
  min-width: clamp(220px, 18vw, 260px);
  min-height: 54px;
  padding: 0 28px;
  border-radius: 12px;
  color: #f6f0ff;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.82);
  background: linear-gradient(135deg, rgba(7, 4, 22, 0.9), rgba(24, 8, 52, 0.91));
  border-color: rgba(226, 212, 255, 0.74);
  box-shadow: 0 0 24px rgba(105, 63, 255, 0.12);
}

.home-landing-actions .button:hover,
.home-landing-actions .button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(242, 236, 255, 0.92);
  box-shadow: 0 0 26px rgba(120, 75, 255, 0.2);
}

.home-landing-cta--discord {
  background: linear-gradient(135deg, rgba(5, 9, 25, 0.9), rgba(8, 24, 58, 0.91));
  border-color: rgba(163, 219, 255, 0.8);
  box-shadow: 0 0 24px rgba(54, 146, 255, 0.1);
}

.home-status-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  margin: 30px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #dfd4bd;
  font-family: Georgia, serif;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.home-status-line span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.home-status-line > span:not(.server-status-dot) + span:not(.server-status-dot) {
  margin-left: 0;
  padding-left: 0;
  border-left: 0;
}

.home-status-line span + span::before {
  content: "•";
  margin-right: 8px;
  color: rgba(223, 212, 189, 0.88);
}

.home-status-line strong {
  color: #f0e8d0;
  font-weight: 800;
}

.page-home .site-footer {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .topbar--home {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 44px;
  }

  .brand--home {
    order: -1;
  }

  .site-home-nav,
  .site-home-nav--left,
  .site-home-nav--right {
    justify-content: center;
    justify-self: center;
  }

  .site-home-nav a {
    min-width: min(190px, 40vw);
  }

  .home-landing-hero {
    padding-top: 326px;
  }
}

@media (max-width: 720px) {
  .site-header--home {
    padding-top: 14px;
  }

  .topbar--home {
    padding-inline: 8px;
  }

  .site-header .brand--home img {
    width: min(300px, 82vw);
  }

  .site-home-nav {
    width: 100%;
    gap: 10px;
  }

  .site-home-nav a {
    min-width: 0;
    flex: 1 1 0;
    min-height: 44px;
    padding: 0 10px;
    font-size: 0.88rem;
  }

  .topbar-actions--home {
    left: 10px;
    right: 10px;
  }

  .topbar-actions--home a {
    min-width: 62px;
    padding: 0 10px;
    font-size: 0.8rem;
  }

  .site-home-more__summary {
    min-width: 62px;
    padding: 0 10px;
    font-size: 0.8rem;
  }

  .site-home-more__menu {
    width: min(300px, calc(100vw - 20px));
  }

  .home-landing-hero {
    padding-top: 314px;
  }

  .home-landing-title {
    font-size: clamp(3.05rem, 13vw, 4.2rem);
  }

  .home-landing-lede {
    margin-top: 24px;
    font-size: 1.05rem;
    white-space: normal;
  }

  .home-landing-actions {
    gap: 14px;
    margin-top: 30px;
  }

  .home-landing-actions .button {
    min-width: min(260px, 100%);
    min-height: 50px;
    font-size: 1rem;
  }
}

@media (max-width: 520px) {
  .home-landing-actions {
    flex-direction: column;
    width: min(100%, 280px);
    margin-right: auto;
    margin-left: auto;
  }

  .home-landing-actions .button {
    width: 100%;
  }

  .home-status-line {
    gap: 6px;
    font-size: 0.72rem;
  }

  .footer-stat-strip,
  .footer-nav-grid {
    grid-template-columns: 1fr;
  }

  .footer-stat-strip span {
    border-left: 0;
    border-top: 1px solid rgba(151, 98, 255, 0.13);
  }

  .footer-stat-strip span:first-child {
    border-top: 0;
  }

  .footer-link-group {
    justify-items: center;
    text-align: center;
  }
}

/* Public page redesign */
.page-public .site-backdrop {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(3, 4, 8, 0.58) 58%, rgba(0, 0, 0, 0.88) 100%),
    url("home-wilderness-bg-wide.webp") center top / cover no-repeat;
}

.page-dashboard .site-backdrop,
.page-auth .site-backdrop,
.page-admin .site-backdrop {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(3, 4, 8, 0.6) 58%, rgba(0, 0, 0, 0.9) 100%),
    url("home-wilderness-bg-wide.webp") center top / cover no-repeat;
}

.page-public .site-backdrop::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.3), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.3)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.48));
}

.page-dashboard .site-backdrop::after,
.page-auth .site-backdrop::after,
.page-admin .site-backdrop::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.34)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.52));
}

.page-public .site-header,
.site-header--public {
  position: relative;
  top: auto;
  padding: 18px 0 4px;
  background: transparent;
}

.topbar--public {
  position: relative;
  display: grid;
  grid-template-columns: minmax(248px, 1fr) auto minmax(248px, 1fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: center;
  padding: 46px clamp(18px, 3vw, 44px) 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header--public .brand--home {
  justify-self: center;
}

.site-header--public .brand--home img {
  width: clamp(250px, 21vw, 350px);
  max-height: 108px;
}

.site-header--public .site-home-nav a {
  min-width: clamp(146px, 11vw, 192px);
  min-height: 48px;
  border-color: rgba(132, 90, 220, 0.55);
  background: rgba(8, 5, 25, 0.68);
}

.site-header--public .site-home-nav a:hover,
.site-header--public .site-home-nav a:focus-visible,
.site-header--public .site-home-nav a.is-active {
  border-color: rgba(129, 80, 255, 0.86);
  background: rgba(29, 8, 73, 0.74);
}

.topbar-actions--public {
  top: 0;
}

.page-public .hero {
  padding: 18px 0 12px;
}

.page-public .hero-compact {
  padding: 16px 0 10px;
}

.page-public .hero-compact .panel {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(22px, 3vw, 34px);
  text-align: center;
  border-color: rgba(138, 92, 226, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(7, 7, 15, 0.68), rgba(5, 6, 12, 0.7)),
    radial-gradient(circle at 50% 0%, rgba(113, 70, 255, 0.09), transparent 52%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 18px 54px rgba(0, 0, 0, 0.3);
}

.page-public .hero-compact h1,
.page-public .play-download-copy h1 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.98;
  color: #d8c8ff;
  text-shadow:
    0 0 12px rgba(132, 77, 255, 0.56),
    0 14px 32px rgba(0, 0, 0, 0.74);
}

.page-public .hero-compact .lede,
.page-public .play-download-copy .lede {
  max-width: 780px;
  margin: 14px auto 0;
  color: #ece5ff;
}

.page-public .section-band {
  padding: 18px 0 28px;
}

.page-public .panel,
.page-public .card,
.page-public .provider-card,
.page-public .catalog-card {
  border-color: rgba(138, 92, 226, 0.18);
  background:
    linear-gradient(180deg, rgba(8, 9, 17, 0.82), rgba(5, 6, 12, 0.86)),
    radial-gradient(circle at top, rgba(132, 80, 255, 0.055), transparent 42%);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.page-public .button-primary {
  color: #f7f1ff;
  border-color: rgba(226, 212, 255, 0.7);
  background: linear-gradient(135deg, rgba(12, 5, 32, 0.94), rgba(42, 15, 86, 0.94));
  box-shadow: 0 0 24px rgba(105, 63, 255, 0.14);
}

.page-public .button-secondary,
.page-public .button-ghost {
  color: #f3ecff;
  border-color: rgba(158, 126, 226, 0.28);
  background: rgba(8, 6, 22, 0.62);
}

.page-public .vote-hero-panel {
  width: min(100%, 780px);
  padding: clamp(18px, 2.4vw, 28px);
  border-color: rgba(175, 132, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(7, 7, 16, 0.7), rgba(5, 6, 13, 0.8)),
    radial-gradient(circle at 50% 0%, rgba(151, 98, 255, 0.11), transparent 56%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 54px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(100, 51, 255, 0.06);
}

.page-public .vote-hero-panel h1 {
  max-width: 720px;
  margin-inline: auto;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 0.96;
  color: #e2d6ff;
  text-shadow:
    0 0 8px rgba(174, 126, 255, 0.5),
    0 0 18px rgba(103, 61, 255, 0.3),
    0 12px 28px rgba(0, 0, 0, 0.78);
}

.page-public .vote-hero-panel .command-callout {
  width: min(700px, 100%);
  max-width: 100%;
  margin: 16px auto 0;
  padding: 13px 16px;
  border-color: rgba(156, 216, 255, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(13, 18, 35, 0.66), rgba(8, 10, 20, 0.74)),
    radial-gradient(circle at 0% 0%, rgba(91, 135, 255, 0.08), transparent 46%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  justify-items: center;
}

.page-public .vote-hero-panel .command-callout__body {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  justify-content: center;
  justify-items: stretch;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  text-align: left;
}

.page-public .vote-hero-panel .command-callout__body > span:last-child {
  max-width: none;
  white-space: nowrap;
}

.page-public .vote-hero-panel .command-chip--hero {
  padding: 5px 12px;
  font-size: 0.92rem;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 10px 22px rgba(79, 124, 255, 0.15);
}

@media (max-width: 680px) {
  .page-public .vote-hero-panel .command-callout {
    width: min(100%, 360px);
  }

  .page-public .vote-hero-panel .command-callout__body {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .page-public .vote-hero-panel .command-callout__body > span:last-child {
    white-space: normal;
  }
}

.page-public .vote-progress-panel {
  border-color: rgba(175, 132, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(7, 7, 16, 0.76), rgba(4, 5, 11, 0.84)),
    radial-gradient(circle at 50% 0%, rgba(151, 98, 255, 0.075), transparent 52%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 22px 68px rgba(0, 0, 0, 0.34);
}

.page-public .vote-progress-panel {
  padding: clamp(22px, 3vw, 30px);
}

.page-public .vote-progress-panel > h2 {
  margin-bottom: 18px;
}

.page-public .vote-flow {
  gap: 18px;
}

.page-public .vote-identity {
  align-items: center;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  padding: 20px;
  border-color: rgba(156, 216, 255, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(11, 14, 28, 0.72), rgba(7, 9, 18, 0.8)),
    radial-gradient(circle at 0% 0%, rgba(116, 73, 255, 0.11), transparent 45%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.page-public .vote-identity label {
  gap: 10px;
}

.page-public .vote-identity label span {
  color: #efd991;
}

.page-public .vote-identity input[data-vote-username] {
  min-height: 54px;
  color: #f6f1ff;
  border-color: rgba(156, 216, 255, 0.24);
  border-radius: 12px;
  background: rgba(8, 13, 25, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 0 0 1px rgba(0, 0, 0, 0.2);
}

.page-public .vote-identity input[data-vote-username]:focus {
  border-color: rgba(175, 132, 255, 0.62);
  box-shadow:
    0 0 0 3px rgba(128, 77, 255, 0.18),
    0 0 26px rgba(102, 157, 255, 0.1);
  outline: none;
}

.page-public .vote-identity p {
  align-self: start;
  max-width: 640px;
  padding-top: 30px;
  color: #d8cfee;
}

.page-public .vote-confirmation-status {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: center;
  color: #efe5ff;
  line-height: 1.45;
}

.page-public .vote-confirmation-status strong,
.page-public .vote-confirmation-status span {
  color: inherit;
}

.page-public .vote-confirmation-status span[data-vote-waiting-text] {
  color: #efd991;
}

.page-public .vote-site-grid {
  gap: 12px;
}

.page-public .vote-site-option {
  min-height: 132px;
  padding: 18px;
  border-color: rgba(175, 132, 255, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(9, 11, 22, 0.8), rgba(6, 8, 16, 0.88)),
    radial-gradient(circle at 0% 0%, rgba(116, 73, 255, 0.1), transparent 46%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 14px 40px rgba(0, 0, 0, 0.26);
}

.page-public .vote-site-choice:hover .vote-site-option,
.page-public .vote-site-option:focus-visible {
  border-color: rgba(156, 216, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 18px 48px rgba(80, 126, 255, 0.11);
}

.page-public .vote-site-choice--locked .vote-site-option,
.page-public .vote-site-choice.is-complete .vote-site-option,
.page-public .vote-site-option:disabled {
  border-color: rgba(212, 173, 87, 0.22);
  background:
    linear-gradient(180deg, rgba(9, 10, 17, 0.72), rgba(6, 7, 13, 0.78)),
    radial-gradient(circle at 0% 0%, rgba(212, 173, 87, 0.08), transparent 45%);
  opacity: 0.82;
}

.page-public .vote-site-option__meta {
  border-color: rgba(212, 173, 87, 0.24);
  background: rgba(212, 173, 87, 0.08);
}

.page-public .vote-site-option__action {
  color: #9edcff;
}

.page-public .vote-provider-status span {
  color: #bfb5d8;
}

.page-public .vote-provider-status strong {
  color: #f3ecff;
}

.page-public .vote-reward-picker {
  padding: 20px;
  border-color: rgba(156, 216, 255, 0.17);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(10, 13, 25, 0.74), rgba(6, 8, 16, 0.84)),
    radial-gradient(circle at 100% 0%, rgba(116, 73, 255, 0.1), transparent 46%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.032);
}

.page-public .vote-reward-card {
  min-height: 118px;
  border-color: rgba(175, 132, 255, 0.16);
  border-radius: 14px;
  background: rgba(7, 9, 18, 0.72);
}

.page-public .vote-reward-card:hover,
.page-public .vote-reward-card:focus-within {
  border-color: rgba(156, 216, 255, 0.34);
  box-shadow: 0 16px 40px rgba(80, 126, 255, 0.09);
}

.page-public .vote-reward-card:has(input:checked) {
  border-color: rgba(175, 132, 255, 0.44);
  background:
    linear-gradient(180deg, rgba(21, 13, 40, 0.8), rgba(8, 10, 20, 0.88)),
    radial-gradient(circle at top left, rgba(151, 98, 255, 0.18), transparent 52%);
  box-shadow: 0 18px 52px rgba(128, 77, 255, 0.11);
}

.page-public .vote-submit-row {
  padding-top: 2px;
}

.page-download .play-download-shell {
  grid-template-columns: minmax(0, 0.72fr) minmax(440px, 1fr);
  gap: clamp(24px, 4vw, 44px);
}

.page-download .play-download-copy {
  align-self: center;
}

.page-download .play-download-copy .eyebrow,
.page-download .play-download-copy h1,
.page-download .play-download-copy .lede,
.page-download .download-release-meta {
  text-align: left;
}

.page-download .play-download-console {
  border-radius: 14px;
}

.page-download .download-platform-tab {
  border-color: rgba(138, 92, 226, 0.18);
  background: rgba(6, 6, 18, 0.62);
}

.page-download .download-platform-tab:hover,
.page-download .download-platform-tab:focus-visible,
.page-download .download-platform-tab.is-active {
  border-color: rgba(129, 80, 255, 0.76);
  background: rgba(32, 10, 76, 0.64);
}

.page-download .download-selected-card,
.page-download .download-help-row span {
  border-color: rgba(138, 92, 226, 0.18);
  background: rgba(6, 6, 18, 0.54);
}

.page-portal.page-public .donate-account-strip,
.page-portal.page-public .vote-progress-panel,
.page-portal.page-public .hiscores-table-wrap {
  border-color: rgba(138, 92, 226, 0.18);
  background: rgba(6, 6, 18, 0.54);
}

.page-public .hiscores-table th {
  color: #e6d8ff;
}

.page-public .hiscores-table td {
  border-color: rgba(138, 92, 226, 0.12);
}

@media (max-width: 1100px) {
  .topbar--public {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 36px;
  }

  .site-header--public .brand--home {
    order: -1;
  }

  .site-header--public .site-home-nav,
  .site-header--public .site-home-nav--left,
  .site-header--public .site-home-nav--right {
    justify-content: center;
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .page-public .site-header {
    padding-top: 12px;
  }

  .topbar--public {
    padding-inline: 8px;
  }

  .site-header--public .brand--home img {
    width: min(300px, 82vw);
  }

  .site-header--public .site-home-nav {
    width: 100%;
    gap: 10px;
  }

  .site-header--public .site-home-nav a {
    min-width: 0;
    flex: 1 1 0;
    min-height: 44px;
    padding: 0 10px;
    font-size: 0.88rem;
  }

  .page-download .play-download-copy .eyebrow,
  .page-download .play-download-copy h1,
  .page-download .play-download-copy .lede,
  .page-download .download-release-meta {
    text-align: center;
  }
}
