
:root {
  --void: #090706;
  --ink: #f3ebe3;
  --mute: #b5a89a;
  --ice: #e8c9a8;
  --ice-bright: #f7e6d2;
  --copper: #c45c3e;
  --copper-bright: #e07a58;
  --line: rgba(196, 92, 62, 0.22);
  --panel: rgba(18, 12, 10, 0.78);
  --panel-strong: rgba(22, 14, 12, 0.9);
  --ok: #8fbf8a;
  --danger: #e07a7a;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--void);
  font-family: var(--font-figtree), system-ui, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
.font-display {
  font-family: var(--font-fraunces), Georgia, serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 2px;
}

html.launcher-embed .site-header,
html.launcher-embed footer.mt-auto,
html.launcher-embed .sky,
html.launcher-embed canvas {
  display: none !important;
}

html.launcher-embed body {
  background: #090706;
}

html.launcher-embed main {
  min-height: 100vh;
}

.sky {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 520px at 72% -8%, rgba(196, 92, 62, 0.22), transparent 58%),
    radial-gradient(800px 420px at 8% 18%, rgba(212, 165, 116, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(9, 7, 6, 0.45) 0%, rgba(9, 7, 6, 0.82) 55%, var(--void) 100%),
    url("/assets/backgrounds/bg-sky-void.webp") center / cover no-repeat,
    linear-gradient(180deg, #1a100c 0%, var(--void) 52%);
}

.sky::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* —— Hero aurora —— */
.hero-plane {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  min-height: min(92vh, 880px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-aurora__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0.78;
  transform: scale(1.02);
  animation: hero-photo-breathe 28s ease-in-out infinite alternate;
  filter: saturate(1.05) contrast(1.05);
}

.hero-aurora__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: aurora-drift 18s ease-in-out infinite alternate;
}

.hero-aurora__blob--ice {
  width: min(70vw, 720px);
  height: min(70vw, 720px);
  top: -18%;
  right: -8%;
  background: radial-gradient(circle, rgba(232, 201, 168, 0.45), transparent 68%);
}

.hero-aurora__blob--copper {
  width: min(50vw, 480px);
  height: min(50vw, 480px);
  bottom: 5%;
  left: -10%;
  background: radial-gradient(circle, rgba(196, 92, 62, 0.38), transparent 70%);
  animation-delay: -6s;
  animation-duration: 22s;
}

.hero-aurora__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(9, 7, 6, 0.78) 0%, rgba(9, 7, 6, 0.22) 48%, rgba(9, 7, 6, 0.5) 100%),
    linear-gradient(180deg, rgba(9, 7, 6, 0.4) 0%, transparent 30%),
    radial-gradient(ellipse 80% 55% at 30% 45%, transparent 20%, rgba(9, 7, 6, 0.35) 100%);
}

.hero-aurora__horizon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52%;
  background: linear-gradient(to top, var(--void), rgba(9, 7, 6, 0.65) 35%, transparent);
}

@keyframes aurora-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-3%, 4%) scale(1.06);
  }
}

@keyframes hero-photo-breathe {
  from {
    transform: scale(1.02) translateY(0);
  }
  to {
    transform: scale(1.06) translateY(-1.2%);
  }
}

.hero-title {
  background: linear-gradient(135deg, #f7e6d2 0%, var(--ice-bright) 28%, var(--ice) 58%, #c45c3e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 42px rgba(196, 92, 62, 0.28));
}

.hero-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(232, 201, 168, 0.22);
  color: var(--ice);
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-shadow: 0 0 28px rgba(232, 201, 168, 0.25);
}

.panel {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(232, 201, 168, 0.04), transparent 28%),
    var(--panel);
  backdrop-filter: blur(12px);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.panel:hover,
