:root {
  --bg: #04070f;
  --bg-2: #07101f;
  --panel: rgba(13, 22, 38, 0.78);
  --panel-strong: rgba(18, 30, 50, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f7fbff;
  --muted: #a9b6c8;
  --green: #22ff88;
  --green-soft: rgba(34, 255, 136, 0.16);
  --gold: #ffc857;
  --gold-soft: rgba(255, 200, 87, 0.17);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 68% 18%, rgba(34, 255, 136, 0.12), transparent 28rem),
    radial-gradient(circle at 18% 8%, rgba(255, 200, 87, 0.08), transparent 25rem),
    linear-gradient(180deg, #050711 0%, #07101f 46%, #04070f 100%);
  background-size: 120% 120%, 110% 110%, 100% 100%;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  animation: ambientShift 18s ease-in-out infinite alternate;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

body::after {
  position: fixed;
  right: -5rem;
  bottom: 4rem;
  z-index: -1;
  width: min(44vw, 34rem);
  aspect-ratio: 1;
  pointer-events: none;
  background: url("Logo.png") center / contain no-repeat;
  content: "";
  filter: blur(1px) drop-shadow(0 0 34px rgba(34, 255, 136, 0.18));
  opacity: 0.035;
  transform: rotate(-10deg);
}

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

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

p {
  color: var(--muted);
}

.section-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 84px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  padding: 14px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  color: var(--text);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(34, 255, 136, 0.34);
  border-radius: 8px;
  background: rgba(4, 7, 15, 0.74);
  box-shadow: 0 0 28px rgba(34, 255, 136, 0.24);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 9, 17, 0.68);
}

.site-nav a {
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(34, 255, 136, 0.12);
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 9, 17, 0.72);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--text);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 60px;
  align-items: center;
  min-height: min(760px, calc(100vh - 150px));
  padding: 30px 0 54px;
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 9vw, 6.9rem);
  line-height: 0.92;
  font-weight: 920;
}

.page-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.98;
  font-weight: 920;
}

.hero-text {
  max-width: 590px;
  margin-bottom: 22px;
  color: #d7e3f2;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.neon-icon {
  display: block;
  width: 22px;
  height: 22px;
  overflow: visible;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
  filter: drop-shadow(0 0 8px rgba(34, 255, 136, 0.55));
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 850;
  transform: translateZ(0);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px) scale(1.025);
}

.button-primary {
  background: var(--green);
  color: #03110a;
  box-shadow: 0 0 34px rgba(34, 255, 136, 0.36), 0 12px 34px rgba(34, 255, 136, 0.16);
}

.button-primary:hover {
  box-shadow: 0 0 48px rgba(34, 255, 136, 0.5), 0 18px 42px rgba(34, 255, 136, 0.2);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.compliance-note {
  margin: 0 0 14px;
  color: #c5d0df;
  font-size: 0.95rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 650px;
  margin-bottom: 8px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid rgba(34, 255, 136, 0.18);
  border-radius: 999px;
  background: rgba(8, 16, 27, 0.62);
  color: #dce7f3;
  font-size: 0.82rem;
  font-weight: 820;
  box-shadow: inset 0 0 16px rgba(34, 255, 136, 0.045), 0 0 22px rgba(34, 255, 136, 0.05);
}

.trust-strip .neon-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 2;
}

.hero-visual {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 610px;
  place-items: center;
}

.light-rig {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
}

.light-rig-one {
  width: 220px;
  height: 220px;
  background: rgba(34, 255, 136, 0.2);
  transform: translate(88px, -140px);
}

.light-rig-two {
  width: 180px;
  height: 180px;
  background: rgba(255, 200, 87, 0.16);
  transform: translate(-92px, 136px);
}

.phone-orbit {
  position: relative;
  display: grid;
  width: min(100%, 410px);
  min-height: 565px;
  place-items: center;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(34, 255, 136, 0.18), transparent 44%),
    linear-gradient(315deg, rgba(255, 200, 87, 0.14), transparent 52%);
  box-shadow: var(--shadow);
  animation: float 7s ease-in-out infinite;
}

.hero-phone-orbit {
  animation: none;
  transform-style: preserve-3d;
}

