:root {
  --bg: #07040f;
  --bg2: #0b0618;
  --text: #e9e4ff;
  --muted: rgba(233, 228, 255, 0.72);
  --panel: rgba(12, 6, 26, 0.68);
  --panel2: rgba(10, 5, 20, 0.52);
  --stroke: rgba(174, 98, 255, 0.22);
  --neon: #b100ff;
  --neon2: #ff2bff;
  --shadow: 0 0 18px rgba(177, 0, 255, 0.35);
  --shadow2: 0 0 40px rgba(255, 43, 255, 0.25);
  --radius: 16px;
  --radius2: 22px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 800px at 10% 10%, rgba(177, 0, 255, 0.18), transparent 60%),
    radial-gradient(1000px 800px at 90% 30%, rgba(255, 43, 255, 0.12), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
summary,
.brand,
.nav__btn,
.cta,
.chip {
  cursor: pointer;
}

::selection {
  background: rgba(177, 0, 255, 0.35);
}

#fx {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
  mix-blend-mode: screen;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(7, 4, 15, 0.75), rgba(7, 4, 15, 0.35));
  border-bottom: 1px solid rgba(174, 98, 255, 0.14);
}

.topbar__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  isolation: isolate;
}

.brand__logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(12, 6, 26, 0.65);
  border: 1px solid rgba(174, 98, 255, 0.22);
  box-shadow: 0 0 0 1px rgba(255, 43, 255, 0.08), 0 10px 30px rgba(0, 0, 0, 0.28);
}

.brand__glow {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle, #8cff8c, #1fd65b);
  box-shadow: 0 0 14px rgba(31, 214, 91, 0.5), 0 0 28px rgba(140, 255, 140, 0.3);
}

.brand__text {
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1;
  position: relative;
}

.brand__text.is-glitch::before,
.brand__text.is-glitch::after {
  content: attr(data-glitch);
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
}

.brand__text.is-glitch::before {
  transform: translate(1px, -1px);
  color: rgba(177, 0, 255, 0.9);
  text-shadow: 0 0 12px rgba(177, 0, 255, 0.55);
}

.brand__text.is-glitch::after {
  transform: translate(-1px, 1px);
  color: rgba(255, 43, 255, 0.85);
  text-shadow: 0 0 12px rgba(255, 43, 255, 0.45);
  mix-blend-mode: screen;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(174, 98, 255, 0.22);
  background: linear-gradient(180deg, rgba(12, 6, 26, 0.8), rgba(10, 5, 20, 0.45));
  color: rgba(233, 228, 255, 0.9);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.25px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease,
    background 160ms ease, color 160ms ease;
  box-shadow: none;
  will-change: transform;
}

.nav__btn::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(120px 40px at 50% 0%, rgba(255, 43, 255, 0.4), transparent 70%);
  opacity: 0;
  transition: opacity 160ms ease;
  pointer-events: none;
}

.nav__btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 43, 255, 0.45);
  box-shadow: 0 0 0 1px rgba(255, 43, 255, 0.12), 0 12px 30px rgba(177, 0, 255, 0.18);
  color: white;
}

.nav__btn:hover::after {
  opacity: 1;
}

.nav__btn.is-active {
  border-color: rgba(255, 43, 255, 0.82);
  background: radial-gradient(150px 80px at 50% 0%, rgba(255, 43, 255, 0.82), transparent 72%),
    linear-gradient(180deg, rgba(177, 0, 255, 0.88), rgba(177, 0, 255, 0.36));
  box-shadow: 0 0 0 1px rgba(255, 43, 255, 0.2), 0 22px 56px rgba(177, 0, 255, 0.3),
    0 0 30px rgba(255, 43, 255, 0.24);
  color: #ffffff;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.16), 0 0 28px rgba(255, 43, 255, 0.28);
}

.main {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 140px);
}

.page-view {
  display: none;
}

