:root {
  color-scheme: dark;
  --bg: #090909;
  --surface: #11110f;
  --surface-raised: #171713;
  --surface-soft: #202018;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(244, 193, 56, 0.32);
  --text: #f7f5ef;
  --muted: #a5a39c;
  --gold: #f4c138;
  --gold-deep: #9d7519;
  --gold-soft: #ffe394;
  --success: #71d7a0;
  --danger: #ff7f79;
  --info: #8ac7ff;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.38);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(rgba(7, 7, 7, 0.9), rgba(7, 7, 7, 0.94)),
    url("/hero-bg.png") center 28% / cover fixed no-repeat,
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; }
.ui-icon { width: 1em; height: 1em; flex: 0 0 auto; display: inline-block; vertical-align: -.125em; }
:focus-visible { outline: 3px solid rgba(244, 193, 56, 0.55); outline-offset: 3px; }
::selection { background: var(--gold); color: #16130a; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: var(--space-3);
  left: var(--space-3);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: #17130a;
  font-weight: 800;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.container { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }
.site-shell { min-height: 100vh; display: flex; flex-direction: column; background: rgba(7, 7, 7, .12); }
.site-shell > main { flex: 1; padding-top: 64px; }
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 9, 9, 0.9);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 72px; display: flex; align-items: center; gap: var(--space-5); }
.brand { display: inline-flex; align-items: center; gap: var(--space-3); flex: 0 0 auto; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand-word { display: grid; line-height: 1.05; }
.brand-word strong { font-size: 15px; letter-spacing: 0.12em; }
.brand-word span { color: var(--muted); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: var(--space-1); margin-left: auto; }
.nav-link {
  padding: 9px 13px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease;
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--text); background: var(--surface-raised); }
.header-actions { display: flex; align-items: center; gap: var(--space-2); }
.header-preferences { display: flex; align-items: center; gap: 7px; }
.header-auth-session { display: flex; align-items: center; gap: 7px; }
.header-logout .ui-icon { width: 15px; height: 15px; }
.button.menu-button { display: none; }

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: #17130a;
  font-weight: 850;
  line-height: 1.2;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}
.button:hover { transform: translateY(-1px); background: #ffd45a; }
.button:active { transform: none; }
.button:disabled { cursor: not-allowed; opacity: 0.55; transform: none; }
.button-secondary { border-color: var(--border); background: var(--surface-raised); color: var(--text); }
.button-secondary:hover { background: var(--surface-soft); }
.button-danger { border-color: rgba(255, 127, 121, 0.25); background: rgba(255, 127, 121, 0.1); color: var(--danger); }
.button-small { min-height: 36px; padding: 7px 12px; font-size: 13px; }
.button-wide { width: 100%; }
.icon-button { width: 44px; padding: 0; }

.page { padding: var(--space-7) 0 var(--space-8); }
.page-narrow { width: min(calc(100% - 32px), 820px); margin-inline: auto; }
.public-page-title { font-size: clamp(34px, 5vw, 52px); }
.eyebrow { margin: 0 0 var(--space-2); color: var(--gold); font-size: 13px; font-weight: 850; letter-spacing: 0.14em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.13; letter-spacing: -0.025em; }
h1 { margin-bottom: var(--space-4); font-size: clamp(36px, 7vw, 72px); }
h2 { margin-bottom: var(--space-3); font-size: clamp(26px, 4vw, 40px); }
h3 { margin-bottom: var(--space-2); font-size: 19px; }
.lead { max-width: 700px; margin-bottom: 0; color: #c7c5bf; font-size: clamp(17px, 2.1vw, 20px); }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.strong { color: var(--text); font-weight: 800; }
.stack { display: grid; gap: var(--space-4); }
.stack-lg { display: grid; gap: var(--space-6); }
.cluster { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-3); }
.spread { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); }
.section-heading { margin-bottom: var(--space-5); }
.divider { height: 1px; border: 0; background: var(--border); margin: var(--space-5) 0; }

.hero {
  min-height: 620px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.98) 0%, rgba(7, 7, 7, 0.83) 45%, rgba(7, 7, 7, 0.2) 100%),
    url("/hero-bg.png") center 28% / cover no-repeat;
}
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 180px; background: linear-gradient(transparent, var(--bg)); pointer-events: none; }
.hero-content { position: relative; z-index: 1; max-width: 730px; padding: 96px 0 120px; }
.hero h1 span { color: var(--gold); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }
.server-chip { display: inline-flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-5); padding: 7px 12px; border: 1px solid var(--border-strong); border-radius: 999px; background: rgba(9,9,9,.7); color: var(--gold-soft); font-size: 13px; font-weight: 750; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(113,215,160,.1); }
.home-section { padding: var(--space-8) 0; }
.home-section + .home-section { border-top: 1px solid var(--border); }