.phone-orbit::before {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(34, 255, 136, 0.16);
  border-radius: 34px;
  content: "";
  transform: rotate(-8deg);
}

.phone {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: #05070c;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.035),
    0 0 44px rgba(34, 255, 136, 0.22),
    0 34px 80px rgba(0, 0, 0, 0.64);
}

.phone-hero {
  width: 290px;
  min-height: 575px;
  padding: 14px;
  transform: rotate(3deg);
}

.phone-small {
  width: 210px;
  min-height: 414px;
  padding: 10px;
  border-radius: 28px;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 3;
  width: 88px;
  height: 24px;
  border-radius: 0 0 15px 15px;
  background: #05070c;
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 545px;
  padding: 38px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(34, 255, 136, 0.17), transparent 11rem),
    linear-gradient(180deg, #0a1324, #07101b 72%);
}

.hero-onboarding {
  position: relative;
  overflow: hidden;
  min-height: 545px;
  padding: 0;
  background: #050910;
  isolation: isolate;
}

.hero-onboarding::before,
.hero-onboarding::after {
  position: absolute;
  z-index: 0;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  background: rgba(34, 255, 136, 0.1);
  content: "";
  filter: blur(18px);
}

.hero-onboarding::before {
  top: -110px;
  left: -120px;
}

.hero-onboarding::after {
  right: -120px;
  bottom: -130px;
}

.hero-app-panel {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 30px 14px 16px;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

.hero-app-panel.is-active {
  opacity: 1;
  transform: translateY(0);
}

.hero-app-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 2px 0 4px;
  text-align: left;
}

.hero-app-brand.compact {
  margin-bottom: 0;
}

.hero-app-brand img,
.hero-home-brand img,
.hero-loader img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(34, 255, 136, 0.28);
}

.hero-app-brand strong,
.hero-home-brand strong {
  display: block;
  color: #f8fbff;
  font-weight: 950;
  line-height: 1;
}

.hero-app-brand span,
.hero-home-brand span {
  color: var(--green);
}

.hero-app-brand small {
  display: block;
  margin-top: 5px;
  color: #cbd4e1;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(130, 151, 176, 0.28);
  border-radius: 18px;
  background: rgba(6, 12, 22, 0.86);
}

.hero-auth-tabs span,
.hero-auth-tabs strong {
  display: grid;
  min-height: 32px;
  place-items: center;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 900;
}

.hero-auth-tabs span {
  color: #f3f7fb;
}

.hero-auth-tabs strong {
  background: rgba(34, 255, 136, 0.22);
  box-shadow: inset 0 0 0 1px rgba(34, 255, 136, 0.55), 0 0 18px rgba(34, 255, 136, 0.16);
  color: #baffd7;
}

.hero-step-row,
.hero-home-title,
.hero-table-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hero-step-row span {
  color: var(--green);
  font-weight: 950;
  white-space: nowrap;
}

.hero-step-row strong {
  color: #fff;
  white-space: nowrap;
}

.hero-input {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 46px;
  padding: 8px 12px;
  border: 1px solid rgba(121, 145, 174, 0.28);
  border-radius: 16px;
  background: rgba(7, 14, 24, 0.92);
  color: #a8b2c2;
  font-size: 0.88rem;
  font-weight: 850;
}

.hero-input b {
  min-height: 1.2em;
  color: #f8fbff;
  font-weight: 900;
}

.hero-input b:not(:empty) + em,
.hero-input b:not(:empty) {
  margin-top: 3px;
}