.panel-lift:hover {
  border-color: rgba(232, 201, 168, 0.35);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.panel-lift:hover {
  background: var(--panel-strong);
  transform: translateY(-2px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.7rem 1.45rem;
  border: 1px solid #e8c9a0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(180deg, #e8bc88, #b56d2e);
  color: #1a120a;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow:
    0 1px 0 rgba(255, 230, 200, 0.35) inset,
    0 10px 28px rgba(181, 109, 46, 0.28);
  transition: filter 0.15s ease, transform 0.15s ease, opacity 0.15s ease, box-shadow 0.2s ease;
}

.btn:hover:not(:disabled) {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 230, 200, 0.4) inset,
    0 16px 36px rgba(181, 109, 46, 0.42);
}

.btn:active:not(:disabled) {
  transform: translateY(1px);
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  filter: none;
  box-shadow: none;
}

.btn-ghost {
  background: rgba(232, 201, 168, 0.04);
  color: var(--ice);
  border-color: var(--line);
  box-shadow: none;
}

.btn-ghost:hover:not(:disabled) {
  background: rgba(232, 201, 168, 0.1);
  border-color: rgba(232, 201, 168, 0.35);
  filter: none;
  box-shadow: none;
}

.btn-small {
  min-height: 36px;
  padding: 0.35rem 0.85rem;
  font-size: 0.82rem;
  box-shadow: none;
}

.kicker {
  margin: 0 0 0.55rem;
  color: var(--copper-bright);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  text-shadow: 0 0 20px rgba(208, 138, 74, 0.2);
}

.input {
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line);
  background: rgba(7, 9, 15, 0.7);
  color: var(--ink);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input:focus {
  outline: none;
  border-color: rgba(232, 201, 168, 0.45);
  box-shadow: 0 0 0 3px rgba(232, 201, 168, 0.12);
}

textarea.input {
  min-height: 7.5rem;
  resize: vertical;
  line-height: 1.6;
}

.input[aria-invalid="true"] {
  border-color: var(--danger);
}

.label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--mute);
  font-size: 0.85rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.table tbody tr {
  transition: background 0.15s ease;
}

.table tbody tr:hover {
  background: rgba(232, 201, 168, 0.04);
}

.table th {
  color: var(--mute);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.5rem;
  border: 1px solid var(--line);
  color: var(--ice);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-copper {
  color: var(--copper);
  border-color: rgba(208, 138, 74, 0.4);
}

.badge-ok {
  color: var(--ok);
  border-color: rgba(125, 206, 160, 0.4);
}

.badge-hot {
  color: var(--danger);
  border-color: rgba(224, 122, 122, 0.45);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  color: var(--mute);
  font-size: 0.85rem;
  background: rgba(7, 9, 15, 0.25);
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.chip:hover {
  color: var(--ice);
  border-color: rgba(232, 201, 168, 0.4);
  background: rgba(232, 201, 168, 0.06);
  transform: translateY(-1px);
}

.chip-icon svg {
  color: var(--ice);
  flex-shrink: 0;
}

.icon-tile {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  margin-bottom: 0.9rem;
  color: var(--ice-bright);
  background:
    radial-gradient(circle at 30% 25%, rgba(220, 233, 255, 0.28), transparent 55%),
    linear-gradient(160deg, rgba(28, 40, 64, 0.95), rgba(8, 12, 22, 0.98));
  border: 1px solid rgba(232, 201, 168, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(220, 233, 255, 0.2),
    inset 0 -8px 16px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(7, 9, 15, 0.65),
    0 8px 20px rgba(0, 0, 0, 0.28);
  transition: color 0.2s ease, box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.icon-tile::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(232, 201, 168, 0.16);
  pointer-events: none;
}

.icon-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(220, 233, 255, 0.55), transparent) top left / 28% 1px no-repeat,
    linear-gradient(180deg, rgba(220, 233, 255, 0.55), transparent) top left / 1px 28% no-repeat,
    linear-gradient(270deg, rgba(208, 138, 74, 0.5), transparent) bottom right / 28% 1px no-repeat,
    linear-gradient(0deg, rgba(208, 138, 74, 0.5), transparent) bottom right / 1px 28% no-repeat;
  opacity: 0.9;
}

.icon-tile > * {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.45));
}