.page-view.is-visible {
  display: block;
  animation: viewFade 220ms ease;
}

@keyframes viewFade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealUp {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

#home.is-visible .hero__intro {
  animation: revealUp 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

#home.is-visible .hero__media {
  animation: revealUp 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

#home.is-visible .hero__copy {
  animation: revealUp 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

#home.is-visible .homePanels > .card:nth-child(1),
#home.is-visible .homePanels > .card:nth-child(2),
#home.is-visible .homePanels > .card:nth-child(3),
#home.is-visible .homePanels > .card:nth-child(4),
#home.is-visible .hero__stats > .miniCard:nth-child(1),
#home.is-visible .hero__stats > .miniCard:nth-child(2),
#home.is-visible .hero__stats > .miniCard:nth-child(3),
#script.is-visible > .section__title,
#script.is-visible > .sectionLead,
#script.is-visible .gameTabs,
#payment-info.is-visible > .section__title,
#payment-info.is-visible > .grid.grid--2:first-of-type > .card:nth-child(1),
#payment-info.is-visible > .grid.grid--2:first-of-type > .card:nth-child(2),
#payment-info.is-visible > .paymentSubheading,
#payment-info.is-visible > .paymentGrid > .card:nth-child(1),
#payment-info.is-visible > .paymentGrid > .card:nth-child(2),
#payment-info.is-visible > .paymentClosing,
#buy.is-visible > .section__title,
#buy.is-visible > .grid.grid--2 > .buyCard:nth-child(1),
#buy.is-visible > .grid.grid--2 > .buyCard:nth-child(2),
#buy.is-visible > .grid.grid--2 > .buyCard:nth-child(3),
#buy.is-visible > .buyClosing {
  animation: revealUp 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

#home.is-visible .homePanels > .card:nth-child(1) {
  animation-delay: 120ms;
}

#home.is-visible .homePanels > .card:nth-child(2) {
  animation-delay: 200ms;
}

#home.is-visible .homePanels > .card:nth-child(3) {
  animation-delay: 280ms;
}

#home.is-visible .homePanels > .card:nth-child(4) {
  animation-delay: 360ms;
}

#home.is-visible .hero__stats > .miniCard:nth-child(1) {
  animation-delay: 420ms;
}

#home.is-visible .hero__stats > .miniCard:nth-child(2) {
  animation-delay: 500ms;
}

#home.is-visible .hero__stats > .miniCard:nth-child(3) {
  animation-delay: 580ms;
}

#script.is-visible > .section__title {
  animation-delay: 40ms;
}

#script.is-visible > .sectionLead {
  animation-delay: 120ms;
}

#script.is-visible .gameTabs {
  animation-delay: 200ms;
}

.gamePanel.is-active > .sectionLead {
  animation: revealUp 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 40ms;
}

.gamePanel.is-active .grid > .card:nth-child(1),
.gamePanel.is-active .grid > .card:nth-child(2),
.gamePanel.is-active .grid > .card:nth-child(3) {
  animation: revealUp 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.gamePanel.is-active .grid > .card:nth-child(1) {
  animation-delay: 120ms;
}

.gamePanel.is-active .grid > .card:nth-child(2) {
  animation-delay: 210ms;
}

.gamePanel.is-active .grid > .card:nth-child(3) {
  animation-delay: 300ms;
}

#payment-info.is-visible > .section__title {
  animation-delay: 40ms;
}

#payment-info.is-visible > .grid.grid--2:first-of-type > .card:nth-child(1) {
  animation-delay: 140ms;
}

#payment-info.is-visible > .grid.grid--2:first-of-type > .card:nth-child(2) {
  animation-delay: 240ms;
}

#payment-info.is-visible > .paymentSubheading {
  animation-delay: 340ms;
}

#payment-info.is-visible > .paymentGrid > .card:nth-child(1) {
  animation-delay: 440ms;
}

#payment-info.is-visible > .paymentGrid > .card:nth-child(2) {
  animation-delay: 540ms;
}