.hero-input em {
  position: absolute;
  right: 12px;
  bottom: 12px;
  color: #7f8ba0;
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hero-check {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid rgba(121, 145, 174, 0.24);
  border-radius: 14px;
  background: rgba(7, 14, 24, 0.9);
  color: #e5edf8;
  font-size: 0.72rem;
  font-weight: 850;
}

.hero-check i {
  position: relative;
  display: block;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  border: 1px solid rgba(139, 158, 185, 0.62);
  border-radius: 6px;
}

.hero-check.is-checked i {
  border-color: rgba(34, 255, 136, 0.78);
  background: var(--green);
}

.hero-check.is-checked i::after {
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #03110a;
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.hero-app-button {
  position: relative;
  display: grid;
  min-height: 46px;
  margin-top: 6px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(34, 255, 136, 0.22);
  border-radius: 16px;
  background: rgba(20, 28, 42, 0.82);
  color: rgba(211, 220, 232, 0.3);
  font: inherit;
  font-weight: 950;
}

.hero-app-button.is-ready {
  background: linear-gradient(135deg, #22ff88, #15c765);
  color: #03110a;
  box-shadow: 0 0 28px rgba(34, 255, 136, 0.28);
}

.hero-app-button i {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  opacity: 0;
  transform: scale(0);
}

.hero-legal {
  margin: 4px 0 0;
  color: #c4ccd8;
  font-size: 0.68rem;
  font-weight: 750;
  text-align: center;
}

.hero-loading-panel {
  align-content: center;
  justify-items: center;
  gap: 20px;
  text-align: center;
}

.hero-loader {
  position: relative;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 999px;
  background: rgba(34, 255, 136, 0.08);
  box-shadow: 0 0 56px rgba(34, 255, 136, 0.28);
}

.hero-spinner {
  position: absolute;
  inset: 0;
  border: 4px solid rgba(34, 255, 136, 0.12);
  border-top-color: var(--green);
  border-radius: 999px;
}

.hero-loading-panel strong {
  color: #d9e2ef;
  font-size: 1.04rem;
}

.hero-home-panel {
  padding: 24px 13px 0;
}

.hero-home-scroll {
  display: grid;
  gap: 12px;
  transform: translateY(0);
}

.hero-home-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hero-home-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-coin-pill {
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(139, 158, 185, 0.28);
  border-radius: 15px;
  background: rgba(14, 24, 39, 0.86);
}

.hero-coin-pill b {
  min-width: 52px;
  padding: 6px 8px;
  color: #d7dfeb;
  font-size: 0.58rem;
  line-height: 1.15;
  text-align: center;
}

.hero-coin-pill b:first-child {
  background: var(--gold);
  color: #1b1200;
}

.hero-promo {
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(34, 255, 136, 0.38);
  border-radius: 16px;
  background: radial-gradient(circle at 74% 35%, rgba(255, 200, 87, 0.24), transparent 34%), rgba(5, 16, 13, 0.92);
  color: #fff;
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 0.95;
}

.hero-promo span {
  display: block;
  color: var(--green);
  font-size: 0.78rem;
  margin-top: 7px;
}

.hero-leagues {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.hero-leagues span,
.hero-home-title button {
  display: grid;
  min-height: 32px;
  place-items: center;
  border: 1px solid rgba(139, 158, 185, 0.22);
  border-radius: 999px;
  background: rgba(14, 24, 39, 0.86);
  color: #cfd8e6;
  font-size: 0.68rem;
  font-weight: 900;
}

.hero-home-title strong,
.hero-table-title strong {
  color: #fff;
  font-size: 1.06rem;
}

.hero-home-title button {
  min-width: 84px;
  border-color: rgba(34, 255, 136, 0.36);
  color: var(--green);
}

.hero-game-card {
  display: grid;
  gap: 6px;
  min-height: 96px;
  padding: 13px;
  border: 1px solid rgba(34, 255, 136, 0.44);
  border-radius: 16px;
  background: radial-gradient(circle at 28% 70%, rgba(62, 112, 255, 0.24), transparent 36%), rgba(12, 19, 34, 0.92);
}

.hero-game-card small {
  color: var(--green);
  font-weight: 950;
}

.hero-game-card strong {
  color: #fff;
  font-size: 0.98rem;
}

.hero-game-card span,
.hero-table-title span {
  color: #aab6c7;
  font-weight: 850;
}

.hero-pick-row {
  display: grid;
  grid-template-columns: 1fr 58px 58px;
  gap: 8px;
  align-items: center;
  padding: 9px 0;
  border-top: 1px solid rgba(139, 158, 185, 0.14);
}

.hero-pick-row span,
.hero-pick-row b {
  color: #eef4fb;
  font-size: 0.8rem;
  font-weight: 900;
}

.hero-pick-row b {
  padding: 8px 6px;
  border-radius: 8px;
  background: rgba(31, 45, 68, 0.9);
  text-align: center;
}

.phone-small .phone-screen {
  min-height: 392px;
  border-radius: 20px;
}

.app-topbar,
.wallet-strip,
.prediction-row,
.match-card,
.action-panel,
.wallet-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.app-topbar {
  margin-bottom: 18px;
}

.mini-label,
.wallet-tile span,
.action-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
}

.status-pill,
.pick-chip {
  flex: 0 0 auto;
  padding: 5px 9px;
  border: 1px solid rgba(34, 255, 136, 0.28);
  border-radius: 999px;
  background: rgba(34, 255, 136, 0.12);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 850;
}

.wallet-strip {
  margin-bottom: 18px;
}

.wallet-strip span {
  flex: 1;
  padding: 12px 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  font-size: 0.78rem;
}

.wallet-strip b {
  display: block;
  color: var(--text);
  font-size: 1rem;
}

.match-card,
.prediction-row,
.action-panel,
.wallet-tile {
  margin-bottom: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.match-card.active {
  border-color: rgba(34, 255, 136, 0.32);
  background: rgba(34, 255, 136, 0.1);
}

.prediction-row strong {
  color: var(--green);
}

.action-panel {
  margin-top: 20px;
  border-color: rgba(255, 200, 87, 0.28);
  background: rgba(255, 200, 87, 0.1);
}

.action-panel strong {
  color: var(--gold);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-heading p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(215, 227, 242, 0.76);
  font-size: 1.02rem;
}

.section-heading h2,
.final-cta h2,
.reward-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  font-weight: 900;
}

.steps-grid,
.screen-grid,
.detail-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.premium-card,
.screen-card,
.reward-panel,
.currency-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 30, 50, 0.82), rgba(8, 14, 26, 0.82));
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.24);
}

