:root {
  --bg: #091012;
  --bg-2: #0f1a1d;
  --bg-3: #142328;
  --surface: rgba(15, 24, 27, 0.82);
  --surface-2: rgba(22, 35, 40, 0.92);
  --line: rgba(255, 216, 90, 0.18);
  --line-strong: rgba(255, 216, 90, 0.34);
  --text: #f7f1df;
  --muted: #c4c6bf;
  --gold: #f4d35e;
  --gold-2: #ffd86f;
  --teal: #47e5c2;
  --teal-2: #5cf2ff;
  --accent: #ff8f2b;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
  --topline-h: 0px;
  --font-ui: "Segoe UI", sans-serif;
  --fs-body: 14px;
  --fs-h1: 32px;
  --fs-heading: 24px;
  --fs-label: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: var(--fs-body);
  line-height: 1.7;
  background:
    radial-gradient(circle at top left, rgba(71, 229, 194, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 216, 90, 0.08), transparent 20%),
    linear-gradient(180deg, #071012 0%, #0d171a 52%, #111d20 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.topline {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 11, 13, 0.84);
  backdrop-filter: blur(18px);
}

.topline__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 12px 0;
}

.topline__group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold);
  font-size: var(--fs-label);
  font-weight: 600;
}

.status-chip__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  box-shadow: 0 0 16px rgba(71, 229, 194, 0.6);
  animation: pulseDot 2.2s ease-in-out infinite;
}

.rating-strip {
  display: inline-flex;
  gap: 8px;
}

.rating-strip span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #fff2a4);
  box-shadow: 0 0 12px rgba(244, 211, 94, 0.55);
  animation: ratingBlink 2.8s ease-in-out infinite;
}

.rating-strip span:nth-child(2) {
  animation-delay: 0.18s;
}

.rating-strip span:nth-child(3) {
  animation-delay: 0.36s;
}

.rating-strip span:nth-child(4) {
  animation-delay: 0.54s;
}

.rating-strip span:nth-child(5) {
  animation-delay: 0.72s;
}