.icon-tile--copper {
  color: var(--copper-bright);
  border-color: rgba(208, 138, 74, 0.5);
  background:
    radial-gradient(circle at 30% 25%, rgba(228, 176, 122, 0.28), transparent 55%),
    linear-gradient(160deg, rgba(42, 28, 16, 0.95), rgba(10, 8, 6, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(228, 176, 122, 0.22),
    inset 0 -8px 16px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(7, 9, 15, 0.65),
    0 8px 20px rgba(0, 0, 0, 0.28);
}

.icon-tile--copper::before {
  border-color: rgba(208, 138, 74, 0.22);
}

article:hover > .icon-tile,
.portal-card:hover .icon-tile,
.rules-list li:hover .icon-tile,
.path-list li:hover .icon-tile {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(232, 201, 168, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(220, 233, 255, 0.28),
    inset 0 -8px 16px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(7, 9, 15, 0.65),
    0 0 28px rgba(232, 201, 168, 0.22),
    0 12px 24px rgba(0, 0, 0, 0.35);
}

.chip-active {
  color: var(--ice);
  border-color: rgba(232, 201, 168, 0.45);
  background: rgba(232, 201, 168, 0.1);
}

.facts-strip {
  display: grid;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(232, 201, 168, 0.05), transparent 40%),
    linear-gradient(180deg, rgba(12, 18, 32, 0.96), rgba(8, 12, 22, 0.98));
}

.facts-strip article {
  position: relative;
  padding: 1.55rem 1.15rem;
  border-right: 1px solid var(--line);
  transition: background 0.25s ease;
}

.facts-strip article::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.facts-strip .icon-tile {
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.65rem;
}

.facts-strip article:last-child {
  border-right: 0;
}

.facts-strip article:hover {
  background: rgba(232, 201, 168, 0.05);
}

.facts-strip article:hover::before {
  opacity: 1;
}

.facts-strip b {
  display: block;
  font-family: var(--font-fraunces), Georgia, serif;
  color: var(--ice-bright);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.facts-strip span {
  color: var(--mute);
  font-size: 0.84rem;
}

@media (max-width: 639px) {
  .facts-strip {
    grid-template-columns: 1fr 1fr;
  }
  .facts-strip article:nth-child(2n) {
    border-right: 0;
  }
  .facts-strip article {
    border-bottom: 1px solid var(--line);
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .facts-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .facts-strip {
    grid-template-columns: repeat(6, 1fr);
  }
}

.section-block {
  padding: 5.75rem 0;
}

.section-tint {
  position: relative;
  isolation: isolate;
  background: rgba(13, 18, 30, 0.72);
  border-block: 1px solid var(--line);
}

.section-tint::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(700px 240px at 50% 0%, rgba(232, 201, 168, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(7, 9, 15, 0.84), rgba(7, 9, 15, 0.9)),
    url("/assets/backgrounds/bg-freya-frost.webp") center / cover no-repeat;
  opacity: 0.9;
  pointer-events: none;
}

.section-head {
  position: relative;
  max-width: 720px;
  margin: 0 0 2.6rem;
  padding-bottom: 1.15rem;
}

.section-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(7rem, 40%);
  height: 2px;
  background: linear-gradient(90deg, var(--copper), transparent);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.95rem, 4vw, 3.15rem);
  color: var(--ice-bright);
  text-shadow: 0 0 40px rgba(232, 201, 168, 0.12);
}

.section-head p:last-child {
  margin-top: 0.8rem;
  color: var(--mute);
  font-size: 1.05rem;
  max-width: 52ch;
}

.page-hero__glow {
  pointer-events: none;
  position: absolute;
  inset: -2rem -8% auto auto;
  width: min(420px, 70vw);
  height: 220px;
  border-radius: 50%;
  opacity: 0.55;
  filter: blur(40px);
  background:
    radial-gradient(circle, rgba(232, 201, 168, 0.3), transparent 70%),
    url("/assets/backgrounds/bg-sky-void.webp") center / cover;
  mask-image: radial-gradient(circle, black 20%, transparent 72%);
}

.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

@media (min-width: 768px) {
  .compare {
    grid-template-columns: 1fr 1fr;
  }
}

.compare article,
.world-grid article,
.split-3 article,
.races-grid article,
.rates-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(232, 201, 168, 0.045), transparent 36%),
    var(--panel);
  padding: 1.5rem 1.35rem;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.compare article::after,
.world-grid article::after,
.split-3 article::after,
.races-grid article::after,
.rates-grid article::after,
.path-list li::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 201, 168, 0.45), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.compare article:hover,
.world-grid article:hover,
.split-3 article:hover,
.races-grid article:hover,
.path-list li:hover,
.rates-grid article:hover {
  border-color: rgba(232, 201, 168, 0.36);
  background:
    linear-gradient(180deg, rgba(232, 201, 168, 0.07), transparent 40%),
    var(--panel-strong);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.compare article:hover::after,
.world-grid article:hover::after,
.split-3 article:hover::after,
.races-grid article:hover::after,
.rates-grid article:hover::after,
.path-list li:hover::after {
  opacity: 1;
}

.compare article:first-child {
  border-top: 2px solid rgba(232, 201, 168, 0.35);
}

.compare article:last-child {
  border-top: 2px solid rgba(208, 138, 74, 0.4);
}

.compare ul {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  color: var(--mute);
}

.note {
  margin-top: 1.35rem;
  padding: 1.15rem 1.3rem;
  border-left: 3px solid var(--copper);
  background:
    linear-gradient(90deg, rgba(208, 138, 74, 0.14), rgba(208, 138, 74, 0.03) 55%, transparent),
    rgba(12, 16, 24, 0.35);
  color: var(--mute);
  box-shadow: inset 0 1px 0 rgba(208, 138, 74, 0.08);
}

.rules-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rules-list li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0.35rem 1.5rem 0;
  border-top: 1px solid var(--line);
  transition: background 0.25s ease, padding-left 0.25s ease;
}