.premium-card {
  position: relative;
  padding: 26px;
  translate: 0 0;
  transition: border-color 220ms ease, box-shadow 220ms ease, translate 220ms ease, background 220ms ease;
}

.premium-card:hover {
  border-color: rgba(34, 255, 136, 0.34);
  background: linear-gradient(180deg, rgba(22, 37, 60, 0.88), rgba(8, 15, 27, 0.88));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32), 0 0 34px rgba(34, 255, 136, 0.12);
  translate: 0 -6px;
}

.premium-card h2,
.premium-card h3,
.screen-card h3,
.currency-card h3,
.timeline-item h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.premium-card p:last-child,
.currency-card p:last-child,
.timeline-item p:last-child {
  margin-bottom: 0;
}

.premium-card p {
  line-height: 1.7;
}

.step-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.step-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(34, 255, 136, 0.22);
  border-radius: 8px;
  background: rgba(34, 255, 136, 0.055);
  box-shadow: inset 0 0 18px rgba(34, 255, 136, 0.04), 0 0 24px rgba(34, 255, 136, 0.08);
}

.step-icon .neon-icon {
  width: 27px;
  height: 27px;
}

.step-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(34, 255, 136, 0.3);
  border-radius: 8px;
  background: rgba(34, 255, 136, 0.1);
  color: var(--green);
  font-weight: 900;
}

.step-card-top .step-number {
  width: auto;
  min-width: 36px;
  height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 0.76rem;
  line-height: 1;
}

.coin-step {
  overflow: hidden;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.coin-step img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.currency-section,
.timeline-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
  border-block: 1px solid rgba(255, 255, 255, 0.07);
}

.currency-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: center;
}

.currency-grid {
  display: grid;
  gap: 18px;
  perspective: 1000px;
}

.currency-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  transition: border-color 220ms ease, box-shadow 220ms ease, translate 220ms ease;
}

.currency-card:nth-child(2) {
  translate: 22px 18px;
}

.currency-card:hover {
  border-color: rgba(34, 255, 136, 0.26);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32), 0 0 34px rgba(34, 255, 136, 0.1);
}

.currency-card::after {
  position: absolute;
  right: -34px;
  bottom: -44px;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  content: "";
  opacity: 0.28;
}

.gold-card::after {
  background: var(--gold);
}

.green-card::after {
  background: var(--green);
}

.coin-badge {
  display: grid;
  width: 58px;
  height: 58px;
  overflow: hidden;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 999px;
  font-weight: 950;
  animation: coinGlow 3.8s ease-in-out infinite;
}

.coin-badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coin-gold {
  background: var(--gold-soft);
  color: var(--gold);
  box-shadow: 0 0 34px rgba(255, 200, 87, 0.18);
}