#payment-info.is-visible > .paymentClosing {
  animation-delay: 660ms;
}

#buy.is-visible > .section__title {
  animation-delay: 40ms;
}

#buy.is-visible > .grid.grid--2 > .buyCard:nth-child(1) {
  animation-delay: 140ms;
}

#buy.is-visible > .grid.grid--2 > .buyCard:nth-child(2) {
  animation-delay: 240ms;
}

#buy.is-visible > .grid.grid--2 > .buyCard:nth-child(3) {
  animation-delay: 340ms;
}

#buy.is-visible > .buyClosing {
  animation-delay: 520ms;
}

.hero {
  padding: 84px 0 88px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.hero__intro {
  text-align: center;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__logoWrap {
  width: min(460px, 100%);
  padding: 10px;
  border-radius: 26px;
  border: 1px solid rgba(174, 98, 255, 0.2);
  background: radial-gradient(600px 240px at 50% 20%, rgba(255, 43, 255, 0.16), transparent 62%),
    linear-gradient(180deg, rgba(12, 6, 26, 0.75), rgba(10, 5, 20, 0.45));
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(255, 43, 255, 0.08);
  transform: translateZ(0);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.hero__logoWrap:hover {
  border-color: rgba(255, 43, 255, 0.38);
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(255, 43, 255, 0.1);
}

.hero__logo {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 18px;
  filter: drop-shadow(0 0 22px rgba(177, 0, 255, 0.18));
}

.kicker {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(233, 228, 255, 0.75);
  font-size: 12px;
}

.hero__title {
  margin: 0;
  line-height: 0.98;
  font-size: clamp(38px, 6.2vw, 78px);
  letter-spacing: -0.03em;
  filter: drop-shadow(0 0 18px rgba(177, 0, 255, 0.25));
  max-width: none;
}

.hero__titleLine {
  display: block;
  color: #f7f2ff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.35), 0 0 24px rgba(255, 43, 255, 0.4),
    0 0 48px rgba(177, 0, 255, 0.42), 0 0 78px rgba(177, 0, 255, 0.25);
}

.hero__titleLine--accent {
  color: white;
  text-shadow: 0 0 16px rgba(255, 43, 255, 0.28), 0 0 38px rgba(177, 0, 255, 0.35);
}

.hero__sub {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-inline: auto;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 12px 0 4px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.miniCard {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(174, 98, 255, 0.16);
  background: linear-gradient(180deg, rgba(12, 6, 26, 0.68), rgba(10, 5, 20, 0.42));
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.24);
}

.miniCard__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(233, 228, 255, 0.62);
}

.miniCard__value {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.homePanels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.homeBottom {
  display: grid;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  padding-bottom: 28px;
  justify-items: center;
}

.homeBottom .hero__stats {
  width: 100%;
  margin-top: 0;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 48px;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.3px;
  border: 1px solid rgba(174, 98, 255, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease,
    background 160ms ease, color 160ms ease;
}

.cta:hover {
  transform: translateY(-1px);
}

.cta--primary {
  background: radial-gradient(120px 60px at 50% 0%, rgba(255, 43, 255, 0.55), transparent 70%),
    linear-gradient(180deg, rgba(177, 0, 255, 0.65), rgba(177, 0, 255, 0.25));
  border-color: rgba(255, 43, 255, 0.52);
  box-shadow: 0 14px 40px rgba(177, 0, 255, 0.18);
}

.cta--primary:hover {
  box-shadow: 0 18px 60px rgba(177, 0, 255, 0.24);
}

.cta--ghost {
  background: rgba(12, 6, 26, 0.5);
}

.cta--ghost:hover {
  border-color: rgba(255, 43, 255, 0.4);
  box-shadow: 0 16px 45px rgba(177, 0, 255, 0.16);
}

.section {
  padding: 34px 0;
  scroll-margin-top: 92px;
}

.section__title {
  margin: 0 0 12px;
  font-size: 20px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.sectionLead {
  margin-bottom: 14px;
}

.gameTabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  align-items: start;
}

.gameTab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  min-width: 220px;
  min-height: 48px;
  padding: 12px 22px;
  text-align: center;
  white-space: nowrap;
  color: #ffffff;
  font-size: 13px;
  border: 1px solid rgba(255, 43, 255, 0.35);
  background: rgba(177, 0, 255, 0.12);
  box-shadow: none;
  text-shadow: none;
}

.gameTab.is-active {
  border-color: rgba(255, 43, 255, 0.82);
  background: radial-gradient(150px 80px at 50% 0%, rgba(255, 43, 255, 0.85), transparent 72%),
    linear-gradient(180deg, rgba(177, 0, 255, 0.88), rgba(177, 0, 255, 0.4));
  box-shadow: 0 0 0 1px rgba(255, 43, 255, 0.22), 0 22px 58px rgba(177, 0, 255, 0.3),
    0 0 28px rgba(255, 43, 255, 0.24);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.18), 0 0 28px rgba(255, 43, 255, 0.32);
}

.gamePanels {
  width: 100%;
  margin-top: 16px;
}

.gamePanel {
  display: none;
}

.gamePanel.is-active {
  display: block;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#buy .grid--2 {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

#buy {
  text-align: center;
}

#buy .buyCard--flow {
  order: 1;
}

#buy .buyCard--contact {
  order: 2;
}

