:root {
  color-scheme: dark;
  --bg: #030714;
  --bg-2: #07112d;
  --panel: rgba(7, 17, 45, 0.78);
  --panel-strong: rgba(8, 23, 61, 0.94);
  --line: rgba(80, 218, 255, 0.34);
  --line-hot: rgba(198, 90, 255, 0.58);
  --text: #f4f8ff;
  --muted: #a8bad5;
  --cyan: #3fe7ff;
  --blue: #2478ff;
  --violet: #9a57ff;
  --pink: #ff5df4;
  --gold: #ffd36b;
  --green: #42e6a4;
  --shadow: 0 0 28px rgba(63, 231, 255, 0.28), 0 0 60px rgba(154, 87, 255, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 12%, rgba(63, 231, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 78% 0%, rgba(255, 93, 244, 0.15), transparent 26rem),
    linear-gradient(180deg, #02040d 0%, var(--bg) 46%, #05091b 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(63, 231, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 231, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 30;
  transform: translateY(-180%);
  padding: 0.7rem 1rem;
  background: var(--cyan);
  color: #001229;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  left: 50%;
  top: 16px;
  z-index: 20;
  display: grid;
  width: min(calc(100% - 32px), 1180px);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  transform: translateX(-50%);
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(63, 231, 255, 0.28);
  border-radius: 8px;
  background: rgba(3, 7, 20, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 16px rgba(63, 231, 255, 0.42);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(0.4rem, 2vw, 1.45rem);
  color: #d6e7ff;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  padding: 0.45rem 0.2rem;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--cyan);
}

.header-cta,
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(63, 231, 255, 0.46);
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.header-cta {
  padding: 0.55rem 1rem;
  background: linear-gradient(135deg, rgba(37, 120, 255, 0.85), rgba(255, 93, 244, 0.75));
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: end;
  padding: 112px 20px 44px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 4, 13, 0.88) 0%, rgba(2, 4, 13, 0.44) 47%, rgba(2, 4, 13, 0.78) 100%),
    linear-gradient(180deg, rgba(2, 4, 13, 0.32) 0%, rgba(2, 4, 13, 0.12) 58%, rgba(2, 4, 13, 0.92) 100%);
}

.hero-content {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(2.55rem, 7vw, 6.7rem);
  line-height: 0.95;
  overflow-wrap: anywhere;
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(63, 231, 255, 0.5), 0 0 52px rgba(255, 93, 244, 0.28);
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 1.45rem;
  color: #dceaff;
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn {
  padding: 0.85rem 1.15rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--violet) 56%, var(--pink));
  color: #fff;
  box-shadow: 0 0 24px rgba(63, 231, 255, 0.36);
}

.btn-ghost {
  background: rgba(4, 12, 32, 0.62);
  color: #e9f4ff;
}

.hero-stats {
  display: grid;
  width: min(100%, 680px);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  border: 1px solid rgba(63, 231, 255, 0.28);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(63, 231, 255, 0.18);
}

.hero-stats div {
  padding: 0.9rem;
  background: rgba(4, 12, 32, 0.74);
}

.hero-stats dt {
  color: var(--cyan);
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  font-weight: 950;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ticker {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  padding: 0.8rem 1rem;
  border-block: 1px solid rgba(63, 231, 255, 0.22);
  background: rgba(2, 6, 19, 0.92);
  white-space: nowrap;
}

.ticker span {
  min-width: max-content;
  color: #cce7ff;
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  animation: drift 18s linear infinite;
}

@keyframes drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-132px);
  }
}

.section,
.visual-band,
.showcase,
.brand-strip {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(1rem, 5vw, 4rem);
  align-items: center;
}

.section-copy p,
.section-heading p,
.visual-copy p,
.showcase-panel p,
.reward-copy p,
.brand-strip p {
  color: var(--muted);
}

.signal-grid,
.game-grid,
.payment-grid,
.reward-steps {
  display: grid;
  gap: 1rem;
}

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

.signal-grid article,
.game-card,
.payment-grid article,
.reward-steps article,
.faq-list details {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(9, 26, 68, 0.82), rgba(3, 9, 28, 0.72));
  box-shadow: 0 0 24px rgba(36, 120, 255, 0.13);
}

.signal-grid article {
  min-height: 172px;
  padding: 1.15rem;
}

.signal-grid strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--cyan);
  font-size: 1.75rem;
  text-transform: uppercase;
}

.signal-grid span {
  color: var(--muted);
}

.visual-band,
.reward-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.visual-frame,
.reward-art,
.showcase figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(63, 231, 255, 0.36);
  border-radius: 8px;
  background: #050b1f;
  box-shadow: var(--shadow);
}

.visual-frame img,
.reward-art img,
.showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-frame {
  aspect-ratio: 16 / 9;
}

.feature-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding-left: 1.5rem;
  color: #d8e9ff;
  position: relative;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: ">";
  font-weight: 900;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

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

.game-card {
  min-height: 260px;
  padding: 1.25rem;
  overflow: hidden;
}

.game-card::after {
  position: absolute;
  right: -48px;
  bottom: -52px;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(255, 211, 107, 0.28);
  border-radius: 999px;
  content: "";
  box-shadow: inset 0 0 32px rgba(255, 211, 107, 0.2), 0 0 28px rgba(255, 93, 244, 0.18);
}

.game-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  border: 1px solid var(--line-hot);
  border-radius: 8px;
  color: var(--gold);
  font-weight: 950;
}