.coin-green {
  background: var(--green-soft);
  color: var(--green);
  box-shadow: 0 0 34px rgba(34, 255, 136, 0.2);
}

.currency-card span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 850;
  box-shadow: 0 0 22px rgba(34, 255, 136, 0.06);
}

.balance-grid {
  align-items: stretch;
}

.balance-card {
  overflow: hidden;
  min-height: 250px;
}

.balance-card h3 {
  color: #f7fbff;
  font-size: 1.34rem;
}

.balance-card p {
  max-width: 520px;
  color: rgba(215, 227, 242, 0.74);
}

.screen-grid {
  align-items: stretch;
  perspective: 1200px;
  perspective-origin: center center;
}

.screen-card {
  display: grid;
  justify-items: center;
  padding: 24px 16px 20px;
  text-align: center;
  perspective: 1000px;
  transform-style: preserve-3d;
  contain: paint;
}

.screen-card h3 {
  margin-top: 18px;
  margin-bottom: 0;
}

.screen-card .phone {
  transform: translateZ(0);
  transform-style: preserve-3d;
}

.phone-showcase {
  overflow: hidden;
}

.phone-showcase .section-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 4px;
}

.phone-showcase .section-heading p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.02rem;
}

.phone-showcase .screen-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 650px;
  margin-top: 38px;
  align-items: center;
  justify-items: center;
  perspective: 1500px;
  perspective-origin: center 45%;
  isolation: isolate;
}

.phone-showcase .screen-card {
  position: relative;
  display: grid;
  grid-area: 1 / 1;
  min-width: 300px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  contain: none;
  justify-items: center;
  text-align: center;
  transform-style: preserve-3d;
  transition: translate 260ms ease;
}

.phone-showcase .screen-card::before {
  position: absolute;
  top: 47%;
  left: 50%;
  z-index: -1;
  width: 270px;
  height: 370px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 255, 136, 0.28), rgba(34, 255, 136, 0.08) 45%, transparent 72%);
  content: "";
  filter: blur(18px);
  translate: -50% -50%;
}

.phone-showcase [data-phone-card="left"] {
  z-index: 1;
  translate: calc(-248px + var(--parallax-x, 0px)) calc(54px + var(--parallax-y, 0px));
}

.phone-showcase [data-phone-card="center"] {
  z-index: 3;
  translate: var(--parallax-x, 0px) calc(-10px + var(--parallax-y, 0px));
}

.phone-showcase [data-phone-card="right"] {
  z-index: 1;
  translate: calc(248px + var(--parallax-x, 0px)) calc(54px + var(--parallax-y, 0px));
}

.phone-showcase [data-phone-card="left"]::before,
.phone-showcase [data-phone-card="right"]::before {
  opacity: 0.72;
}

.phone-showcase [data-phone-card="center"]::before {
  width: 330px;
  height: 430px;
  opacity: 0.95;
}

.phone-showcase .screen-card h3 {
  position: relative;
  z-index: 5;
  margin-top: 12px;
  margin-bottom: 4px;
  color: #dce7f3;
  font-size: 0.98rem;
  font-weight: 850;
  letter-spacing: 0;
}

.screen-caption {
  position: relative;
  z-index: 5;
  margin: 0;
  max-width: 190px;
  color: rgba(220, 231, 243, 0.68);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.35;
}

.product-phone-mockup {
  position: relative;
  width: min(100%, 278px);
  height: 462px;
  overflow: hidden;
  border-radius: 30px;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.58)) drop-shadow(0 0 28px rgba(34, 255, 136, 0.24));
  transform: translateZ(0);
  transform-style: preserve-3d;
  will-change: transform;
}

.phone-showcase [data-phone-card="center"] .product-phone-mockup {
  width: 310px;
  height: 515px;
  filter: drop-shadow(0 34px 66px rgba(0, 0, 0, 0.66)) drop-shadow(0 0 34px rgba(34, 255, 136, 0.28));
}

.product-phone-layer {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: contain;
  object-position: center;
  transform: translateZ(0);
  will-change: opacity;
}

.product-phone-layer[data-phone-layer="front"],
.product-phone-layer[data-phone-layer="right"] {
  opacity: 0;
}