.rules-list li:hover {
  background: linear-gradient(90deg, rgba(232, 201, 168, 0.055), transparent 70%);
  padding-left: 0.45rem;
}

.rules-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

.rules-mark .icon-tile {
  margin-bottom: 0;
}

.rules-list span {
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: 1.05rem;
  color: var(--copper-bright);
}

.path-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 900px) {
  .path-list {
    grid-template-columns: 1fr 1fr;
  }
}

.path-list li {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.45rem;
  padding: 1.35rem 1.35rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(232, 201, 168, 0.04), transparent 40%),
    var(--panel);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.path-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.path-head .icon-tile {
  margin-bottom: 0;
  width: 2.2rem;
  height: 2.2rem;
}

.path-list time {
  color: var(--copper-bright);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.35rem;
}

.rates-grid,
.world-grid,
.races-grid,
.split-3 {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 640px) {
  .rates-grid,
  .world-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .rates-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .races-grid,
  .split-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rates-grid article b {
  display: block;
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: 1.65rem;
  color: var(--ice-bright);
}

.rates-grid article p {
  margin: 0.45rem 0 0;
  color: var(--mute);
  font-size: 0.95rem;
}

.races-grid span {
  display: block;
  margin-top: 0.15rem;
  color: var(--copper-bright);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.races-grid .icon-tile {
  width: 3rem;
  height: 3rem;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line), transparent);
}

@media (min-width: 640px) {
  .timeline::before {
    left: 168px;
  }
}

.timeline li {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem 0 1.35rem 1.1rem;
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 1.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 12px rgba(208, 138, 74, 0.55);
}

@media (min-width: 640px) {
  .timeline li {
    grid-template-columns: 160px 1fr;
    gap: 1.6rem;
    padding-left: 0;
  }
  .timeline li::before {
    left: 165px;
  }
}

.timeline time {
  color: var(--copper-bright);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.timeline-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
}

.timeline-title .icon-tile {
  margin-bottom: 0;
  width: 2rem;
  height: 2rem;
}