#buy .buyCard--assistance {
  order: 3;
}

#buy .card {
  text-align: left;
}

.buyClosing {
  max-width: 72ch;
  margin: 180px auto 18px;
  display: grid;
  gap: 18px;
  text-align: center;
}

.buyClosing .muted {
  line-height: 1.85;
}

.card {
  background: linear-gradient(180deg, rgba(12, 6, 26, 0.75), rgba(10, 5, 20, 0.45));
  border: 1px solid rgba(174, 98, 255, 0.18);
  border-radius: var(--radius2);
  padding: 16px 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.card--hover {
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease,
    background 200ms ease;
}

.card--hover:hover {
  border-color: rgba(255, 43, 255, 0.35);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.33), 0 0 0 1px rgba(255, 43, 255, 0.09);
}

.card--featured {
  border-color: rgba(255, 43, 255, 0.48);
  box-shadow: 0 22px 70px rgba(177, 0, 255, 0.15), 0 0 0 1px rgba(255, 43, 255, 0.1);
}

.card__title {
  margin: 0 0 6px;
  font-size: 16px;
}

.muted {
  margin: 0;
  color: var(--muted);
}

.chip {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 43, 255, 0.35);
  background: rgba(177, 0, 255, 0.12);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.2px;
  width: fit-content;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease,
    border-color 160ms ease;
}

.chip:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 43, 255, 0.55);
  box-shadow: 0 12px 45px rgba(177, 0, 255, 0.16);
}

.nav__btn.is-clicked,
.cta.is-clicked,
.chip.is-clicked,
.features > summary.is-clicked {
  animation: clickPulse 280ms ease-out;
}

.scriptActions {
  display: flex;
  margin-top: 12px;
  justify-content: start;
  align-items: start;
}

.scriptActions .chip {
  margin-top: 0;
}

.features__list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(233, 228, 255, 0.86);
}

.features__list li {
  margin: 6px 0;
}

.features__list--compact {
  margin-top: 8px;
}

.infoStrip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.paymentSubheading,
#payment-info > .section__title {
  text-align: center;
}

.paymentSubheading {
  margin: 104px 0 28px;
}

.paymentGrid {
  margin-top: 44px;
}

#payment-info .grid,
#payment-info .grid--2,
#payment-info .paymentGrid {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
}

#payment-info .grid--2 {
  gap: 24px;
  align-items: stretch;
}