.picks-phone-mockup,
.wallet-phone-mockup {
  width: min(100%, 278px);
}

.phone-showcase .phone-small {
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.035),
    0 0 48px rgba(34, 255, 136, 0.24),
    0 30px 72px rgba(0, 0, 0, 0.58);
}

.league-line {
  width: 100%;
  height: 14px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.league-line.short {
  width: 64%;
}

.wallet-tile {
  display: block;
  text-align: left;
}

.wallet-tile strong {
  color: var(--text);
}

.final-cta {
  position: relative;
  overflow: hidden;
  margin-bottom: 70px;
  padding: 42px 34px;
  border: 1px solid rgba(34, 255, 136, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(18, 30, 50, 0.86), rgba(8, 14, 26, 0.9));
  text-align: center;
}

.final-cta::before {
  position: absolute;
  inset: auto 50% 44px auto;
  z-index: 0;
  width: 180px;
  height: 78px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 255, 136, 0.13), transparent 68%);
  content: "";
  filter: blur(18px);
  translate: 50% 0;
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.phone-showcase + .final-cta {
  display: grid;
  align-content: center;
  justify-items: center;
  margin-top: -12px;
  margin-bottom: 72px;
}

.final-cta p:not(.eyebrow) {
  max-width: 620px;
  margin-inline: auto;
}

.final-cta .button {
  margin-top: 6px;
}

.cta-note {
  margin: 14px 0 0;
  color: #cbd6e4;
  font-size: 0.9rem;
  font-weight: 760;
}

.page-hero {
  display: grid;
  min-height: 420px;
  align-items: end;
  padding: 86px 0 62px;
}

.page-hero-copy {
  max-width: 850px;
}

.page-hero-copy p:not(.eyebrow) {
  max-width: 690px;
  color: #d7e3f2;
  font-size: 1.18rem;
}

.about-hero h1 {
  font-size: clamp(2.25rem, 4.6vw, 4.1rem);
}

.rewards-hero h1 {
  font-size: clamp(2.35rem, 6vw, 4.8rem);
}

.rewards-page .page-hero {
  min-height: 380px;
  padding-bottom: 48px;
}

.rewards-page > .section-shell.section-pad {
  padding-top: 54px;
  padding-bottom: 58px;
}

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

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 30, 50, 0.62);
}

.timeline-item span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: rgba(34, 255, 136, 0.1);
  color: var(--green);
  font-weight: 900;
}

.reward-layout {
  display: grid;
  gap: 24px;
}

.reward-panel {
  padding: 32px;
}

.reward-heading {
  margin-bottom: 0;
}

.reward-steps {
  display: grid;
  gap: 14px;
}

.reward-step-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.reward-step-row .step-icon {
  margin: 0;
}

.reward-step-row .step-number {
  width: auto;
  min-width: 36px;
  height: 28px;
  margin: 0;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 0.76rem;
  line-height: 1;
}

.reward-step-row h3 {
  margin-bottom: 4px;
}

.reward-step-row p {
  margin-bottom: 0;
  color: rgba(215, 227, 242, 0.74);
  line-height: 1.55;
}

.policy-section {
  padding-top: 22px;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.policy-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(34, 255, 136, 0.08), transparent 14rem),
    linear-gradient(180deg, rgba(18, 30, 50, 0.82), rgba(8, 14, 26, 0.84));
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.24);
}

.policy-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 92px;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(34, 255, 136, 0.65);
  content: "";
}

.policy-card h2 {
  margin-bottom: 16px;
  color: #f7fbff;
  font-size: clamp(1.18rem, 2vw, 1.48rem);
  line-height: 1.05;
  font-weight: 900;
}

.policy-card p,
.policy-card li {
  color: #b9c5d6;
}

.policy-card p {
  margin-bottom: 13px;
}

.policy-card p:last-child,
.policy-card ul:last-child {
  margin-bottom: 0;
}

.policy-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.1rem;
}

.policy-card li::marker {
  color: var(--green);
}

.policy-card a {
  color: var(--green);
  font-weight: 850;
}

.contact-grid {
  align-items: stretch;
}

.contact-link,
.premium-card a {
  color: var(--green);
  font-weight: 850;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 7, 14, 0.72);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
}