.timeline-title h3 {
  margin: 0;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 1.1rem 0.15rem;
  transition: background 0.2s ease;
}

.faq details:hover {
  background: linear-gradient(90deg, rgba(232, 201, 168, 0.03), transparent);
}

.faq summary {
  cursor: pointer;
  color: var(--ice-bright);
  font-weight: 600;
  list-style: none;
  padding-right: 1.5rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  margin-right: -1.5rem;
  color: var(--copper-bright);
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0.8rem 0 0.15rem;
  color: var(--mute);
  max-width: 52ch;
  line-height: 1.65;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
  color: var(--mute);
}

.breadcrumb a:hover {
  color: var(--ice);
}

.countdown-grid {
  display: grid;
  max-width: 30rem;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
  margin-top: 2.15rem;
}

.countdown-cell {
  position: relative;
  overflow: hidden;
  padding: 1.1rem 0.35rem 0.95rem;
  text-align: center;
  border: 1px solid rgba(232, 201, 168, 0.22);
  background:
    linear-gradient(180deg, rgba(232, 201, 168, 0.1), transparent 45%),
    linear-gradient(180deg, rgba(18, 26, 44, 0.9), rgba(10, 14, 24, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(232, 201, 168, 0.12),
    0 10px 28px rgba(0, 0, 0, 0.22);
  clip-path: polygon(6% 0, 94% 0, 100% 8%, 100% 92%, 94% 100%, 6% 100%, 0 92%, 0 8%);
}

.countdown-cell::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--copper-bright), transparent);
}

.countdown-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(232, 201, 168, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: cell-sheen 4.5s ease-in-out infinite;
}

.countdown-cell b {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  color: var(--ice-bright);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 24px rgba(232, 201, 168, 0.25);
}

.countdown-cell span {
  position: relative;
  z-index: 1;
  color: var(--mute);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@keyframes cell-sheen {
  0%,
  60% {
    transform: translateX(-100%);
  }
  80%,
  100% {
    transform: translateX(100%);
  }
}

.portal-card {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 1.45rem 1.3rem 1.35rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(232, 201, 168, 0.06), transparent 42%),
    var(--panel);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.portal-card .icon-tile {
  margin-bottom: 0.9rem;
}

.portal-card .flex > .icon-tile,
.portal-card .flex .icon-tile {
  margin-bottom: 0;
}

.portal-card::after {
  content: "→";
  position: absolute;
  right: 1.15rem;
  bottom: 1.15rem;
  color: var(--copper-bright);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-size: 1.05rem;
}

.portal-card:hover {
  border-color: rgba(232, 201, 168, 0.42);
  background:
    linear-gradient(160deg, rgba(232, 201, 168, 0.1), transparent 45%),
    var(--panel-strong);
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.portal-card:hover .icon-tile {
  color: var(--ice-bright);
}

.portal-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.portal-card h3 {
  color: var(--ice-bright);
  padding-right: 1.5rem;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fade-up-delay {
  animation: fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both;
}

.fade-up-delay-2 {
  animation: fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  background: rgba(9, 7, 6, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(232, 201, 168, 0.28);
  background: rgba(7, 9, 15, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ice);
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-shadow: 0 0 18px rgba(232, 201, 168, 0.28);
}

svg.icon {
  display: block;
  flex-shrink: 0;
}

.nav-link {
  position: relative;
  padding: 0.4rem 0 0.5rem;
  color: var(--mute);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  transition: color 0.15s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--ice-bright);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link.is-active::after,
.nav-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-link-cta {
  color: var(--copper-bright);
}

@media (max-width: 1023px) {
  .nav-link {
    padding: 0.7rem 0.15rem;
    font-size: 0.95rem;
  }

  .nav-link::after {
    display: none;
  }
}

.start-plan {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}

@media (min-width: 900px) {
  .start-plan {
    grid-template-columns: repeat(3, 1fr);
  }
}

.start-plan article {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 1.55rem 1.4rem 1.45rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(208, 138, 74, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(232, 201, 168, 0.04), transparent 50%),
    var(--panel);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.start-plan article::before {
  content: "";
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), transparent);
}

.start-plan li:hover article {
  border-color: rgba(208, 138, 74, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.start-plan li:hover .icon-tile {
  transform: translateY(-2px) scale(1.04);
}

.start-plan__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.start-plan__head .icon-tile {
  margin-bottom: 0;
}

.start-plan__num {
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: 1.65rem;
  color: var(--copper-bright);
  letter-spacing: 0.08em;
}

.start-plan__when {
  margin: 0 0 0.45rem;
  color: var(--copper-bright);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.start-plan h3 {
  margin: 0;
  color: var(--ice-bright);
  font-size: 1.35rem;
}

.start-plan article > p:last-child {
  margin: 0.7rem 0 0;
  color: var(--mute);
  font-size: 0.95rem;
  line-height: 1.6;
}

.empty-state .icon-tile {
  margin-left: auto;
  margin-right: auto;
}

.countdown .kicker {
  margin-bottom: 0.75rem;
}

.form-shell {
  position: relative;
  overflow: hidden;
}

.form-shell::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), transparent);
}

.stat-card {
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), transparent);
  opacity: 0.85;
}

.stat-card .icon-tile {
  margin-bottom: 0.55rem;
}

.login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.login-row:last-child {
  border-bottom: 0;
}

.login-row b {
  font-family: var(--font-fraunces), Georgia, serif;
  color: var(--ice-bright);
  letter-spacing: 0.04em;
}

.site-footer {
  position: relative;
  background:
    linear-gradient(180deg, rgba(232, 201, 168, 0.03), transparent 40%),
    transparent;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(208, 138, 74, 0.45), transparent);
}