#payment-info > .grid.grid--2:first-of-type {
  margin-top: 20px;
}

#payment-info {
  padding-bottom: 104px;
}

#payment-info .card {
  height: 100%;
}

.paymentClosing {
  max-width: 70ch;
  margin: 140px auto 12px;
  text-align: center;
  line-height: 1.85;
}

.paymentNote {
  margin-top: 0;
}

.price {
  margin: 10px 0 6px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-shadow: 0 0 20px rgba(255, 43, 255, 0.18);
}

.row {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(174, 98, 255, 0.18);
  background: rgba(12, 6, 26, 0.38);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 43, 255, 0.9), rgba(177, 0, 255, 0.6));
  box-shadow: 0 0 18px rgba(255, 43, 255, 0.35);
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}

@keyframes clickPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 43, 255, 0);
  }
  50% {
    transform: scale(0.96);
    box-shadow: 0 0 0 6px rgba(255, 43, 255, 0.12), 0 0 28px rgba(177, 0, 255, 0.22);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 43, 255, 0);
  }
}

.footer {
  position: relative;
  z-index: 1;
  padding: 34px 0 40px;
  border-top: 1px solid rgba(174, 98, 255, 0.12);
  background: linear-gradient(180deg, rgba(8, 5, 16, 0.1), rgba(8, 5, 16, 0.38));
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr;
  gap: 20px;
  padding: 18px 0;
}

.footer__title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer__copy .muted {
  max-width: 34ch;
  line-height: 1.8;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  display: inline-block;
  width: fit-content;
  padding: 2px 0;
  color: rgba(214, 160, 255, 0.96);
  text-shadow: 0 0 14px rgba(177, 0, 255, 0.2);
  transition: color 160ms ease, text-shadow 160ms ease, transform 160ms ease;
}

.footer__links a:hover {
  color: white;
  transform: translateY(-1px);
  text-shadow: 0 0 18px rgba(255, 43, 255, 0.34), 0 0 34px rgba(177, 0, 255, 0.2);
}

.footer__bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(174, 98, 255, 0.1);
}

@media (max-width: 920px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero__stats,
  .homePanels,
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .nav {
    width: auto;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 8px;
  }
  .grid,
  .grid--2 {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 46px;
  }
  .hero__copy {
    gap: 18px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .nav__btn {
    flex: 0 0 auto;
    min-width: auto;
    padding: 8px 11px;
    font-size: 11.5px;
  }
  .brand__text {
    font-size: 17px;
  }
  .brand__logo {
    width: 36px;
    height: 36px;
  }
  .hero__logoWrap {
    width: min(320px, 100%);
  }
  .cta {
    width: 100%;
    min-width: 0;
  }
  .hero__stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }
  .brand {
    gap: 10px;
  }
  .brand__text {
    font-size: 15px;
    letter-spacing: 0.5px;
  }
  .nav__btn {
    flex: 0 0 auto;
    padding: 7px 10px;
  }
  .hero {
    padding: 34px 0 28px;
  }
  .hero__title {
    font-size: clamp(32px, 10vw, 48px);
  }
  .hero__sub {
    font-size: 14px;
    line-height: 1.7;
  }
  .scriptActions {
    grid-template-columns: auto 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dot {
    animation: none;
  }
  .hero__intro,
  .hero__media,
  .hero__copy,
  .homePanels > .card,
  .hero__stats > .miniCard,
  .gameTabs,
  .gamePanel > .sectionLead,
  .gamePanel .grid > .card,
  .paymentSubheading,
  .paymentClosing,
  .buyClosing,
  #payment-info > .section__title,
  #payment-info > .grid.grid--2:first-of-type > .card,
  #payment-info > .paymentGrid > .card,
  #buy > .section__title,
  #buy > .grid.grid--2 > .buyCard {
    animation: none !important;
    filter: none !important;
  }
  .nav__btn,
  .card--hover,
  .cta,
  .chip {
    transition: none;
  }
}