.game-card p,
.payment-grid p,
.reward-steps p,
.faq-list p {
  color: var(--muted);
}

.showcase {
  display: grid;
  grid-template-columns: minmax(420px, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  padding: 1rem 0 clamp(4rem, 7vw, 6rem);
}

.showcase figure {
  aspect-ratio: 16 / 9;
}

.showcase-panel {
  padding: clamp(1rem, 2vw, 1.5rem) 0;
}

.text-link {
  display: inline-flex;
  margin-top: 0.5rem;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.reward-section {
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
}

.reward-art {
  aspect-ratio: 16 / 9;
}

.reward-steps {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.4rem;
}

.reward-steps article {
  padding: 1rem;
}

.reward-steps span {
  display: block;
  color: var(--cyan);
  font-weight: 950;
  text-transform: uppercase;
}

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

.payment-grid article {
  min-height: 210px;
  padding: 1.25rem;
}

.brand-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(1rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2.5rem, 6vw, 4rem);
  border: 1px solid rgba(63, 231, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 17, 45, 0.92), rgba(13, 11, 36, 0.86)),
    radial-gradient(circle at 88% 14%, rgba(255, 211, 107, 0.18), transparent 18rem);
  box-shadow: var(--shadow);
}

.brand-strip img {
  border-radius: 8px;
  box-shadow: 0 0 28px rgba(63, 231, 255, 0.28);
}

.faq-section {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  padding: 1rem 1.2rem;
}

.faq-list summary {
  cursor: pointer;
  color: #eff7ff;
  font-weight: 900;
}

.faq-list summary::marker {
  color: var(--cyan);
}

.faq-list p {
  margin: 0.7rem 0 0;
}

.site-footer {
  display: grid;
  width: min(calc(100% - 32px), var(--max));
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin: 0 auto 1rem;
  padding: 1.1rem;
  border: 1px solid rgba(63, 231, 255, 0.25);
  border-radius: 8px;
  background: rgba(3, 7, 20, 0.9);
}

.site-footer div {
  display: grid;
  grid-template-columns: 42px auto;
  column-gap: 0.7rem;
  align-items: center;
}

.site-footer img {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}

.site-footer strong {
  line-height: 1;
}

.site-footer span,
.site-footer p,
.site-footer a {
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  font-size: 0.86rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
  font-size: 0.86rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .nav-toggle {
    position: absolute;
    right: 0.7rem;
    top: 50%;
    display: inline-grid;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-items: center;
    justify-self: end;
    transform: translateY(-50%);
    border: 1px solid rgba(63, 231, 255, 0.42);
    border-radius: 8px;
    background: #081b46;
    box-shadow: inset 0 0 12px rgba(63, 231, 255, 0.16);
  }

  .nav-toggle::before {
    display: block;
    width: 22px;
    height: 16px;
    background:
      linear-gradient(var(--cyan), var(--cyan)) 0 0 / 22px 2px no-repeat,
      linear-gradient(var(--cyan), var(--cyan)) 0 7px / 22px 2px no-repeat,
      linear-gradient(var(--cyan), var(--cyan)) 0 14px / 22px 2px no-repeat;
    content: "";
    filter: drop-shadow(0 0 8px rgba(63, 231, 255, 0.9));
  }

  .nav-toggle span {
    display: none;
    grid-area: 1 / 1;
    width: 20px;
    height: 2px;
    background: var(--cyan);
    box-shadow: 0 0 10px rgba(63, 231, 255, 0.82);
  }

  .nav-toggle span:first-child {
    transform: translateY(-5px);
  }

  .nav-toggle span:last-child {
    transform: translateY(5px);
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 0.3rem;
    justify-content: stretch;
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 0.75rem;
    border: 1px solid rgba(63, 231, 255, 0.18);
    border-radius: 8px;
    background: rgba(3, 7, 20, 0.72);
  }

  .header-cta {
    display: none;
  }

  .intro-grid,
  .visual-band,
  .showcase,
  .reward-section,
  .brand-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .visual-band,
  .reward-section {
    width: min(calc(100% - 32px), var(--max));
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 660px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), 1180px);
    grid-template-columns: 1fr;
  }

  .brand span {
    font-size: 0.9rem;
  }

  .nav-toggle {
    display: none !important;
  }

  .nav-links {
    display: flex;
    grid-column: 1;
    gap: 0.35rem;
    overflow-x: auto;
    padding-bottom: 0.1rem;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    min-width: max-content;
    padding: 0.45rem 0.62rem;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 92svh;
    padding: 138px 14px 30px;
  }

  h1 {
    margin-bottom: 0.75rem;
    max-width: calc(100vw - 28px);
    font-size: clamp(1.5rem, 7.7vw, 1.85rem);
    line-height: 1.08;
  }

  .hero-copy {
    max-width: calc(100vw - 28px);
    font-size: 0.98rem;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  .hero-bg {
    object-position: 56% center;
  }

  .hero-actions,
  .hero-stats,
  .signal-grid,
  .game-grid,
  .payment-grid,
  .reward-steps {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-stats div {
    padding: 0.75rem;
  }

  .section,
  .visual-band,
  .showcase,
  .reward-section {
    width: min(calc(100% - 24px), var(--max));
  }

  .section {
    padding: 3.3rem 0;
  }

  .visual-frame,
  .reward-art,
  .showcase figure {
    aspect-ratio: 4 / 3;
  }

  .brand-strip {
    width: min(calc(100% - 24px), var(--max));
    padding: 1rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