.rank {
  display: inline-flex;
  width: 1.85rem;
  height: 1.85rem;
  align-items: center;
  justify-content: center;
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: 0.95rem;
  color: var(--mute);
}

.rank-1 {
  color: #e6be60;
  text-shadow: 0 0 14px rgba(230, 190, 96, 0.5);
}

.rank-2 {
  color: var(--ice-bright);
  text-shadow: 0 0 12px rgba(232, 201, 168, 0.35);
}

.rank-3 {
  color: var(--copper-bright);
  text-shadow: 0 0 12px rgba(208, 138, 74, 0.4);
}

.product-card,
.lot-card,
.topic-row,
.forum-post,
.castle-card {
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover,
.lot-card:hover,
.topic-row:hover,
.castle-card:hover {
  border-color: rgba(232, 201, 168, 0.38);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.product-card .icon-tile,
.lot-card .icon-tile,
.topic-row .icon-tile,
.forum-post .icon-tile {
  margin-bottom: 0;
}

.product-price {
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: 1.35rem;
  color: var(--copper-bright);
}

.lot-grid {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 700px) {
  .lot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.lot-card {
  padding: 1.25rem 1.3rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(232, 201, 168, 0.045), transparent 40%),
    var(--panel);
}

.lot-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.lot-card h3 {
  margin: 0;
  color: var(--ice-bright);
  font-size: 1.15rem;
}

.lot-card p {
  margin: 0;
  color: var(--mute);
  font-size: 0.88rem;
}

.avatar {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232, 201, 168, 0.32);
  background: linear-gradient(160deg, rgba(28, 40, 64, 0.95), rgba(8, 12, 22, 0.98));
  color: var(--ice-bright);
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.forum-post {
  padding: 1.35rem 1.35rem 1.25rem;
}

.forum-post header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.castle-card .castle-shot {
  overflow: hidden;
}

.castle-card img {
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.castle-card:hover img {
  transform: scale(1.06);
  opacity: 1;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

::selection {
  background: rgba(208, 138, 74, 0.38);
  color: var(--ice-bright);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--void);
}

::-webkit-scrollbar-thumb {
  background: #243044;
  border: 2px solid var(--void);
}

::-webkit-scrollbar-thumb:hover {
  background: #31405a;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-up,
  .fade-up-delay,
  .fade-up-delay-2,
  .hero-aurora__blob,
  .hero-aurora__photo,
  .countdown-cell::after {
    animation: none !important;
  }

  .btn,
  .panel,
  .portal-card,
  .chip,
  .icon-tile {
    transition: none;
  }

  .panel-lift:hover,
  .portal-card:hover,
  .compare article:hover,
  .world-grid article:hover,
  .split-3 article:hover,
  .races-grid article:hover,
  .rates-grid article:hover,
  .path-list li:hover,
  .chip:hover,
  .start-plan li:hover article,
  .product-card:hover,
  .lot-card:hover,
  .topic-row:hover,
  .castle-card:hover {
    transform: none;
  }

  .castle-card:hover img {
    transform: none;
  }
}

/* layout utilities used by PHP templates */
.wrap { width: min(72rem, calc(100% - 12vw)); margin-inline: auto; }
@media (min-width: 1024px) { .wrap { width: min(72rem, calc(100% - 3rem)); } }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-auto { margin-top: auto; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.py-3 { padding-block: .75rem; }
.py-8 { padding-block: 2rem; }
.py-12 { padding-block: 3rem; }
.py-16 { padding-block: 4rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-20 { padding-bottom: 5rem; }
.min-h-screen { min-height: 100vh; }
.grid { display: grid; gap: 1rem; }
.grid-2 { display: grid; gap: 1rem; }
.grid-3 { display: grid; gap: 1rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .lg-col-2 { grid-column: span 2; }
}
.text-mute { color: var(--mute); }
.text-ice { color: var(--ice); }
.text-sm { font-size: .9rem; }
.text-xs { font-size: .78rem; }
.text-lg { font-size: 1.15rem; }
.text-xl { font-size: 1.35rem; }
.text-3xl { font-size: 1.85rem; }
.hero-title { font-size: clamp(2.6rem, 8vw, 5.4rem); line-height: 1.05; margin: 0; max-width: 18ch; }
.lead { max-width: 42rem; font-size: 1.15rem; color: var(--mute); }
.space-y li + li { margin-top: .5rem; }
.err { color: var(--danger); font-size: .9rem; }
.ok { color: var(--ok); }
.sticky-head { position: sticky; top: 0; z-index: 30; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.rel { position: relative; }
.hero-inner { position: relative; z-index: 1; }
ul.plain { list-style: none; margin: 0; padding: 0; }
.site-footer a:hover { color: var(--ice); }
.nav-toggle { display: inline-flex; }
.site-nav { display: none; }
.site-nav.is-open {
  display: flex; flex-direction: column; gap: .35rem;
  position: absolute; top: 100%; left: 0; right: 0;
  padding: 1rem; background: rgba(9, 7, 6, 0.96); border-bottom: 1px solid var(--line);
}
.nav-auth { display: flex; margin-top: .75rem; }
.auth-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-toggle { display: none !important; }
  .site-nav, .site-nav.is-open {
    display: flex; flex-direction: row; align-items: center; gap: 1.25rem;
    position: static; padding: 0; background: transparent; border: 0;
  }
  .nav-auth { display: none !important; }
  .auth-desktop { display: flex; }
}
.rates-grid { display: grid; gap: .9rem; }
@media (min-width: 700px) { .rates-grid { grid-template-columns: repeat(3, 1fr); } }

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.off-chip {
  display: none;
  padding: 0.18rem 0.55rem;
  border: 1px solid rgba(232, 201, 168, 0.32);
  color: var(--copper-bright);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  background: rgba(196, 92, 62, 0.12);
}
@media (min-width: 720px) {
  .off-chip { display: inline-flex; }
}

.online-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--line);
  background: rgba(9, 7, 6, 0.55);
  backdrop-filter: blur(10px);
  color: var(--ice);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}
.online-pill b {
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: 1.15rem;
  color: var(--ice-bright);
}
.online-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--mute);
  box-shadow: 0 0 0 4px rgba(181, 168, 154, 0.12);
}
.online-dot.is-live {
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(143, 191, 138, 0.18);
  animation: pulse-live 2.2s ease-out infinite;
}
@keyframes pulse-live {
  0% { box-shadow: 0 0 0 0 rgba(143, 191, 138, 0.45); }
  100% { box-shadow: 0 0 0 10px rgba(143, 191, 138, 0); }
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(900px 280px at 88% -10%, rgba(196, 92, 62, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(9, 7, 6, 0.2), rgba(9, 7, 6, 0.55));
}
.page-hero__title {
  margin: 0.2rem 0 0;
  font-size: clamp(2rem, 5vw, 3.35rem);
  color: var(--ice-bright);
  text-shadow: 0 0 40px rgba(232, 201, 168, 0.16);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head--center::after {
  left: 50%;
  transform: translateX(-50%);
}
.portal-grid {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) { .portal-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .portal-grid { grid-template-columns: repeat(4, 1fr); } }
.justify-center { justify-content: center; }
.text-center { text-align: center; }
.overflow-hidden { overflow: hidden; }
.stat-card .icon-tile { margin-bottom: 0.75rem; }
.castle-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .castle-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .castle-grid { grid-template-columns: repeat(3, 1fr); } }
.castle-card {
  border: 1px solid var(--line);
  background: var(--panel);
}
.castle-shot {
  aspect-ratio: 16 / 9;
  background: #120e0c;
}
.castle-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  display: block;
}
.empty-state {
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.empty-state p { color: var(--mute); margin: 0.75rem auto 0; max-width: 42ch; }

.text-2xl { font-size: 1.55rem; }
.mb-4 { margin-bottom: 1rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.mt-10 { margin-top: 2.5rem; }

.header-inner { flex-wrap: wrap; }
.site-search { flex: 1 1 11rem; max-width: 18rem; min-width: 8rem; }
.site-search__input {
  width: 100%;
  height: 2.15rem;
  padding: 0 0.75rem;
  border: 1px solid var(--line);
  background: rgba(9, 7, 6, 0.55);
  color: var(--ice);
  font: inherit;
}
.site-search__input::placeholder { color: var(--mute); }
.footer-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}
.filter-bar .input { max-width: 16rem; }
.live-grid {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 800px) {
  .live-grid { grid-template-columns: repeat(4, 1fr); }
}
.rank-mini { list-style: none; margin: 0; padding: 0; }
.rank-mini li {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ice);
  font-size: 0.92rem;
}
.rank-mini b { color: var(--copper-bright); width: 1.2rem; }
.rank-mini span { margin-left: auto; color: var(--mute); }
.countdown-card .countdown-num {
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--ice-bright);
  margin: 0.6rem 0 0;
}
.quick-links { list-style: none; margin: 0; padding: 0; }
.quick-links li + li { margin-top: 0.55rem; }
.quick-links a {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  color: var(--ice);
}
.raid-map {
  position: relative;
  min-height: 22rem;
  background:
    radial-gradient(800px 240px at 50% 0%, rgba(196, 92, 62, 0.18), transparent 55%),
    linear-gradient(180deg, #14100e, #0b0908);
  overflow: hidden;
}
.raid-pin {
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--copper-bright);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(196, 92, 62, 0.25);
}
.raid-pin.is-alive { background: var(--ok); box-shadow: 0 0 0 4px rgba(143, 191, 138, 0.28); }
.raid-map__cap {
  position: absolute;
  left: 1rem;
  bottom: 0.8rem;
  color: var(--mute);
  font-size: 0.8rem;
}
.media-grid {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 700px) { .media-grid { grid-template-columns: 1fr 1fr 1fr; } }
.media-grid img { width: 100%; height: 10rem; object-fit: cover; display: block; }
.changelog { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.search-hits { list-style: none; margin: 0; padding: 0; }
.search-hits li + li { border-top: 1px solid var(--line); }
.search-hits a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  padding: 0.75rem 0;
  color: var(--ice);
}
@media (max-width: 899px) {
  .site-search { order: 5; flex: 1 1 100%; max-width: none; }
}