.grid { display: grid; gap: var(--space-4); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.025), transparent 35%), var(--surface);
  box-shadow: 0 1px 0 rgba(255,255,255,.025) inset;
}
.card-body { padding: var(--space-5); }
.card-interactive { transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.card-interactive:hover { transform: translateY(-3px); border-color: var(--border-strong); background-color: var(--surface-raised); }
.feature-card { min-height: 210px; display: flex; flex-direction: column; }
.feature-card .card-body { display: flex; flex: 1; flex-direction: column; }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: var(--space-5); border: 1px solid var(--border-strong); border-radius: 12px; background: rgba(244,193,56,.08); color: var(--gold); font-weight: 900; }
.feature-card .card-link { margin-top: auto; color: var(--gold-soft); font-size: 14px; font-weight: 800; }
.stat-card strong { display: block; color: var(--gold-soft); font-size: clamp(25px, 4vw, 34px); line-height: 1.1; }
.stat-card span { color: var(--muted); font-size: 13px; }
.notice { padding: var(--space-4); border: 1px solid var(--border); border-radius: var(--radius-sm); background: rgba(138,199,255,.06); color: #cae6ff; }
.notice-warning { border-color: rgba(244,193,56,.22); background: rgba(244,193,56,.06); color: var(--gold-soft); }
.notice-danger { border-color: rgba(255,127,121,.25); background: rgba(255,127,121,.07); color: #ffc3c0; }
.badge { display: inline-flex; align-items: center; padding: 4px 8px; border: 1px solid var(--border); border-radius: 999px; background: var(--surface-raised); color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.badge-gold { border-color: var(--border-strong); color: var(--gold-soft); }
.badge-success { border-color: rgba(113,215,160,.25); color: var(--success); }
.price { color: var(--gold-soft); font-size: 25px; font-weight: 900; }

.login-stage { min-height: calc(100vh - 64px); display: grid; place-items: center; padding: 28px 0; background: linear-gradient(rgba(7,7,7,.06), rgba(7,7,7,.18)); }
.form-card { width: min(calc(100% - 32px), 480px); margin: var(--space-7) auto; background: rgba(20,20,19,.96); }
.form-card .card-body { padding: clamp(24px, 6vw, 44px); }
.form-logo { width: 92px; margin: 0 auto var(--space-5); }
.form-heading { margin-bottom: var(--space-6); text-align: center; }
.form-heading h2 { font-size: clamp(26px, 4vw, 32px); }
.field { display: grid; gap: var(--space-2); }
.field label { color: #dad7cf; font-size: 14px; font-weight: 780; }
.field-help { color: var(--muted); font-size: 12px; }
.input, .textarea, .select {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #0b0b0a;
  color: var(--text);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.textarea { min-height: 260px; resize: vertical; white-space: pre-wrap; line-height: 1.55; }
.input::placeholder, .textarea::placeholder { color: #706f6a; }
.input:focus, .textarea:focus, .select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(244,193,56,.1); outline: 0; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px) !important; }
.field-row { display: grid; grid-template-columns: 1fr auto; gap: var(--space-3); align-items: end; }

.progress { width: 100%; height: 9px; overflow: hidden; border: 0; border-radius: 99px; appearance: none; background: #28271f; }
.progress::-webkit-progress-bar { border-radius: 99px; background: #28271f; }
.progress::-webkit-progress-value { border-radius: 99px; background: linear-gradient(90deg, var(--gold-deep), var(--gold)); }
.progress::-moz-progress-bar { border-radius: 99px; background: linear-gradient(90deg, var(--gold-deep), var(--gold)); }
.list { display: grid; gap: var(--space-3); margin: 0; padding: 0; list-style: none; }
.list-item { padding: var(--space-4); border: 1px solid var(--border); border-radius: var(--radius-sm); background: rgba(255,255,255,.015); }
.avatar { width: 52px; height: 52px; border-radius: 10px; image-rendering: pixelated; background: var(--surface-soft); }
.avatar-lg { width: 88px; height: 88px; border-radius: 15px; }
.empty { padding: var(--space-7) var(--space-5); text-align: center; color: var(--muted); }
.document { padding: clamp(22px, 5vw, 44px); }
.document-content { color: #d8d5ce; white-space: pre-wrap; overflow-wrap: anywhere; font-size: 16px; line-height: 1.85; }
.document-meta { margin-top: var(--space-6); padding-top: var(--space-4); border-top: 1px solid var(--border); color: var(--muted); font-size: 12px; }

.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
.table { width: 100%; border-collapse: collapse; min-width: 680px; }
.table th, .table td { padding: 13px 16px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: middle; }
.table th { color: var(--muted); background: var(--surface); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.table tr:last-child td { border-bottom: 0; }

.skeleton { position: relative; overflow: hidden; border-radius: 8px; background: #20201d; color: transparent !important; pointer-events: none; }
.skeleton::after { content: ""; position: absolute; inset: 0; transform: translateX(-100%); background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent); animation: shimmer 1.25s infinite; }
.skeleton-line { height: 14px; }
.skeleton-line-lg { height: 28px; }
.skeleton-card { min-height: 180px; }
.w-35 { width: 35%; }
.w-42 { width: 42%; }
.w-50 { width: 50%; }
.w-60 { width: 60%; }
.w-70 { width: 70%; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 24px; }
.my-3 { margin-block: 12px; }
.block { display: block; }
.text-center { text-align: center; }
.push-bottom { margin-top: auto; }
.no-margin { margin: 0; }
.stack-tight { gap: 10px; }
.profile-title { margin-bottom: 10px; font-size: clamp(30px, 5vw, 50px); }
.title-compact { font-size: 42px; }
.stat-date { font-size: 18px !important; }
.select-role { min-width: 150px; }
.center-cluster { justify-content: center; }
.skeleton-center { margin-inline: auto; }
@keyframes shimmer { to { transform: translateX(100%); } }

/* Portal only: original GodsLand hero/navigation, followed by the two preserved sections. */
.home-original-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.3) 48%, rgba(0,0,0,.62) 100%),
    linear-gradient(90deg, rgba(5,5,5,.9) 0%, rgba(5,5,5,.62) 48%, rgba(5,5,5,.35) 100%),
    url("/hero-bg.png") center top / cover fixed no-repeat,
    var(--bg);
}
.home-original-header {
  position: fixed;
  z-index: 80;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(8,8,8,.72);
  backdrop-filter: blur(18px);
}
.home-original-header-inner { min-height: 64px; display: flex; align-items: center; gap: 24px; }
.home-original-brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.home-original-brand img { width: 40px; height: 40px; object-fit: contain; }
.home-original-brand > span { font-family: "Arial Black", Impact, sans-serif; font-size: 14px; font-weight: 900; letter-spacing: .18em; }
.home-original-brand strong { color: var(--gold); }
.home-original-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.home-original-nav-link { color: var(--muted); font-size: 14px; font-weight: 750; letter-spacing: .02em; transition: color 160ms ease; }
.home-original-nav-link:hover, .home-original-nav-link[aria-current="page"] { color: var(--gold); }
.home-original-header-actions { display: flex; align-items: center; gap: 10px; }
.home-original-preferences { display: flex; align-items: center; gap: 7px; }
.home-language-toggle {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(17,17,15,.72);
}
.home-language-option {
  min-width: 32px;
  min-height: 28px;
  padding: 4px 7px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}
.home-language-option:hover { color: var(--text); }
.home-language-option[aria-pressed="true"] { background: rgba(244,193,56,.14); color: var(--gold); }
.home-theme-toggle {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(17,17,15,.72);
  color: var(--gold-soft);
  font-size: 17px;
  line-height: 1;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}
.home-theme-toggle:hover { border-color: var(--border-strong); background: rgba(244,193,56,.08); color: var(--gold); }
.home-original-account { display: inline-flex; align-items: center; min-height: 38px; padding: 8px 16px; border-radius: 999px; background: var(--gold); color: #141008; font-size: 12px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; transition: background 160ms ease, transform 160ms ease; }
.home-original-account .ui-icon { width: 15px; height: 15px; margin-right: 7px; }
.home-account-label { max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-original-account:hover { background: #ffd45a; transform: translateY(-1px); }
.home-original-account-secondary { border: 1px solid var(--border-strong); background: rgba(17,17,15,.88); color: var(--gold); }
.home-auth-session { display: flex; align-items: center; gap: 7px; }
.home-original-logout { min-height: 38px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 8px 13px; border: 1px solid var(--border); border-radius: 999px; background: rgba(17,17,15,.88); color: var(--muted); font-size: 11px; font-weight: 850; }
.home-original-logout:hover { border-color: var(--border-strong); color: var(--gold); }
.home-original-logout .ui-icon { width: 15px; height: 15px; }
.home-original-menu { display: none; width: 40px; height: 40px; padding: 0; border: 1px solid var(--border); border-radius: 50%; background: rgba(17,17,15,.9); color: var(--text); font-size: 20px; }
.home-original-hero {
  position: relative;
  min-height: clamp(620px, 78svh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 0;
}
.home-original-hero-background {
  position: absolute;
  inset: 0;
  background: none;
}
.home-original-hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), var(--max));
  min-height: clamp(620px, 78svh, 820px);
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(0, 1fr);
  grid-auto-rows: max-content;
  align-content: center;
  align-items: stretch;
  column-gap: clamp(32px, 3vw, 52px);
  padding-top: 100px;
  padding-bottom: 70px;
}
.home-original-hero-copy { position: relative; z-index: 3; width: 100%; }
.home-original-kicker { margin: 0; color: var(--gold); font-size: clamp(11px, 1.3vw, 14px); font-weight: 900; letter-spacing: .36em; text-transform: uppercase; }
.home-original-hero h1 { display: grid; gap: 3px; margin: 24px 0 0; font-family: "Arial Black", Impact, ui-sans-serif, sans-serif; font-size: clamp(48px, 6.2vw, 86px); font-weight: 950; letter-spacing: -.045em; line-height: 1.02; text-transform: none; }
.home-original-hero h1 span { color: #f6f4ee; }
.home-original-hero h1 strong { color: var(--gold); font-weight: inherit; }
.home-original-lead { max-width: 620px; margin: 30px 0 0; color: #aaa8a2; font-size: clamp(16px, 1.8vw, 19px); line-height: 1.75; }
.home-original-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 36px; }
.home-copy-wrap { position: relative; display: inline-flex; }
.home-copy-feedback {
  position: absolute;
  z-index: 5;
  bottom: calc(100% + 12px);
  left: 50%;
  min-width: max-content;
  padding: 7px 11px;
  border: 1px solid rgba(244,193,56,.48);
  border-radius: 999px;
  background: rgba(12,12,10,.96);
  box-shadow: 0 10px 32px rgba(0,0,0,.38), 0 0 24px rgba(244,193,56,.14);
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px) scale(.92);
}
.home-copy-feedback[data-visible="true"] { animation: home-copy-confirm 1800ms cubic-bezier(.22,1,.36,1) both; }
@keyframes home-copy-confirm {
  0% { opacity: 0; transform: translate(-50%, 8px) scale(.9); }
  13%, 76% { opacity: 1; transform: translate(-50%, 0) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -7px) scale(.97); }
}
.home-original-primary, .home-original-secondary { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 26px; border-radius: 999px; font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.home-original-primary { border: 0; background: var(--gold); color: #151108; box-shadow: 0 0 50px rgba(244,193,56,.2); }
.home-original-primary:hover { background: #ffd45a; }
.home-original-secondary { border: 1px solid var(--border-strong); background: rgba(10,10,9,.55); color: var(--gold); }
.home-original-secondary:hover { background: rgba(244,193,56,.08); }
.home-original-hero-visual { position: relative; z-index: 2; min-width: 0; min-height: 0; }
.home-original-hero-logo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; filter: drop-shadow(0 0 70px rgba(244,193,56,.2)); animation: home-logo-in 900ms cubic-bezier(.22,1,.36,1) both; }
@keyframes home-logo-in { from { opacity: 0; transform: translateY(28px) scale(.94); } }
.home-preserved-section { position: relative; background: transparent; }
.home-original-hero + .home-preserved-section { background: transparent; }
.home-original-shell .home-section + .home-section { border-top: 0; }
.home-preserved-section .section-heading h2 { font-family: "Arial Black", Impact, ui-sans-serif, sans-serif; font-size: clamp(30px, 4vw, 44px); }
.home-preserved-section .section-heading { max-width: 820px; margin-inline: auto; text-align: center; }
.home-preserved-section .section-heading .lead { margin-inline: auto; }
.home-original-hero + .home-preserved-section { margin-top: -36px; padding-top: 42px; }
.home-preserved-section .feature-card { background: rgba(16,16,14,.96); }
.home-destination-card {
  --destination-image: none;
  position: relative;
  isolation: isolate;
  min-height: 280px;
  border-color: rgba(244,193,56,.18);
  background: #0d0d0b;
}
.home-destination-card::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(5,5,5,.08) 0%, rgba(5,5,5,.58) 45%, rgba(5,5,5,.97) 100%),
    var(--destination-image);
  background-position: center;
  background-size: cover;
  transition: transform 500ms cubic-bezier(.22,1,.36,1), filter 220ms ease;
}
.home-destination-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255,225,126,.12), transparent 28% 76%, rgba(244,193,56,.08));
  opacity: .58;
  pointer-events: none;
}
.home-destination-card:hover { border-color: rgba(244,193,56,.58); background: #0d0d0b; box-shadow: 0 20px 50px rgba(0,0,0,.38), 0 0 28px rgba(244,193,56,.09); }
.home-destination-card:hover::before { filter: saturate(1.12) brightness(1.07); transform: scale(1.045); }
.home-destination-card .card-body { position: relative; z-index: 1; justify-content: flex-end; padding: 25px; }
.home-destination-card h3 { margin: 0; font-size: clamp(23px, 2.4vw, 28px); text-shadow: 0 2px 15px rgba(0,0,0,.92); }
.home-destination-card p { margin: 8px 0 0; color: #c8c4ba; font-size: 13px; line-height: 1.55; text-shadow: 0 2px 12px rgba(0,0,0,.9); }
.home-destination-card .card-link { padding-top: 18px; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.home-destination-vote { --destination-image: url("/assets/home/card-vote.webp"); }
.home-destination-store { --destination-image: url("/assets/home/card-store.webp"); }
.home-destination-discord { --destination-image: url("/assets/home/card-discord.webp"); }
.home-preserved-stats-section { background: transparent; }
.home-preserved-stats .stat-card { background: rgba(16,16,14,.96); }
.home-information-section, .home-faq-section { position: relative; }
.home-information-section .section-heading { max-width: 820px; margin: 0 auto 34px; text-align: center; }
.home-information-section .section-heading h2, .home-faq-heading h2 { font-family: "Arial Black", Impact, ui-sans-serif, sans-serif; font-size: clamp(30px, 4vw, 44px); }
.home-information-section .section-heading .lead { margin-inline: auto; }
.home-information-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.home-information-card { position: relative; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: rgba(16,16,14,.9); }
.home-information-number { display: inline-grid; place-items: center; min-width: 34px; height: 30px; margin-bottom: 18px; border: 1px solid var(--border-strong); border-radius: 8px; color: var(--gold); font-size: 10px; font-weight: 900; }
.home-information-card h3 { margin: 0 0 12px; font-size: 20px; }
.home-information-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.home-information-outro { max-width: 900px; margin: 30px auto 0; color: var(--muted); font-size: 14px; line-height: 1.8; text-align: center; }
.home-faq-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); align-items: start; gap: clamp(34px, 6vw, 86px); }
.home-faq-heading { position: sticky; top: 96px; }
.home-faq-heading h2 { margin-bottom: 0; }
.home-faq-list { display: grid; border-top: 1px solid var(--border); }
.home-faq-item { border-bottom: 1px solid var(--border); }
.home-faq-item summary { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; color: var(--text); font-size: 15px; font-weight: 850; list-style: none; }
.home-faq-item summary::-webkit-details-marker { display: none; }
.home-faq-marker { width: 28px; height: 28px; flex: 0 0 28px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 8px; color: var(--gold); transition: transform 180ms ease; }
.home-faq-item[open] .home-faq-marker { transform: rotate(45deg); }
.home-faq-item > p { margin: -4px 48px 24px 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.home-original-footer { border-top: 1px solid var(--border); background: rgba(8,8,8,.92); }
.home-original-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "brand nav"
    "tagline socials"
    "copyright socials";
  align-items: center;
  column-gap: 44px;
  row-gap: 14px;
  padding: 38px 0 26px;
  text-align: left;
}
.home-original-footer-brand { grid-area: brand; justify-self: start; justify-content: flex-start; }
.home-original-footer .home-original-brand > span { display: inline; }
.home-original-footer-tagline { grid-area: tagline; max-width: 620px; margin: 0; color: var(--muted); font-size: 13px; }
.home-original-footer-nav { grid-area: nav; display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 24px; }
.home-original-footer-link { color: var(--muted); font-size: 13px; font-weight: 750; }
.home-original-footer-link:hover { color: var(--gold); }
.home-original-socials { grid-area: socials; display: flex; align-items: center; justify-self: end; align-self: end; gap: 8px; }
.home-original-socials a { padding: 7px 11px; border: 1px solid var(--border); border-radius: 999px; color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.home-original-socials a:hover { border-color: var(--border-strong); color: var(--gold); }
.home-original-copyright { grid-area: copyright; justify-self: start; margin: 2px 0 0; color: var(--muted); font-size: 12px; text-align: left; }

/* Vote — original four-platform design, adapted to the current app shell. */
.vote-original-shell { min-height: 100vh; display: flex; flex-direction: column; background: #0d0d0d; }
.vote-original-main { flex: 1; }
.vote-original-hero {
  position: relative;
  min-height: clamp(620px, 76svh, 800px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  text-align: left;
}
.vote-original-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/hero-bg.png") center 32% / cover no-repeat;
  opacity: .5;
  transform: scale(1.015);
}
.vote-original-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.48) 0%, rgba(13,13,13,.42) 52%, #0d0d0d 100%);
}
.vote-original-hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max));
  min-height: clamp(620px, 76svh, 800px);
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(0, 1fr);
  grid-auto-rows: max-content;
  align-content: center;
  align-items: stretch;
  column-gap: clamp(32px, 3vw, 52px);
  padding-top: 100px;
  padding-bottom: 70px;
}
.vote-original-hero-copy { position: relative; z-index: 3; width: 100%; min-width: 0; }
.vote-original-kicker { margin: 0; color: var(--gold); font-size: clamp(11px, 1.3vw, 14px); font-weight: 900; letter-spacing: .36em; text-transform: uppercase; }
.vote-original-hero h1 {
  margin: 24px 0 0;
  font-family: "Arial Black", Impact, ui-sans-serif, sans-serif;
  font-size: clamp(48px, 6.2vw, 86px);
  font-weight: 950;
  letter-spacing: -.045em;
  line-height: 1.02;
}
.vote-original-subtitle { max-width: 620px; margin: 30px 0 0; color: #aaa8a2; font-size: clamp(16px, 1.8vw, 19px); line-height: 1.75; }
.vote-original-hero-visual { position: relative; z-index: 2; min-width: 0; min-height: clamp(340px, 31vw, 392px); }
.vote-original-hero-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 64px rgba(244,193,56,.22));
  animation: home-logo-in 900ms cubic-bezier(.22,1,.36,1) both;
}
.vote-original-list { position: relative; z-index: 3; margin-top: -56px; padding-top: 0; padding-bottom: 96px; }
.vote-original-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.vote-original-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  background: #171717;
  box-shadow: 0 1px 0 rgba(255,255,255,.025) inset;
  animation: vote-card-in 600ms cubic-bezier(.22,1,.36,1) both;
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}
.vote-original-card-2 { animation-delay: 80ms; }
.vote-original-card-3 { animation-delay: 160ms; }
.vote-original-card-4 { animation-delay: 240ms; }
.vote-original-card:hover { transform: translateY(-4px); border-color: rgba(244,193,56,.28); box-shadow: 0 20px 50px rgba(0,0,0,.34), 0 0 38px rgba(244,193,56,.1); }
.vote-original-card-media { position: relative; height: 128px; flex: 0 0 auto; overflow: hidden; }
.vote-original-card-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); transition: transform 700ms ease; }
.vote-original-card:hover .vote-original-card-media img { transform: scale(1.25); }
.vote-original-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, #171717 0%, rgba(23,23,23,0) 72%); }
.vote-original-card-media-1 img { object-position: center 20%; }
.vote-original-card-media-2 img { object-position: center 45%; }
.vote-original-card-media-3 img { object-position: center 65%; }
.vote-original-card-media-4 img { object-position: center 85%; }
.vote-original-number {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border: 1px solid rgba(244,193,56,.26);
  border-radius: 6px;
  background: rgba(0,0,0,.7);
  color: var(--gold);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 11px;
  font-weight: 900;
}
.vote-original-card-body { min-height: 238px; display: flex; flex: 1; flex-direction: column; padding: 8px 24px 24px; }
.vote-original-card h2 { margin: 0; font-family: "Arial Black", Impact, ui-sans-serif, sans-serif; font-size: 16px; letter-spacing: -.015em; }
.vote-original-card p { margin: 10px 0 0; color: #aaa8a2; font-size: 13px; line-height: 1.55; }
.vote-original-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: auto;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--gold);
  color: #0c0b08;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background 160ms ease, transform 160ms ease;
}
.vote-original-button:hover { background: #ffd45a; transform: translateY(-1px); }
@keyframes vote-card-in { from { opacity: 0; transform: translateY(22px); } }
@media (prefers-reduced-motion: reduce) {
  .vote-original-card { animation: none; }
  .vote-original-card, .vote-original-card-media img, .vote-original-button { transition: none; }
}

/* Portal and Vote accessibility themes: explicit dark/light selection. */
html[data-theme="light"] .home-original-shell,
html[data-theme="light"] .vote-original-shell {
  --bg: #f3efe5;
  --surface: #fffdf8;
  --surface-raised: #f4ecdc;
  --surface-soft: #e9dfcb;
  --border: rgba(54,45,29,.16);
  --border-strong: rgba(157,117,25,.42);
  --text: #211d16;
  --muted: #665f53;
  --gold-deep: #76520b;
  --gold-soft: #6f4c08;
  --shadow: 0 20px 70px rgba(74,55,19,.16);
  color: var(--text);
  color-scheme: light;
}
html[data-theme="light"] .home-original-shell {
  background:
    linear-gradient(180deg, rgba(250,247,239,.14) 0%, rgba(250,247,239,.34) 48%, rgba(243,239,229,.74) 100%),
    linear-gradient(90deg, rgba(250,247,239,.94) 0%, rgba(250,247,239,.74) 48%, rgba(250,247,239,.54) 100%),
    url("/hero-bg.png") center top / cover fixed no-repeat,
    #f3efe5;
}
html[data-theme="light"] .home-original-header { border-bottom-color: rgba(54,45,29,.12); background: rgba(250,247,239,.84); }
html[data-theme="light"] .home-language-toggle,
html[data-theme="light"] .home-theme-toggle,
html[data-theme="light"] .home-original-menu,
html[data-theme="light"] .home-original-logout { background: rgba(255,253,248,.76); }
html[data-theme="light"] .home-language-option[aria-pressed="true"] { background: rgba(157,117,25,.14); color: #76520b; }
html[data-theme="light"] .home-theme-toggle { color: #76520b; }
html[data-theme="light"] .home-original-account-secondary { background: rgba(255,253,248,.82); color: #76520b; }
html[data-theme="light"] .home-original-hero h1 span { color: #211d16; }
html[data-theme="light"] .home-original-lead,
html[data-theme="light"] .home-preserved-section .lead { color: #5f594e; }
html[data-theme="light"] .home-original-secondary { background: rgba(255,253,248,.62); color: #76520b; }
html[data-theme="light"] .home-destination-card { border-color: rgba(157,117,25,.34); }
html[data-theme="light"] .home-destination-card h3 { color: #fffdf8; }
html[data-theme="light"] .home-destination-card p { color: #eee8dc; }
html[data-theme="light"] .home-destination-card .card-link { color: #ffe394; }
html[data-theme="light"] .home-preserved-stats .stat-card { border-color: rgba(54,45,29,.14); background: rgba(255,253,248,.9); color: #211d16; }
html[data-theme="light"] .home-preserved-stats .stat-card span { color: #665f53; }
html[data-theme="light"] .home-information-card { background: rgba(255,253,248,.88); }
html[data-theme="light"] .home-original-footer { border-top-color: rgba(54,45,29,.12); background: rgba(247,242,231,.94); }
html[data-theme="light"] .home-original-socials a { background: rgba(255,253,248,.56); }
html[data-theme="light"] .home-original-nav { color: var(--text); }

html[data-theme="light"] .vote-original-shell { background: #f3efe5; }
html[data-theme="light"] .vote-original-hero::before { opacity: .42; }
html[data-theme="light"] .vote-original-hero::after { background: linear-gradient(180deg, rgba(250,247,239,.46) 0%, rgba(243,239,229,.55) 52%, #f3efe5 100%); }
html[data-theme="light"] .vote-original-hero h1 { color: #211d16; }
html[data-theme="light"] .vote-original-subtitle { color: #5f594e; }
html[data-theme="light"] .vote-original-card { border-color: rgba(54,45,29,.14); background: #fffdf8; box-shadow: 0 1px 0 rgba(255,255,255,.7) inset; }
html[data-theme="light"] .vote-original-card-media::after { background: linear-gradient(0deg, #fffdf8 0%, rgba(255,253,248,0) 72%); }
html[data-theme="light"] .vote-original-card h2 { color: #211d16; }
html[data-theme="light"] .vote-original-card p { color: #665f53; }
html[data-theme="light"] .vote-original-card:hover { border-color: rgba(157,117,25,.42); box-shadow: 0 20px 50px rgba(74,55,19,.14), 0 0 32px rgba(157,117,25,.08); }
.vote-original-button-disabled { cursor: not-allowed; opacity: .58; filter: saturate(.45); }

/* Rules — GitBook-style documentation, using the shared GODSLAND shell. */
.rules-shell { min-height: 100vh; display: flex; flex-direction: column; background: var(--bg); }
.rules-main { flex: 1; padding-top: 64px; }
.rules-docs-heading { position: relative; overflow: hidden; padding: 54px 0 42px; border-bottom: 1px solid var(--border); background: linear-gradient(90deg, rgba(7,7,7,.97), rgba(7,7,7,.82)), url("/hero-bg.png") center 34% / cover no-repeat; }
.rules-docs-heading::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 75% 42%, rgba(244,193,56,.14), transparent 28%); }
.rules-docs-heading .container { position: relative; z-index: 1; }
.rules-kicker { margin: 0 0 15px; color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: .28em; text-transform: uppercase; }
.rules-docs-heading h1 { margin: 0 0 10px; font-family: "Arial Black", Impact, ui-sans-serif, sans-serif; font-size: clamp(36px, 5vw, 58px); }
.rules-docs-heading p:last-child { max-width: 720px; margin: 0; color: #bbb8b0; font-size: 16px; line-height: 1.65; }
.rules-page { width: min(100%, 1680px); margin-inline: auto; padding-inline: 28px; }
.rules-content { display: grid; grid-template-columns: 300px minmax(0, 820px) 260px; justify-content: center; align-items: start; column-gap: clamp(30px, 3vw, 52px); min-height: 680px; }
.rules-loading { grid-column: 1 / -1; display: grid; grid-template-columns: 260px minmax(0, 820px); gap: 56px; padding-block: 52px 90px; }
.rules-sidebar-skeleton { min-height: 480px; border-radius: 0; }
.rules-sidebar { position: sticky; top: 64px; max-height: calc(100vh - 64px); overflow: auto; padding: 36px 28px 52px 0; border-right: 1px solid var(--border); scrollbar-width: thin; }
.rules-sidebar-brand { display: flex; align-items: center; gap: 10px; margin: 0 10px 24px; }
.rules-sidebar-brand img { width: 34px; height: 34px; object-fit: contain; }
.rules-sidebar-brand div { display: grid; gap: 1px; }
.rules-sidebar-brand strong { font-size: 13px; letter-spacing: .14em; }
.rules-sidebar-brand span { color: var(--muted); font-size: 11px; }
.rules-search { height: 42px; display: flex; align-items: center; gap: 9px; margin: 0 8px 24px; padding: 0 12px; border: 1px solid var(--border); border-radius: 10px; background: rgba(255,255,255,.025); color: var(--muted); }
.rules-search:focus-within { border-color: var(--border-strong); box-shadow: 0 0 0 3px rgba(244,193,56,.08); }
.rules-search .ui-icon { width: 17px; height: 17px; flex: 0 0 17px; }
.rules-search input { min-width: 0; width: 100%; border: 0; outline: 0; background: transparent; color: var(--text); font: inherit; font-size: 13px; }
.rules-search input::placeholder { color: var(--muted); }
.rules-category-nav { display: grid; gap: 6px; }
.rules-category-group > button { width: 100%; min-height: 46px; display: flex; align-items: center; gap: 11px; padding: 10px 12px; border: 0; border-radius: 9px; background: transparent; color: var(--muted); text-align: left; font-size: 15px; font-weight: 750; }
.rules-category-group > button:hover { background: rgba(255,255,255,.035); color: var(--text); }
.rules-category-group > button[aria-current="page"] { background: rgba(244,193,56,.09); color: var(--gold-soft); }
.rules-category-group > button .ui-icon { width: 19px; height: 19px; }
.rules-category-children { display: grid; gap: 2px; margin: 4px 0 10px 29px; padding-left: 12px; border-left: 1px solid var(--border); }
.rules-category-children a { padding: 7px 8px; border-radius: 6px; color: var(--muted); font-size: 12.5px; line-height: 1.42; }
.rules-category-children a:hover { background: rgba(255,255,255,.03); color: var(--text); }
.rules-article-region { min-width: 0; padding-block: 52px 90px; }
.rules-document { width: 100%; }
.rules-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; color: var(--muted); font-size: 11px; }
.rules-breadcrumb .ui-icon { width: 16px; height: 16px; color: var(--gold); }
.rules-breadcrumb strong { color: var(--text); }
.rules-document-heading { margin-bottom: 42px; padding-bottom: 34px; border-bottom: 1px solid var(--border); }
.rules-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 22px; }
.rules-document-heading h1 { margin: 0 0 18px; font-size: clamp(36px, 5vw, 58px); letter-spacing: -.035em; }
.rules-document-intro { display: grid; gap: 10px; }
.rules-document-intro .lead, .rules-search-results .lead { max-width: 760px; margin: 0; color: #bbb8b0; font-size: 15px; line-height: 1.72; white-space: pre-line; }
.rules-copy-button { min-height: 38px; flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; padding: 0 12px; border: 1px solid var(--border); border-radius: 9px; background: rgba(255,255,255,.025); color: var(--muted); font-size: 11px; font-weight: 800; }
.rules-copy-button:hover { border-color: var(--border-strong); color: var(--text); }
.rules-copy-button .ui-icon { width: 15px; height: 15px; }
.rules-language-note { margin-top: 22px; }
.rules-list { display: grid; }
.rules-entry { padding: 0 0 38px; scroll-margin-top: 96px; }
.rules-entry + .rules-entry { padding-top: 38px; border-top: 1px solid var(--border); }
.rules-entry-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 15px; }
.rules-entry-number { min-width: 32px; height: 32px; display: inline-grid; place-items: center; border: 1px solid var(--border-strong); border-radius: 8px; background: rgba(244,193,56,.07); color: var(--gold); font-size: 10px; font-weight: 900; letter-spacing: .05em; }
.rules-entry h2 { margin: 3px 0 0; font-size: clamp(19px, 2.2vw, 24px); letter-spacing: -.015em; }
.rules-entry-text { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.rules-entry-list { display: grid; gap: 9px; margin: 0; padding-left: 20px; color: var(--muted); font-size: 14px; line-height: 1.72; }
.rules-entry-list li::marker { color: var(--gold); }
.rules-entry strong { color: var(--text); }
.rules-entry-consequences { display: grid; gap: 7px; margin-top: 20px; padding: 14px 16px; border-left: 3px solid var(--gold); border-radius: 0 9px 9px 0; background: rgba(244,193,56,.055); }
.rules-entry-consequences p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.62; }
.rules-entry-consequences strong { color: var(--gold-soft); }
.rules-result-category { margin: 0 0 12px 46px; padding: 5px 8px; border: 1px solid var(--border); border-radius: 6px; background: rgba(244,193,56,.055); color: var(--gold-soft); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.rules-final { margin-top: 8px; padding: 22px; border-color: var(--border-strong); background: rgba(244,193,56,.055); }
.rules-final p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.rules-final p + p { margin-top: 10px; }
.rules-empty { min-height: 220px; display: grid; place-content: center; justify-items: center; gap: 12px; padding: 34px; border: 1px dashed var(--border); border-radius: var(--radius); color: var(--muted); text-align: center; }
.rules-empty .ui-icon { width: 28px; height: 28px; color: var(--gold); }
.rules-toc { position: sticky; top: 64px; max-height: calc(100vh - 64px); overflow: auto; padding-block: 54px; }
.rules-toc-nav, .rules-toc-search { display: grid; gap: 7px; padding-left: 16px; border-left: 1px solid var(--border); }
.rules-toc-nav > p, .rules-toc-search > p { margin: 0 0 8px; color: var(--text); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.rules-toc-nav a { padding-block: 2px; color: var(--muted); font-size: 12.5px; line-height: 1.48; }
.rules-toc-nav a:hover { color: var(--gold-soft); }
.rules-toc-search span { color: var(--muted); font-size: 11px; }

html[data-theme="light"] .rules-shell { --bg: #f6f2e9; --surface: #fffdf8; --surface-raised: #f4ecdc; --surface-soft: #e9dfcb; --border: rgba(54,45,29,.16); --border-strong: rgba(157,117,25,.42); --text: #211d16; --muted: #665f53; --gold-deep: #76520b; --gold-soft: #6f4c08; background: #f6f2e9; color: var(--text); color-scheme: light; }
html[data-theme="light"] .rules-docs-heading { background: linear-gradient(90deg, rgba(250,247,239,.97), rgba(250,247,239,.85)), url("/hero-bg.png") center 34% / cover no-repeat; }
html[data-theme="light"] .rules-docs-heading p:last-child, html[data-theme="light"] .rules-document-intro .lead, html[data-theme="light"] .rules-search-results .lead { color: #5f594e; }
html[data-theme="light"] .rules-search, html[data-theme="light"] .rules-copy-button { background: rgba(255,255,255,.55); }
html[data-theme="light"] .rules-category-group > button:hover, html[data-theme="light"] .rules-category-children a:hover { background: rgba(157,117,25,.055); }
html[data-theme="light"] .rules-entry-consequences, html[data-theme="light"] .rules-final { background: rgba(157,117,25,.07); }

/* Store — original sidebar/categories/product cards, with the secure checkout retained. */
.store-page { min-height: calc(100vh - 72px); }
.store-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); align-items: start; gap: 40px; }
.store-sidebar { position: sticky; top: 96px; display: grid; gap: 20px; }
.store-side-nav { display: grid; gap: 4px; padding: 12px; background: rgba(17,17,15,.95); }
.store-nav-link { min-height: 44px; display: flex; align-items: center; gap: 10px; padding: 10px 13px; border: 1px solid transparent; border-radius: 9px; color: var(--muted); font-size: 14px; font-weight: 750; }
.store-nav-link .ui-icon { width: 1.08em; height: 1.08em; }
.store-nav-link:hover { color: var(--text); background: rgba(255,255,255,.04); }
.store-nav-link[aria-current="page"] { border-color: var(--border-strong); background: rgba(244,193,56,.08); color: var(--gold-soft); }
.store-discord { display: grid; gap: 4px; background: rgba(17,17,15,.95); }
.store-discord .eyebrow { margin-bottom: 4px; }
.store-discord:hover { border-color: var(--border-strong); }
.store-sidebar > .card { background: rgba(17,17,15,.95); }
.store-recent { overflow: visible; }
.store-recent > .card { border: 0; background: transparent; box-shadow: none; }
.store-recent-list { display: grid; gap: 13px; }
.store-recent-item { min-width: 0; display: flex; align-items: center; gap: 10px; }
.store-recent-item .avatar { width: 36px; height: 36px; border-radius: 7px; }
.store-recent-icon { width: 36px; height: 36px; flex: 0 0 36px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 8px; color: var(--gold); background: var(--surface-soft); }
.store-recent-icon .ui-icon { width: 18px; height: 18px; }
.store-recent-item > span { min-width: 0; }
.store-recent-item strong, .store-recent-item span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.store-goal-numbers { margin: 4px 0 12px; }
.store-goal-numbers strong { font-size: 18px; }
.store-sidebar .progress { margin-bottom: 8px; }
.store-main-loading { min-height: 420px; }
.store-heading { margin-bottom: 36px; }
.store-heading .eyebrow { letter-spacing: .28em; }
.store-heading .lead { max-width: 650px; font-size: 16px; }
.store-welcome-card { position: relative; min-height: 300px; display: grid; grid-template-columns: minmax(0, 1fr) 230px; align-items: center; gap: 30px; margin: -12px 0 28px; padding: 36px; overflow: hidden; background: linear-gradient(110deg, rgba(17,17,15,.98) 35%, rgba(34,27,12,.9)); }
.store-welcome-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 84% 45%, rgba(244,193,56,.18), transparent 36%); }
.store-welcome-copy { position: relative; z-index: 1; max-width: 650px; }
.store-welcome-copy h2 { margin-bottom: 14px; font-size: clamp(24px, 3vw, 34px); }
.store-welcome-copy p { margin-bottom: 11px; font-size: 14px; }
.store-welcome-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.store-welcome-mark { position: relative; z-index: 1; display: grid; place-items: center; }
.store-welcome-mark img { width: min(100%, 190px); filter: drop-shadow(0 20px 34px rgba(0,0,0,.5)); }
.store-trust-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 0 0 30px; }
.store-trust-row > span { min-height: 54px; display: flex; align-items: center; gap: 10px; padding: 11px 13px; border: 1px solid var(--border); border-radius: 10px; background: rgba(17,17,15,.78); color: var(--muted); font-size: 11px; font-weight: 700; line-height: 1.4; }
.store-trust-icon { width: 17px; height: 17px; color: var(--gold); }
.store-category-grid { gap: 20px; }
.store-category-card { min-height: 235px; display: flex; flex-direction: column; align-items: flex-start; padding: 32px; background: rgba(17,17,15,.95); }
.store-category-icon { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--border-strong); border-radius: 10px; background: rgba(244,193,56,.08); color: var(--gold); }
.store-category-icon .ui-icon { width: 22px; height: 22px; }
.store-category-card h2 { margin: 24px 0 8px; font-size: 22px; }
.store-category-card p { margin: 0; font-size: 14px; }
.store-category-link { margin-top: auto; padding-top: 24px; color: var(--gold); font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.store-how { margin-top: 38px; }
.store-how > .eyebrow { margin-bottom: 14px; color: var(--gold-soft); }
.store-how-grid { gap: 12px; }
.store-step { min-height: 165px; padding: 22px; background: rgba(17,17,15,.78); }
.store-step-number { display: inline-grid; place-items: center; width: 34px; height: 34px; margin-bottom: 18px; border: 1px solid var(--border-strong); border-radius: 9px; color: var(--gold); font-size: 11px; font-weight: 900; }
.store-step h3 { margin-bottom: 8px; font-size: 16px; }
.store-step p { margin: 0; }
.store-products-grid { gap: 18px; align-items: stretch; }
.store-product-card { position: relative; min-height: 360px; display: flex; flex-direction: column; overflow: hidden; padding: 0; background: rgba(17,17,15,.97); }
.store-product-media { position: relative; height: 230px; overflow: hidden; background: #0d0c0a; }
.store-product-media::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(180deg, transparent, rgba(17,17,15,.92)); }
.store-product-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 24%; transition: transform 300ms ease; }
.store-product-card:hover .store-product-media img { transform: scale(1.035); }
.store-product-body { display: flex; flex: 1; flex-direction: column; padding: 22px 24px 24px; }
.store-product-card h3 { margin: 0; font-size: 19px; letter-spacing: .02em; }
.store-product-price { display: flex; align-items: baseline; gap: 8px; margin-top: 9px; }
.store-product-price .price { color: var(--text); font-size: 25px; }
.store-product-price .small { font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.perk-list { display: grid; gap: 9px; margin: 20px 0 24px; padding: 0; color: var(--muted); font-size: 12px; line-height: 1.5; list-style: none; }
.perk-list li { display: flex; align-items: flex-start; gap: 9px; }
.perk-list .perk-icon { width: 14px; height: 14px; margin-top: 2px; color: var(--gold); }
.store-service-description { flex: 1; margin: 18px 0 24px; }
.store-product-card .button { margin-top: auto; border-radius: 999px; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.button-outline-gold { border-color: var(--border-strong); background: transparent; color: var(--gold); }
.button-outline-gold:hover { border-color: var(--gold); background: rgba(244,193,56,.08); color: var(--gold-soft); }
.store-cart-button { position: fixed; z-index: 70; right: 22px; bottom: 22px; min-height: 48px; display: flex; align-items: center; gap: 10px; padding: 10px 14px 10px 18px; border: 1px solid var(--border-strong); border-radius: 999px; background: var(--gold); color: #17130a; box-shadow: var(--shadow); font-weight: 900; }
.store-cart-button strong { min-width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: #17130a; color: var(--gold); font-size: 12px; }
.cart-overlay { position: fixed; z-index: 100; inset: 0; display: flex; justify-content: flex-end; background: rgba(0,0,0,.68); backdrop-filter: blur(4px); }
.cart-drawer { width: min(100%, 440px); height: 100%; overflow-y: auto; border-left: 1px solid var(--border-strong); background: #11110f; box-shadow: -20px 0 70px rgba(0,0,0,.5); animation: drawer-in 180ms ease-out; }
.cart-drawer-header { position: sticky; z-index: 2; top: 0; display: flex; align-items: center; justify-content: space-between; min-height: 76px; padding: 18px 24px; border-bottom: 1px solid var(--border); background: rgba(17,17,15,.96); backdrop-filter: blur(12px); }
.cart-drawer-header h2 { margin: 0; font-size: 24px; }
.cart-close { width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 50%; background: transparent; color: var(--muted); font-size: 26px; line-height: 1; }
.cart-close:hover { color: var(--text); border-color: var(--border-strong); }
.cart-drawer-body { padding: 24px; }
.cart-empty { padding-top: 80px; }
.store-cart-list { gap: 10px; }
.store-cart-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 10px 14px; }
.store-cart-item-copy { min-width: 0; }
.store-cart-item-copy strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.store-cart-item-controls { display: flex; align-items: center; gap: 6px; }
.cart-quantity-button, .cart-remove-item { width: 30px; height: 30px; display: inline-grid; place-items: center; padding: 0; border: 1px solid var(--border); border-radius: 8px; background: transparent; color: var(--text); font-weight: 900; }
.cart-quantity-button:hover { border-color: var(--border-strong); color: var(--gold); }
.cart-quantity-button:disabled { cursor: not-allowed; opacity: .35; }
.cart-quantity-value { min-width: 20px; color: var(--gold-soft); font-size: 12px; font-weight: 900; text-align: center; }
.cart-remove-item { margin-left: 3px; color: var(--muted); }
.cart-remove-item:hover { border-color: rgba(255,127,121,.36); background: rgba(255,127,121,.08); color: var(--danger); }
.store-cart-item-price { grid-column: 1 / -1; font-size: 14px; }
.cart-actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.cart-coupon-field { padding-top: 4px; }
.coupon-input { text-transform: uppercase; letter-spacing: .05em; }
@keyframes drawer-in { from { transform: translateX(100%); } }

/* Store accessibility themes: explicit dark/light selection. */
html[data-theme="light"] body[data-view="store"] { background: #f3efe5; }
html[data-theme="light"] .store-shell {
  --bg: #f3efe5;
  --surface: #fffdf8;
  --surface-raised: #f4ecdc;
  --surface-soft: #e9dfcb;
  --border: rgba(54,45,29,.16);
  --border-strong: rgba(157,117,25,.42);
  --text: #211d16;
  --muted: #665f53;
  --gold-deep: #76520b;
  --gold-soft: #6f4c08;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(250,247,239,.8), rgba(243,239,229,.94)),
    url("/hero-bg.png") center 28% / cover fixed no-repeat,
    #f3efe5;
  color: var(--text);
  color-scheme: light;
}
html[data-theme="light"] .store-shell .site-header { border-bottom-color: rgba(54,45,29,.12); background: rgba(250,247,239,.9); }
html[data-theme="light"] .store-shell .nav-link:hover,
html[data-theme="light"] .store-shell .nav-link[aria-current="page"] { background: rgba(157,117,25,.1); color: #211d16; }
html[data-theme="light"] .store-shell .store-sidebar > .card,
html[data-theme="light"] .store-shell .store-side-nav,
html[data-theme="light"] .store-shell .store-discord,
html[data-theme="light"] .store-shell .store-category-card,
html[data-theme="light"] .store-shell .store-product-card,
html[data-theme="light"] .store-shell .store-trust-row > span,
html[data-theme="light"] .store-shell .store-step { background: rgba(255,253,248,.92); }
html[data-theme="light"] .store-shell .store-welcome-card { background: linear-gradient(110deg, rgba(255,253,248,.98) 35%, rgba(239,224,190,.9)); }
html[data-theme="light"] .store-shell .store-welcome-card::after { background: radial-gradient(circle at 84% 45%, rgba(157,117,25,.14), transparent 36%); }
html[data-theme="light"] .store-shell .store-nav-link:hover { background: rgba(157,117,25,.08); color: #211d16; }
html[data-theme="light"] .store-shell .store-nav-link[aria-current="page"] { background: rgba(157,117,25,.12); color: #76520b; }
html[data-theme="light"] .store-shell .store-product-price .price,
html[data-theme="light"] .store-shell .strong { color: #211d16; }
html[data-theme="light"] .store-shell .store-heading .lead { color: #5f594e; }
html[data-theme="light"] .store-shell .eyebrow,
html[data-theme="light"] .store-shell .store-category-link,
html[data-theme="light"] .store-shell .store-trust-icon { color: #76520b; }
html[data-theme="light"] .store-shell .button-outline-gold { color: #76520b; }
html[data-theme="light"] .store-shell .site-footer { background: rgba(247,242,231,.8); }
html[data-theme="light"] .store-shell .cart-drawer { background: #fffdf8; }
html[data-theme="light"] .store-shell .cart-drawer-header { background: rgba(255,253,248,.96); }
html[data-theme="light"] .store-shell .input { background: #fffdf8; color: #211d16; }
html[data-theme="light"] .store-shell .list-item { background: rgba(157,117,25,.035); }
html[data-theme="light"] .store-shell .progress,
html[data-theme="light"] .store-shell .progress::-webkit-progress-bar { background: #ded4bf; }
html[data-theme="light"] body[data-view="store"] #modal-region .modal { border-color: rgba(157,117,25,.42); background: #fffdf8; color: #211d16; }
html[data-theme="light"] body[data-view="store"] #modal-region .muted { color: #665f53; }
html[data-theme="light"] body[data-view="store"] .toast { border-color: rgba(54,45,29,.16); background: #fffdf8; color: #211d16; }

.toast-region { position: fixed; z-index: 120; right: var(--space-4); bottom: var(--space-4); display: grid; gap: var(--space-2); width: min(calc(100% - 32px), 380px); }
.toast { padding: 13px 15px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: #1b1b17; box-shadow: var(--shadow); color: var(--text); animation: toast-in 180ms ease-out; }
.toast-error { border-color: rgba(255,127,121,.4); }
@keyframes toast-in { from { transform: translateY(8px); opacity: 0; } }
.modal-backdrop { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: var(--space-4); background: rgba(0,0,0,.72); backdrop-filter: blur(5px); }
.modal { width: min(100%, 480px); padding: var(--space-6); border: 1px solid var(--border-strong); border-radius: var(--radius); background: var(--surface-raised); box-shadow: var(--shadow); }
.modal-actions { display: flex; justify-content: flex-end; gap: var(--space-3); margin-top: var(--space-5); }

.site-footer { padding: var(--space-7) 0; border-top: 1px solid var(--border); color: var(--muted); font-size: 13px; }
.footer-inner { display: flex; justify-content: space-between; gap: var(--space-4); }

@media (max-width: 1180px) {
  .rules-content { grid-template-columns: 270px minmax(0, 820px); }
  .rules-toc { display: none; }
}

@media (min-width: 941px) {
  .home-original-header-inner { display: grid; grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr); }
  .home-original-nav { justify-self: center; margin-left: 0; }
  .home-original-header-actions { justify-self: end; }
}

@media (max-width: 940px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vote-original-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .main-nav { display: none; position: absolute; top: 72px; right: 16px; left: 16px; padding: var(--space-3); border: 1px solid var(--border); border-radius: var(--radius); background: #11110f; box-shadow: var(--shadow); }
  .main-nav[data-open="true"] { display: grid; }
  html[data-theme="light"] .store-shell .main-nav { background: rgba(255,253,248,.98); }
  .button.menu-button { display: inline-flex; }
  .header-actions .desktop-only { display: none; }
  .header-logout { width: 40px; padding: 0; }
  .header-logout-label { display: none; }
  .store-layout { grid-template-columns: 1fr; }
  .store-sidebar { position: static; grid-template-columns: repeat(3, minmax(0,1fr)); }
  .store-side-nav { grid-column: 1 / -1; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .store-nav-link { justify-content: center; }
  .store-products-grid.grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .store-trust-row { grid-template-columns: 1fr; }
  .store-welcome-card { grid-template-columns: minmax(0, 1fr) 170px; }
  .home-original-nav { display: none; position: absolute; top: 64px; right: 16px; left: 16px; margin: 0; padding: 13px; border: 1px solid var(--border); border-radius: 14px; background: rgba(12,12,11,.98); box-shadow: var(--shadow); }
  .home-original-nav[data-open="true"] { display: grid; gap: 4px; }
  .home-original-nav-link { padding: 10px 12px; border-radius: 8px; }
  .home-original-nav-link:hover, .home-original-nav-link[aria-current="page"] { background: rgba(244,193,56,.07); }
  html[data-theme="light"] .home-original-nav { background: rgba(255,253,248,.98); }
  html[data-theme="light"] .home-original-nav-link:hover,
  html[data-theme="light"] .home-original-nav-link[aria-current="page"] { background: rgba(157,117,25,.09); }
  .home-original-menu { display: inline-grid; place-items: center; }
  .home-original-logout { width: 40px; height: 40px; padding: 0; }
  .home-original-logout-label { display: none; }
  .home-original-hero-inner { width: min(calc(100% - 32px), var(--max)); display: flex; align-items: center; }
  .home-original-hero-copy { width: min(76%, 710px); }
  .home-original-hero-visual { position: absolute; inset: 0; pointer-events: none; }
  .home-original-hero-logo { inset: auto; right: -14%; bottom: 6%; width: min(64vw, 590px); height: auto; opacity: .3; }
  .home-original-hero-background { background: none; }
  .vote-original-hero-content { width: min(calc(100% - 32px), var(--max)); display: flex; align-items: center; }
  .vote-original-hero-copy { width: min(76%, 710px); }
  .vote-original-hero-visual { position: absolute; inset: 0; min-height: 0; pointer-events: none; }
  .vote-original-hero-logo { inset: auto; right: -14%; bottom: 6%; width: min(64vw, 590px); height: auto; opacity: .3; }
  .home-original-footer-inner { padding: 36px 0 24px; }
  .home-faq-layout { grid-template-columns: 230px minmax(0, 1fr); gap: 32px; }
  .rules-page { padding-inline: 20px; }
  .rules-content { grid-template-columns: 240px minmax(0, 1fr); column-gap: 28px; }
  .rules-sidebar { padding-right: 16px; }
}

@media (max-width: 640px) {
  :root { --space-7: 36px; --space-8: 48px; }
  .container { width: min(calc(100% - 24px), var(--max)); }
  .brand-word { display: none; }
  .hero { min-height: 570px; background-position: 58% 28%; }
  .hero-content { padding: 72px 0 104px; }
  .hero-actions .button { width: 100%; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .spread { align-items: flex-start; flex-direction: column; }
  .footer-inner { flex-direction: column; }
  .modal { padding: var(--space-5); }
  body { background-attachment: scroll; }
  .vote-original-hero { min-height: clamp(600px, 86svh, 680px); }
  .vote-original-hero-content { min-height: clamp(600px, 86svh, 680px); padding-top: 92px; padding-bottom: 54px; }
  .vote-original-hero-copy { width: 100%; }
  .vote-original-hero h1 { font-size: clamp(48px, 15vw, 66px); }
  .vote-original-kicker { letter-spacing: .22em; line-height: 1.6; }
  .vote-original-subtitle { font-size: 16px; line-height: 1.65; }
  .vote-original-hero-logo { right: -32%; bottom: 4%; width: 92vw; opacity: .18; }
  .vote-original-list { margin-top: -30px; }
  .vote-original-grid { grid-template-columns: 1fr; }
  .vote-original-card-body { min-height: 215px; }
  .store-sidebar { grid-template-columns: 1fr; }
  .store-side-nav { grid-column: auto; grid-template-columns: 1fr; }
  .store-nav-link { justify-content: flex-start; }
  .store-products-grid.grid-3 { grid-template-columns: 1fr; }
  .store-category-card { min-height: 210px; padding: 24px; }
  .store-welcome-card { min-height: 0; grid-template-columns: 1fr; padding: 26px 22px; }
  .store-welcome-mark { display: none; }
  .store-welcome-actions .button { width: 100%; }
  .store-product-media { height: 280px; }
  .cart-actions { grid-template-columns: 1fr; }
  .store-cart-button { right: 14px; bottom: 14px; }
  .header-inner { gap: 10px; }
  .header-actions { gap: 7px; margin-left: auto; }
  .header-preferences { gap: 5px; }
  .home-original-brand > span { display: none; }
  .home-original-header-inner { gap: 10px; }
  .home-original-header-actions { gap: 7px; margin-left: auto; }
  .home-original-preferences { gap: 5px; }
  .home-original-header-actions .home-original-account-secondary { display: none; }
  .home-original-header-actions .home-original-account:not(.home-original-account-secondary) { width: 40px; min-height: 40px; justify-content: center; padding: 0; }
  .home-original-header-actions .home-original-account:not(.home-original-account-secondary) .ui-icon { margin: 0; }
  .home-original-header-actions .home-original-account:not(.home-original-account-secondary) .home-account-label { display: none; }
  .home-original-hero { min-height: clamp(600px, 86svh, 680px); }
  .home-original-hero-inner { min-height: clamp(600px, 86svh, 680px); padding-top: 92px; padding-bottom: 54px; }
  .home-original-hero-copy { width: 100%; transform: none; }
  .home-original-hero h1 { font-size: clamp(48px, 15vw, 66px); }
  .home-original-kicker { letter-spacing: .22em; line-height: 1.6; }
  .home-original-lead { font-size: 16px; line-height: 1.65; }
  .home-original-actions > * { width: 100%; }
  .home-copy-wrap .home-original-primary { width: 100%; }
  .home-original-hero-logo { right: -32%; bottom: 4%; width: 92vw; opacity: .18; }
  .home-destination-card { min-height: 250px; }
  .home-information-grid { grid-template-columns: 1fr; }
  .home-information-card { padding: 23px 20px; }
  .home-faq-layout { grid-template-columns: 1fr; gap: 28px; }
  .home-faq-heading { position: static; }
  .home-faq-item summary { min-height: 62px; }
  .home-faq-item > p { margin-right: 0; }
  .home-original-footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas: "brand" "tagline" "nav" "socials" "copyright";
    justify-items: start;
    gap: 16px;
    text-align: left;
  }
  .home-original-footer-nav { justify-content: flex-start; gap: 14px; }
  .home-original-socials { flex-wrap: wrap; justify-self: start; justify-content: flex-start; }
  .rules-main { padding-top: 64px; }
  .rules-docs-heading { padding: 38px 0 30px; }
  .rules-docs-heading h1 { font-size: clamp(32px, 10vw, 44px); }
  .rules-docs-heading p:last-child { font-size: 14px; }
  .rules-page { padding-inline: 12px; }
  .rules-content { display: block; }
  .rules-sidebar { position: static; max-height: none; overflow: visible; padding: 24px 0 20px; border-right: 0; border-bottom: 1px solid var(--border); }
  .rules-sidebar-brand { display: none; }
  .rules-search { margin-inline: 0; }
  .rules-category-nav { display: flex; overflow-x: auto; gap: 8px; padding-bottom: 3px; scrollbar-width: none; scroll-snap-type: x proximity; }
  .rules-category-nav::-webkit-scrollbar { display: none; }
  .rules-category-group { flex: 0 0 auto; }
  .rules-category-group > button { width: auto; white-space: nowrap; border: 1px solid var(--border); scroll-snap-align: start; }
  .rules-category-children { display: none; }
  .rules-article-region { padding-block: 34px 64px; }
  .rules-title-row { display: block; }
  .rules-copy-button { margin-bottom: 18px; }
  .rules-document-heading { margin-bottom: 30px; padding-bottom: 28px; }
  .rules-document-heading h1 { font-size: clamp(31px, 10vw, 42px); }
  .rules-entry { padding-bottom: 30px; }
  .rules-entry + .rules-entry { padding-top: 30px; }
  .rules-entry-header { gap: 12px; }
  .rules-entry-list { padding-left: 18px; }
  .rules-loading { grid-template-columns: 1fr; padding-block: 28px 64px; }
  .rules-sidebar-skeleton { min-height: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .home-copy-feedback[data-visible="true"] { opacity: 1; transform: translate(-50%, 0) scale(1); animation: none !important; }
}