.topline__copy {
  color: var(--muted);
  font-size: var(--fs-body);
  text-align: center;
  max-width: 480px;
  justify-self: center;
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 18px;
  border: 1px solid rgba(92, 242, 255, 0.4);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  font-size: var(--fs-body);
  font-weight: 600;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: inset 0 0 0 1px rgba(92, 242, 255, 0.08), 0 0 18px rgba(92, 242, 255, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.ghost-link::after {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -30%;
  width: 38%;
  transform: skewX(-22deg) translateX(-240%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  animation: shineSweep 5.4s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

.ghost-link:hover {
  transform: translateY(-2px);
  border-color: rgba(92, 242, 255, 0.7);
  background: rgba(92, 242, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(92, 242, 255, 0.14), 0 0 24px rgba(92, 242, 255, 0.16);
}

.site-header {
  position: sticky;
  top: 67px;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(7, 13, 15, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.wordmark__badge {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255, 216, 90, 0.22), rgba(71, 229, 194, 0.15));
  border: 1px solid rgba(255, 216, 90, 0.32);
  color: var(--gold);
  font-family: var(--font-ui);
  font-weight: 800;
}

.wordmark__text strong {
  display: block;
  font-size: 22px;
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.wordmark__text span {
  display: block;
  color: var(--muted);
  font-size: var(--fs-label);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 1.1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: 10px;
}

.site-header__tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.locale-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.locale-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: var(--fs-body);
  font-weight: 700;
  transition: 0.2s ease;
}

.locale-option:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.locale-option.is-active {
  color: #111;
  background: linear-gradient(135deg, rgba(255, 216, 90, 0.92), rgba(255, 239, 133, 0.96));
  box-shadow: 0 10px 24px rgba(244, 211, 94, 0.18);
}

.locale-option__flag {
  width: 24px;
  height: 18px;
  border-radius: 4px;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.locale-option__flag svg {
  display: block;
  width: 100%;
  height: 100%;
}

.locale-option__label {
  white-space: nowrap;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  min-width: 0;
}

.site-nav__list a,
.cta-pill {
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: var(--fs-body);
  font-weight: 600;
  transition: 0.2s ease;
}

.site-nav__list a {
  color: #e5dfce;
  position: relative;
  overflow: hidden;
}

.site-nav__list a:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
}

.site-nav__list a.is-active {
  background: linear-gradient(135deg, rgba(255, 216, 90, 0.2), rgba(255, 143, 43, 0.14));
  border: 1px solid rgba(255, 216, 90, 0.28);
  color: var(--gold);
}

.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 216, 90, 0.24);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta-pill--primary {
  background: linear-gradient(135deg, var(--gold), #fff06d);
  color: #121212;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(244, 211, 94, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.cta-pill--secondary {
  white-space: nowrap;
}

.cta-pill--primary::after,
.btn--primary::after {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -30%;
  width: 38%;
  transform: skewX(-22deg) translateX(-240%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  animation: shineSweep 4.8s ease-in-out infinite;
  pointer-events: none;
}

.cta-pill--primary:hover {
  box-shadow: 0 18px 36px rgba(244, 211, 94, 0.26), inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.cta-pill--secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.hero {
  padding: 20px 0 112px;
}

.hero__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.84fr);
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(10, 18, 20, 0.96), rgba(15, 26, 29, 0.92)),
    radial-gradient(circle at top right, rgba(255, 216, 90, 0.15), transparent 32%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero__text {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--fs-label);
  font-weight: 700;
}

.hero h1 {
  margin: 16px 0 12px;
  font-family: var(--font-ui);
  font-size: var(--fs-h1);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.02;
  max-width: 12ch;
  text-wrap: balance;
}

.hero__lead {
  margin: 0;
  max-width: 40ch;
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 1.58;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.badge-row span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
  color: #efe9d9;
  font-size: var(--fs-label);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 176px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 18px;
  border: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  font-size: var(--fs-body);
  font-weight: 700;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), #fff06d);
  color: #111;
  box-shadow: 0 18px 38px rgba(244, 211, 94, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 0 24px rgba(244, 211, 94, 0.12);
  font-weight: 700;
}

.btn--secondary {
  color: var(--text);
  background: linear-gradient(135deg, rgba(71, 229, 194, 0.16), rgba(92, 242, 255, 0.12));
  border: 1px solid rgba(92, 242, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(92, 242, 255, 0.08);
}

.btn--primary:hover {
  box-shadow: 0 22px 42px rgba(244, 211, 94, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 0 28px rgba(244, 211, 94, 0.18);
}

.btn--secondary:hover {
  box-shadow: 0 14px 30px rgba(71, 229, 194, 0.16), inset 0 0 0 1px rgba(92, 242, 255, 0.12);
}

.spotlight {
  position: relative;
  min-height: 100%;
  display: grid;
  gap: 12px;
}

.spotlight__frame {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.spotlight__frame::after {
  content: none;
}

.spotlight__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 16px rgba(71, 229, 194, 0.6);
  }
  50% {
    transform: scale(1.18);
    box-shadow: 0 0 22px rgba(71, 229, 194, 0.8);
  }
}

@keyframes ratingBlink {
  0%, 100% {
    opacity: 0.6;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-1px);
  }
}

@keyframes shineSweep {
  0%, 18% {
    transform: skewX(-22deg) translateX(-240%);
  }
  34%, 100% {
    transform: skewX(-22deg) translateX(420%);
  }
}

.spotlight__copy,
.spotlight__points {
  display: none;
}

.ribbon {
  padding: 8px 0 22px;
}

.ribbon__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(148px, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.ribbon__track::-webkit-scrollbar {
  height: 8px;
}

.ribbon__track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.ribbon__tile {
  position: relative;
  min-height: 88px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ribbon__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
}

.ribbon__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.control-panel {
  padding: 0 0 26px;
}

.control-panel__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.control-panel h2,
.control-panel p {
  margin: 0;
}

.control-panel h2 {
  font-size: var(--fs-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.control-panel p {
  color: var(--muted);
  margin-top: 8px;
  font-size: var(--fs-body);
  line-height: 1.75;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.filter-row a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: var(--fs-body);
  font-weight: 600;
  transition: 0.2s ease;
}

.filter-row a.is-active,
.filter-row a:hover {
  color: #111;
  background: linear-gradient(135deg, var(--gold), #fff08c);
  border-color: rgba(255, 216, 90, 0.42);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric-card {
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.metric-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 216, 90, 0.18);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.metric-card strong {
  display: block;
  color: var(--gold);
  font-size: var(--fs-heading);
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 1.65;
  margin-top: 8px;
}

.lobby {
  padding: 4px 0 30px;
}

.signal-board {
  padding: 0 0 26px;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.signal-card {
  position: relative;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.signal-card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(92, 242, 255, 0.9), rgba(244, 211, 94, 0.9));
  opacity: 0.65;
}

.signal-card:hover,
.signal-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(255, 216, 90, 0.18);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.18);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03));
}

.signal-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: var(--fs-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.signal-card__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  box-shadow: 0 0 12px rgba(71, 229, 194, 0.5);
}

.signal-card h3 {
  margin: 14px 0 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.signal-card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 1.65;
}

.lobby-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.game-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.18);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 216, 90, 0.24);
  box-shadow: 0 30px 42px rgba(0, 0, 0, 0.24), 0 0 24px rgba(244, 211, 94, 0.08);
}

.game-card.is-hidden {
  display: none;
}

.game-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.game-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 56%;
  background: linear-gradient(180deg, transparent, rgba(5, 7, 8, 0.96));
}

.game-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.game-card__body {
  position: absolute;
  inset: auto 12px 12px 12px;
  z-index: 1;
}

.game-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: var(--gold);
  font-size: var(--fs-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.game-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.game-card p {
  margin: 0 0 14px;
  color: #d5d0c0;
  font-size: var(--fs-body);
  line-height: 1.7;
}

.game-card__action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 216, 90, 0.18), rgba(255, 143, 43, 0.16));
  border: 1px solid rgba(255, 216, 90, 0.20);
  font-size: 13px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.payments {
  padding: 0 0 30px;
}

.payments__shell {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.payments__shell h2,
.payments__shell p {
  margin: 0;
}

.payments__shell p {
  margin-top: 8px;
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 1.75;
}

.payments__shell h2 {
  font-size: var(--fs-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.payments__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.payment-chip {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 14px;
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.payment-chip:hover {
  transform: translateY(-4px);
  border-color: rgba(92, 242, 255, 0.24);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.16);
}

.payment-chip img {
  max-height: 32px;
  width: auto;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.trust-chip img {
  width: 22px;
  height: 22px;
}

.text-stack {
  padding: 0 0 32px;
}

.text-stack__head {
  display: block;
  margin-bottom: 18px;
}

.text-stack__head h2,
.text-stack__head p {
  margin: 0;
}

.text-stack__head p {
  margin-top: 10px;
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 1.75;
  max-width: none;
}

.text-stack__head h2 {
  font-size: var(--fs-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.editorial-card {
  padding: 24px 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.editorial-card:hover {
  border-color: rgba(255, 216, 90, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.editorial-card--wide {
  grid-column: 1 / -1;
}

.editorial-card h3 {
  margin: 0 0 16px;
  font-family: var(--font-ui);
  font-size: var(--fs-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  max-width: none;
}

.editorial-card p {
  margin: 0;
  max-width: none;
  color: #dbd6c6;
  font-size: var(--fs-body);
  line-height: 1.75;
}

.editorial-card p + p {
  margin-top: 14px;
}

.faq {
  padding: 0 0 112px;
}

.faq h2 {
  margin: 0 0 18px;
  font-family: var(--font-ui);
  font-size: var(--fs-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}

.faq-item {
  padding: 0 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(255, 216, 90, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
  font-weight: 700;
  font-size: var(--fs-body);
  line-height: 1.5;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 1.8;
}

.site-footer {
  padding: 0 0 108px;
}

.site-footer__shell {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
}

.site-footer__grid p {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 58ch;
  font-size: var(--fs-body);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
  justify-content: flex-end;
}

.footer-links a {
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: var(--fs-body);
  font-weight: 600;
}

.tiny {
  font-size: var(--fs-label);
}

.sticky-bar {
  position: fixed;
  left: 50%;
  width: min(calc(100% - 32px), var(--container));
  transform: translateX(-50%);
  bottom: 12px;
  z-index: 45;
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: 22px;
  background: rgba(5, 9, 11, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.sticky-bar a {
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 700;
  font-size: var(--fs-body);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-bar a::after {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -30%;
  width: 38%;
  transform: skewX(-22deg) translateX(-240%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  animation: shineSweep 5.2s ease-in-out infinite;
  pointer-events: none;
}

.sticky-bar a:hover {
  transform: translateY(-2px);
}

.sticky-bar__primary {
  background: linear-gradient(135deg, var(--gold), #fff06d);
  color: #111;
}

.sticky-bar__secondary {
  background: linear-gradient(135deg, rgba(92, 242, 255, 0.18), rgba(71, 229, 194, 0.14));
}

.sticky-bar__tertiary {
  background: linear-gradient(135deg, rgba(255, 143, 43, 0.2), rgba(255, 216, 90, 0.14));
}

.launch-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(2, 6, 7, 0.82);
  backdrop-filter: blur(18px);
}

.launch-modal.is-open {
  display: flex;
}

.launch-card {
  width: min(100%, 520px);
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(10, 17, 20, 0.97), rgba(17, 30, 34, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.launch-card__media {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.launch-card__thumb {
  aspect-ratio: 0.86 / 1;
  border-radius: 20px;
  overflow: hidden;
}

.launch-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.launch-card h2 {
  margin: 0 0 8px;
  font-family: var(--font-ui);
  font-size: var(--fs-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.launch-card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 1.75;
}

.progress {
  margin-top: 18px;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.progress > span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transition: width 0.14s linear;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  color: var(--muted);
  font-size: var(--fs-body);
}

.register-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.register-card {
  width: min(100%, 620px);
  padding: 30px;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(9, 15, 17, 0.97), rgba(15, 27, 31, 0.94)),
    radial-gradient(circle at top right, rgba(255, 216, 90, 0.14), transparent 28%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.register-card h1 {
  margin: 18px 0 12px;
  font-family: var(--font-ui);
  font-size: var(--fs-h1);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.register-card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 1.8;
}

.register-card__block + .register-card__block {
  margin-top: 24px;
}

.register-card__source {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.register-card__source strong {
  color: var(--gold);
}

.register-card__offer {
  margin-top: 18px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 216, 90, 0.10), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 216, 90, 0.18);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18), 0 0 22px rgba(255, 216, 90, 0.08);
}

.register-card__offer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: var(--fs-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.register-card__offer h2 {
  margin: 0 0 8px;
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.register-card__offer p {
  margin: 0;
}

.register-card__microcopy {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.age-gate {
  display: none;
  margin-top: 24px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.age-gate.is-visible {
  display: block;
}

.age-gate h2 {
  margin: 0 0 10px;
  font-family: var(--font-ui);
  font-size: var(--fs-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.age-gate p {
  margin: 0 0 22px;
}

.register-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.register-links .btn {
  min-width: 0;
  flex: 1 1 220px;
}

.register-links .btn--primary {
  box-shadow: 0 18px 34px rgba(255, 216, 90, 0.18), 0 0 24px rgba(255, 216, 90, 0.12);
}

.center-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--muted);
  font-size: var(--fs-body);
}

.register-warning {
  margin-top: 18px;
  color: var(--muted);
  font-size: var(--fs-label);
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .hero__shell,
  .control-panel__shell,
  .text-stack__head {
    grid-template-columns: 1fr;
  }

  .lobby-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payments__row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 77px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }

  .site-header__tools {
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 24px;
    background: rgba(6, 12, 14, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav__actions {
    gap: 8px;
  }

  .hero h1 {
    max-width: none;
  }

  .spotlight__points,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .topline__copy {
    display: none;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topline__group,
  .site-header__inner,
  .hero__actions,
  .trust-row,
  .sticky-bar,
  .register-links {
    flex-direction: column;
  }

  .topline__inner {
    grid-template-columns: 1fr;
  }

  .site-header__tools {
    width: 100%;
    justify-content: space-between;
  }

  .locale-switcher {
    width: auto;
  }

  .locale-option {
    min-height: 38px;
    padding: 8px 10px;
  }

  .locale-option__label {
    font-size: 12px;
  }

  .sticky-bar {
    left: 50%;
    width: calc(100% - 20px);
    bottom: 10px;
  }

  .ribbon__track {
    grid-auto-columns: 132px;
  }

  .lobby-grid,
  .payments__row {
    grid-template-columns: 1fr;
  }

  .launch-card__media {
    grid-template-columns: 1fr;
  }

  .hero__shell,
  .control-panel__shell,
  .payments__shell,
  .site-footer__shell,
  .editorial-card,
  .register-card {
    padding: 22px;
  }

  .hero h1,
  .register-card h1 {
    font-size: 30px;
  }

  .hero {
    padding-bottom: 104px;
  }
}