.footer-inner p {
  max-width: 460px;
  margin: 0;
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) {
  transition-delay: 70ms;
}

.reveal:nth-child(3) {
  transition-delay: 130ms;
}

@keyframes ambientShift {
  0% {
    background-position: 0% 0%, 10% 0%, center;
  }

  100% {
    background-position: 18% 9%, 0% 14%, center;
  }
}

@keyframes coinGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(34, 255, 136, 0));
  }

  50% {
    filter: drop-shadow(0 0 12px rgba(34, 255, 136, 0.24));
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .section-shell {
    width: min(100% - 28px, 680px);
  }

  .site-header {
    width: min(100% - 28px, 680px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 8px;
    background: rgba(5, 9, 17, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 8px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 42px;
    gap: 32px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .phone-orbit {
    min-height: 420px;
  }

  .phone-hero {
    width: 218px;
    min-height: 430px;
  }

  .phone-screen {
    min-height: 400px;
  }

  .hero-onboarding-visual {
    min-height: 560px;
  }

  .hero-phone-orbit {
    width: min(100%, 380px);
    min-height: 530px;
  }

  .hero-phone-orbit .phone-hero {
    width: min(72vw, 268px);
    min-height: 530px;
  }

  .hero-phone-orbit .phone-screen {
    min-height: 500px;
  }

  .currency-layout,
  .reward-layout,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .currency-card:nth-child(2) {
    translate: 0;
  }

  .steps-grid,
  .screen-grid,
  .contact-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .phone-showcase {
    overflow: visible;
  }

  .phone-showcase .screen-grid {
    display: flex;
    min-height: auto;
    margin-top: 22px;
    padding: 8px 14px 18px;
    overflow-x: auto;
    gap: 18px;
    justify-content: flex-start;
    perspective: 1100px;
    scroll-padding-inline: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .phone-showcase .screen-grid::-webkit-scrollbar {
    display: none;
  }

  .phone-showcase .screen-card,
  .phone-showcase [data-phone-card="left"],
  .phone-showcase [data-phone-card="center"],
  .phone-showcase [data-phone-card="right"] {
    min-width: min(78vw, 300px);
    flex: 0 0 min(78vw, 300px);
    translate: 0;
    scroll-snap-align: center;
  }

  .phone-showcase .screen-card::before,
  .phone-showcase [data-phone-card="center"]::before {
    width: 250px;
    height: 350px;
  }

  .phone-showcase [data-phone-card="center"] .product-phone-mockup,
  .phone-showcase .product-phone-mockup {
    width: min(72vw, 238px);
    height: 396px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section-pad {
    padding: 62px 0;
  }

  .hero {
    padding-top: 22px;
    padding-bottom: 24px;
    gap: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(2.58rem, 15vw, 3.65rem);
    line-height: 0.96;
  }

  .page-hero h1 {
    font-size: clamp(1.7rem, 7.2vw, 2.3rem);
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  .about-hero h1 {
    font-size: clamp(1.7rem, 7.2vw, 2.2rem);
  }

  .rewards-page .page-hero {
    min-height: 310px;
    padding: 48px 0 38px;
  }

  .rewards-page > .section-shell.section-pad {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .page-hero {
    min-height: 340px;
    padding: 58px 0 46px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2,
  .final-cta h2,
  .reward-panel h2 {
    font-size: clamp(1.35rem, 5.6vw, 1.9rem);
    line-height: 1.06;
  }

  .section-heading p:not(.eyebrow),
  .page-hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .page-hero-copy,
  .page-hero-copy p:not(.eyebrow) {
    max-width: 100%;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual {
    height: 148px;
    min-height: 148px;
  }

  .hero-onboarding-visual {
    height: min(130vw, 520px);
    min-height: 430px;
    overflow: visible;
  }

  .hero-onboarding-visual .light-rig-one {
    transform: translate(80px, -140px);
  }

  .phone-orbit {
    width: 100%;
    height: 148px;
    min-height: 148px;
    place-items: start center;
  }

  .hero-phone-orbit {
    width: min(100%, 330px);
    height: min(124vw, 500px);
    min-height: 420px;
    place-items: center;
  }

  .phone-hero {
    width: 138px;
    min-height: 270px;
    padding: 8px;
    border-radius: 22px;
  }

  .hero-phone-orbit .phone-hero {
    width: min(70vw, 248px);
    min-height: min(126vw, 486px);
    padding: 10px;
    border-radius: 30px;
  }

  .phone-screen {
    min-height: 252px;
    padding: 32px 9px 9px;
    border-radius: 16px;
  }

  .hero-phone-orbit .phone-screen {
    min-height: min(118vw, 450px);
    border-radius: 22px;
  }

  .hero-phone-orbit .hero-onboarding {
    padding: 0;
  }

  .hero-phone-orbit .hero-app-panel {
    gap: 8px;
    padding: 25px 11px 12px;
  }

  .hero-phone-orbit .hero-app-brand {
    gap: 7px;
    margin-bottom: 2px;
  }

  .hero-phone-orbit .hero-app-brand img,
  .hero-phone-orbit .hero-home-brand img,
  .hero-phone-orbit .hero-loader img {
    width: 32px;
    height: 32px;
  }

  .hero-phone-orbit .hero-app-brand small {
    font-size: 0.5rem;
  }

  .hero-phone-orbit .hero-auth-tabs {
    padding: 4px;
    border-radius: 15px;
  }

  .hero-phone-orbit .hero-auth-tabs span,
  .hero-phone-orbit .hero-auth-tabs strong {
    min-height: 27px;
    border-radius: 12px;
    font-size: 0.78rem;
  }

  .hero-phone-orbit .hero-step-row,
  .hero-phone-orbit .hero-input {
    font-size: 0.76rem;
  }

  .hero-phone-orbit .hero-input {
    min-height: 40px;
    padding: 7px 10px;
    border-radius: 14px;
  }

  .hero-phone-orbit .hero-check {
    min-height: 34px;
    padding: 7px 9px;
    border-radius: 12px;
    font-size: 0.64rem;
  }

  .hero-phone-orbit .hero-check i {
    width: 17px;
    height: 17px;
  }

  .hero-phone-orbit .hero-app-button {
    min-height: 40px;
    margin-top: 3px;
    border-radius: 14px;
    font-size: 0.78rem;
  }

  .hero-phone-orbit .hero-legal {
    font-size: 0.6rem;
  }

  .hero-phone-orbit .hero-home-panel {
    padding: 22px 11px 0;
  }

  .hero-phone-orbit .hero-home-scroll {
    gap: 10px;
  }

  .hero-phone-orbit .hero-promo {
    min-height: 70px;
    font-size: 1.25rem;
  }

  .hero-phone-orbit .hero-game-card {
    min-height: 82px;
  }

  .hero-phone-orbit .hero-pick-row {
    grid-template-columns: 1fr 48px 48px;
    gap: 6px;
  }

  .phone-hero .app-topbar {
    margin-bottom: 10px;
  }

  .phone-hero .wallet-strip {
    gap: 8px;
    margin-bottom: 10px;
  }

  .phone-hero .wallet-strip span,
  .phone-hero .match-card,
  .phone-hero .prediction-row,
  .phone-hero .action-panel {
    padding: 7px;
    font-size: 0.72rem;
  }

  .phone-hero .action-panel {
    margin-top: 10px;
  }

  .phone-hero .mini-label,
  .phone-hero .wallet-tile span,
  .phone-hero .action-panel span,
  .phone-hero .status-pill,
  .phone-hero .pick-chip {
    font-size: 0.58rem;
  }

  .phone-small {
    width: 200px;
  }

  .product-phone-mockup {
    width: min(78vw, 230px);
    height: 382px;
  }

  .phone-showcase [data-phone-card="center"] .product-phone-mockup,
  .phone-showcase .product-phone-mockup {
    width: min(72vw, 226px);
    height: 376px;
  }

  .picks-phone-mockup,
  .wallet-phone-mockup {
    width: min(72vw, 226px);
  }

  .premium-card,
  .reward-panel,
  .currency-card,
  .policy-card {
    padding: 22px;
  }

  .reward-step-row {
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 14px;
  }

  .step-card-top {
    margin-bottom: 18px;
  }

  .step-icon {
    width: 46px;
    height: 46px;
  }

  .step-icon .neon-icon {
    width: 24px;
    height: 24px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 34px 22px;
  }
}
