:root {
  --purple-dark: #1a0d4e;
  --purple-mid: #3d1fa8;
  --purple-bright: #6b3fd4;
  --purple-glow: #9b6eff;
  --purple-light: #c4a8ff;
  --navy: #080b1a;
  --navy-mid: #0f1228;
  --navy-card: #141830;
  --orange: #f97316;
  --orange-hot: #ff4500;
  --teal: #00e5cc;
  --green: #22c55e;
  --red: #ff3b3b;
  --white: #ffffff;
  --muted: #6b7280;
  --muted-light: #9ca3af;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--white);
  cursor: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  overflow-x: hidden;
}

a,
button {
  cursor: none;
}

#cursor,
#cursor-ring {
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

#cursor {
  z-index: 9999;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  mix-blend-mode: screen;
  transition: width 0.2s, height 0.2s;
}

#cursor-ring {
  z-index: 9998;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(249, 115, 22, 0.5);
  border-radius: 50%;
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5%;
  border-bottom: 1px solid rgba(107, 63, 212, 0.2);
  background: rgba(8, 11, 26, 0.7);
  backdrop-filter: blur(24px);
  transition: all 0.3s;
}

nav.scrolled {
  padding: 12px 5%;
  background: rgba(8, 11, 26, 0.96);
}

.nav-logo,
.nav-logo img {
  display: block;
}

.nav-logo img,
.ft-brand img {
  width: auto;
  height: 28px;
  filter: drop-shadow(0 0 12px rgba(249, 115, 22, 0.4));
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a,
.ft-col a {
  color: var(--muted-light);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
}

.nav-links a:hover,
.ft-col a:hover {
  color: var(--white);
}

.nav-cta,
.hero-actions,
.store-row {
  display: flex;
  gap: 16px;
}

.nav-cta {
  gap: 10px;
}

.btn-ghost,
.btn-fire {
  border-radius: 50px;
  color: var(--white);
  font: 700 0.8rem "Plus Jakarta Sans", sans-serif;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-ghost {
  padding: 9px 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--purple-glow);
  background: rgba(107, 63, 212, 0.15);
}

.btn-fire {
  padding: 9px 22px;
  border: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-hot));
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.35);
}

.btn-fire:hover {
  box-shadow: 0 0 35px rgba(249, 115, 22, 0.6);
  transform: translateY(-2px);
}

.odds-ticker {
  position: fixed;
  top: 60px;
  right: 0;
  left: 0;
  z-index: 190;
  display: flex;
  height: 36px;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(107, 63, 212, 0.15);
  background: rgba(8, 11, 26, 0.9);
  backdrop-filter: blur(16px);
}

.ticker-label {
  display: flex;
  height: 100%;
  flex-shrink: 0;
  align-items: center;
  padding: 0 16px;
  border-right: 1px solid rgba(249, 115, 22, 0.2);
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-window {
  flex: 1;
  overflow: hidden;
}

.ticker-track,
.os-track,
.test-track {
  display: flex;
  will-change: transform;
}

.ticker-track {
  animation: ticker 42s linear infinite;
}

.ticker-track:hover,
.os-track:hover,
.test-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.7rem;
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
}

.ticker-item:hover {
  background: rgba(107, 63, 212, 0.15);
}

.ticker-match {
  color: var(--muted-light);
}

.ticker-odd {
  font-weight: 800;
}

.ticker-odd.up {
  color: var(--green);
  animation: flash-g 0.5s ease;
}

.ticker-odd.down {
  color: var(--red);
  animation: flash-r 0.5s ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 160px 5% 80px;
  text-align: center;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107, 63, 212, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 63, 212, 0.055) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.orb1 {
  top: -150px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(61, 31, 168, 0.5), transparent);
  animation: orb-f 12s ease-in-out infinite;
}

.orb2 {
  right: 5%;
  bottom: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.18), transparent);
  animation: orb-f 9s ease-in-out infinite reverse;
}

.orb3 {
  top: 45%;
  left: 38%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 229, 204, 0.1), transparent);
  animation: orb-f 7s ease-in-out infinite 2s;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  padding: 8px 20px;
  border: 1px solid rgba(107, 63, 212, 0.35);
  border-radius: 50px;
  background: rgba(107, 63, 212, 0.15);
  color: var(--purple-light);
  font-size: 0.75rem;
  font-weight: 700;
  animation: fsu 1s ease both;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: blink 1.5s infinite;
}

.hero-h1 {
  margin-bottom: 8px;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
  animation: fsu 1s 0.1s ease both;
}

.w-bet,
.w-way {
  display: inline-block;
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.w-bet {
  background-image: linear-gradient(135deg, #fff 0%, var(--purple-light) 50%, #fff 100%);
  animation: shimmer 4s linear infinite 1s;
}

.w-way {
  background-image: linear-gradient(135deg, var(--orange), var(--orange-hot), var(--orange));
  filter: drop-shadow(0 0 30px rgba(249, 115, 22, 0.5));
  animation: shimmer 3s linear infinite;
}

.hero-sub {
  max-width: 540px;
  margin: 28px auto 52px;
  color: var(--muted-light);
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  line-height: 1.75;
  animation: fsu 1s 0.22s ease both;
}

.hero-actions,
.store-row {
  flex-wrap: wrap;
  justify-content: center;
}

.hero-actions {
  animation: fsu 1s 0.38s ease both;
}

.hero-action,
.sb {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-action {
  min-width: 160px;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
}

.hero-action::before,
.sb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.hero-action:hover::before,
.sb:hover::before {
  opacity: 1;
}

.hero-action:hover,
.sb:hover {
  transform: translateY(-5px) scale(1.02);
}

.hero-action--secondary,
.sb-dark {
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
}

.hero-action--secondary:hover,
.sb-dark:hover {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.hero-action--primary,
.sb-org {
  background: linear-gradient(135deg, var(--orange), #d44000);
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.3);
}

.hero-action--primary:hover,
.sb-org:hover {
  box-shadow: 0 25px 50px rgba(249, 115, 22, 0.5), 0 0 60px rgba(249, 115, 22, 0.2);
}

.sb svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.sb-t {
  position: relative;
  display: block;
  text-align: left;
  z-index: 1;
}

.sb-t small {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.75;
}

.sb-t strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  color: var(--muted-light);
  font-size: 0.78rem;
  animation: fsu 1s 0.5s ease both;
}

.stars,
.cta-fire {
  color: var(--orange);
}

.rdivider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
}

.phone-stage {
  position: relative;
  display: flex;
  height: 520px;
  align-items: flex-end;
  justify-content: center;
  margin-top: 80px;
  perspective: 1400px;
  transform-style: preserve-3d;
  animation: fsu 1s 0.62s ease both;
}

.pw {
  position: absolute;
  bottom: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-style: preserve-3d;
}

.pw.left {
  left: 50%;
  margin-left: -340px;
  transform: rotateY(28deg) rotateX(6deg) translateZ(-100px) translateY(50px);
}

.pw.center {
  left: 50%;
  z-index: 10;
  transform: translateX(-50%) rotateY(0deg) rotateX(4deg);
}

.pw.right {
  left: 50%;
  margin-left: 140px;
  transform: rotateY(-28deg) rotateX(6deg) translateZ(-100px) translateY(50px);
}

.phone-stage:hover .pw.left {
  transform: rotateY(14deg) rotateX(2deg) translateZ(-40px) translateY(20px);
}

.phone-stage:hover .pw.center {
  transform: translateX(-50%) rotateY(0) rotateX(0) translateY(-12px);
}

.phone-stage:hover .pw.right {
  transform: rotateY(-14deg) rotateX(2deg) translateZ(-40px) translateY(20px);
}

.ph {
  position: relative;
  width: 200px;
  height: 430px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 38px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ph.c {
  width: 224px;
  height: 470px;
  border-color: rgba(107, 63, 212, 0.5);
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.7), 0 0 60px rgba(107, 63, 212, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ph-notch {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  width: 76px;
  height: 22px;
  border-radius: 0 0 14px 14px;
  background: var(--navy);
  transform: translateX(-50%);
}

.ph-notch::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2a2a3a;
  transform: translateX(-50%);
}

.ph-glow {
  position: absolute;
  bottom: -50px;
  left: 50%;
  width: 180px;
  height: 50px;
  background: radial-gradient(ellipse, rgba(107, 63, 212, 0.4), transparent 70%);
  filter: blur(10px);
  transform: translateX(-50%);
}

.sc-splash,
.sc-code,
.sc-home,
.sc-bs {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.sc-splash {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(160deg, #1a0d4e 0%, #080b1a 55%, #0f1228 100%);
}

.sc-splash img {
  width: 118px;
  height: auto;
  filter: drop-shadow(0 0 14px rgba(249, 115, 22, 0.5));
}

.sp-bar {
  width: 46px;
  height: 3px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--purple-bright), var(--orange));
}

.sp-tag {
  color: rgba(196, 168, 255, 0.8);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.sp-dots {
  display: flex;
  gap: 5px;
  margin-top: 6px;
}

.sp-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple-glow);
  animation: db 1.4s ease-in-out infinite;
}

.sp-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.sp-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

.sc-code {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 13px 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(249, 115, 22, 0.14), transparent 28%),
    linear-gradient(160deg, #1a0d4e 0%, #080b1a 58%, #0f1228 100%);
}

.code-logo {
  display: flex;
  justify-content: center;
  padding-top: 22px;
}

.code-logo img {
  width: 116px;
  height: auto;
  filter: drop-shadow(0 0 14px rgba(249, 115, 22, 0.5));
}

.code-panel {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.code-label,
.home-code-card span {
  display: block;
  color: var(--teal);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.code-panel strong,
.home-code-card strong {
  display: block;
  margin-top: 4px;
  font-size: 0.74rem;
}

.code-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  padding: 7px;
  border: 1px solid rgba(107, 63, 212, 0.28);
  border-radius: 12px;
  background: rgba(8, 11, 26, 0.62);
}

.code-input span {
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
}

.code-input button,
.home-code-card button {
  flex-shrink: 0;
  border: 0;
  border-radius: 9px;
  background: var(--orange);
  color: white;
  font: 800 0.52rem "Plus Jakarta Sans", sans-serif;
}

.code-input button {
  padding: 7px 9px;
}

.bookie-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.55rem;
}

.bookie-row strong {
  margin: 0;
  color: var(--green);
  font-size: 0.52rem;
}

.code-note {
  color: var(--purple-light);
  font-size: 0.62rem;
  font-weight: 700;
  text-align: center;
}

.sc-home,
.sc-bs {
  background: #090c1f;
  padding: 26px 13px 0;
}

.sc-home {
  display: flex;
  flex-direction: column;
}

.sh-topbar,
.sh-ts,
.bs-hd,
.bs-wr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sh-topbar {
  margin-bottom: 12px;
}

.sh-greet small {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.52rem;
}

.sh-greet strong {
  display: block;
  font-size: 0.7rem;
}

.sh-av {
  display: flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-mid), var(--orange));
  font-size: 0.55rem;
  font-weight: 800;
}

.sh-bal {
  position: relative;
  overflow: hidden;
  margin-bottom: 11px;
  padding: 13px;
  border-radius: 15px;
  background: linear-gradient(135deg, #2d1b69, #1a0d4e);
}

.sh-bal::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -15px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.08);
}

.sh-bl {
  margin-bottom: 3px;
  color: rgba(196, 168, 255, 0.7);
  font-size: 0.5rem;
}

.sh-ba {
  font-size: 1.15rem;
  font-weight: 800;
}

.sh-bs {
  margin-top: 2px;
  color: var(--green);
  font-size: 0.46rem;
  font-weight: 600;
}

.home-code-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 11px;
  padding: 11px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 14px;
  background: rgba(249, 115, 22, 0.08);
}

.home-code-card button {
  padding: 8px 10px;
  white-space: nowrap;
}

.sh-sec {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.sh-mc,
.bs-item {
  margin-bottom: 6px;
  border-radius: 11px;
  background: #141830;
}

.sh-mc {
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.sh-lg {
  margin-bottom: 5px;
  color: var(--teal);
  font-size: 0.48rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sh-tn {
  font-size: 0.56rem;
  font-weight: 700;
}

.sh-vs {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.46rem;
}

.sh-odds {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}

.sh-odd {
  flex: 1;
  padding: 4px 2px;
  border: 1px solid rgba(107, 63, 212, 0.25);
  border-radius: 7px;
  background: rgba(107, 63, 212, 0.15);
  text-align: center;
}

.sh-odd.sel,
.sh-odd:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.sh-ol {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.4rem;
}

.sh-ov {
  font-size: 0.56rem;
  font-weight: 800;
}

.bs-hd {
  margin-bottom: 13px;
}

.bs-title {
  font-size: 0.7rem;
  font-weight: 800;
}

.bs-cnt {
  display: flex;
  width: 17px;
  height: 17px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--orange);
  font-size: 0.48rem;
  font-weight: 800;
}

.bs-item {
  padding: 9px;
  border-left: 2.5px solid var(--purple-bright);
}

.bs-m,
.bs-sl,
.bs-wl {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.47rem;
}

.bs-m {
  margin-bottom: 2px;
}

.bs-p {
  font-size: 0.58rem;
  font-weight: 700;
}

.bs-o {
  float: right;
  margin-top: -15px;
  color: var(--orange);
  font-size: 0.56rem;
  font-weight: 800;
}

.bs-source {
  margin: 8px 0 9px;
  padding: 7px 8px;
  border: 1px solid rgba(0, 229, 204, 0.16);
  border-radius: 9px;
  background: rgba(0, 229, 204, 0.07);
  color: var(--teal);
  font-size: 0.48rem;
  font-weight: 700;
}

.bs-sl {
  margin: 9px 0 3px;
}

.bs-si {
  width: 100%;
  padding: 6px 9px;
  border: 1px solid rgba(107, 63, 212, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font: 800 0.7rem "Plus Jakarta Sans", sans-serif;
}

.bs-wr {
  margin-top: 7px;
}

.bs-wv {
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
}

.bs-btn {
  width: 100%;
  margin-top: 9px;
  padding: 8px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), #d44000);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
  color: white;
  font: 800 0.65rem "Plus Jakarta Sans", sans-serif;
}

.scroll-ind {
  position: absolute;
  bottom: 40px;
  left: 50%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  animation: si-anim 2s ease-in-out infinite;
}

.scroll-ind span {
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.s-mouse {
  display: flex;
  width: 21px;
  height: 34px;
  justify-content: center;
  padding-top: 5px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
}

.s-wheel {
  width: 3px;
  height: 7px;
  border-radius: 4px;
  background: var(--orange);
  animation: sw-anim 2s ease-in-out infinite;
}

.odds-sec {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--navy-mid);
}

.odds-sec::before,
.odds-sec::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-bright), var(--orange), var(--purple-bright), transparent);
}

.odds-sec::before {
  top: 0;
}

.odds-sec::after {
  bottom: 0;
}

.sec-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.feat-head {
  margin-bottom: 60px;
}

.sec-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.sec-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--orange);
}

.sec-h2 {
  margin-bottom: 60px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.sec-h2 em {
  color: var(--purple-glow);
  font-style: normal;
}

.os-wrap {
  position: relative;
}

.os-wrap::before,
.os-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 5;
  width: 130px;
  pointer-events: none;
}

.os-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy-mid), transparent);
}

.os-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--navy-mid), transparent);
}

.os-track-outer,
.test-track-outer {
  overflow: hidden;
}

.os-track {
  gap: 16px;
  animation: os-scroll 32s linear infinite;
}

.oc,
.test-card,
.fc {
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.oc {
  position: relative;
  flex-shrink: 0;
  width: 272px;
  overflow: hidden;
  padding: 20px;
  border-radius: 20px;
  transition: all 0.3s;
}

.oc::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-bright), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.oc:hover {
  border-color: rgba(107, 63, 212, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(107, 63, 212, 0.1);
  transform: translateY(-6px);
}

.oc:hover::before {
  transform: scaleX(1);
}

.oc-sport {
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.oc-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.oc-team {
  max-width: 80px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

.oc-score {
  text-align: center;
}

.oc-snum {
  color: var(--orange);
  font-size: 1.05rem;
  font-weight: 800;
}

.oc-slabel {
  display: block;
  color: var(--muted);
  font-size: 0.48rem;
}

.oc-odds {
  display: flex;
  gap: 7px;
}

.oc-odd {
  flex: 1;
  padding: 9px 5px;
  border: 1px solid rgba(107, 63, 212, 0.2);
  border-radius: 11px;
  background: rgba(107, 63, 212, 0.1);
  text-align: center;
  transition: all 0.2s;
}

.oc-odd:hover,
.oc-odd.hot {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
  transform: scale(1.05);
}

.oc-olabel {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.52rem;
}

.oc-oval {
  font-size: 0.82rem;
  font-weight: 800;
}

.oc-live {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 2px 7px;
  border-radius: 6px;
  background: var(--red);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 1px;
  animation: lp 1.5s infinite;
}

.feat-sec {
  position: relative;
  overflow: hidden;
  padding: 120px 5%;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.fc {
  position: relative;
  overflow: hidden;
  padding: 36px 28px;
  border-color: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(107, 63, 212, 0.08), transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.fc:hover {
  border-color: rgba(107, 63, 212, 0.25);
  transform: translateY(-8px) scale(1.01);
}

.fc:hover::after {
  opacity: 1;
}

.fc-icon {
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 16px;
  font-size: 1.5rem;
}

.fi-p {
  background: rgba(107, 63, 212, 0.2);
}

.fi-o {
  background: rgba(249, 115, 22, 0.14);
}

.fi-t {
  background: rgba(0, 229, 204, 0.1);
}

.fi-g {
  background: rgba(34, 197, 94, 0.1);
}

.fc-title {
  margin-bottom: 11px;
  font-size: 1rem;
  font-weight: 800;
}

.fc-desc {
  color: var(--muted-light);
  font-size: 0.84rem;
  line-height: 1.7;
}

.fc-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 50px;
  background: rgba(249, 115, 22, 0.08);
  color: var(--orange);
  font-size: 0.62rem;
  font-weight: 700;
}

.stats-sec {
  padding: 80px 5%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2px;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
}

.stat-it {
  padding: 40px 20px;
  background: var(--navy-card);
  text-align: center;
  transition: background 0.3s;
}

.stat-it:hover {
  background: rgba(107, 63, 212, 0.1);
}

.stat-n {
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff, var(--purple-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.stat-l {
  color: var(--muted-light);
  font-size: 0.76rem;
}

.test-sec {
  overflow: hidden;
  padding: 100px 5%;
}

.test-track-outer {
  margin-top: 60px;
}

.test-track {
  gap: 20px;
  animation: ts-scroll 36s linear infinite;
}

.test-card {
  flex-shrink: 0;
  width: 290px;
  padding: 26px;
  border-radius: 20px;
}

.tc-stars {
  margin-bottom: 13px;
  color: var(--orange);
  font-size: 0.82rem;
}

.tc-text {
  margin-bottom: 16px;
  color: var(--muted-light);
  font-size: 0.8rem;
  line-height: 1.7;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tc-av {
  display: flex;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-mid), var(--orange));
  font-size: 0.65rem;
  font-weight: 800;
}

.tc-name {
  font-size: 0.76rem;
  font-weight: 700;
}

.tc-loc {
  color: var(--muted);
  font-size: 0.62rem;
}

.cta-sec {
  position: relative;
  overflow: hidden;
  padding: 140px 5%;
  text-align: center;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(61, 31, 168, 0.22), transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.cta-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(107, 63, 212, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.cr1 {
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  animation: crx 4s ease-in-out infinite;
}

.cr2 {
  width: 750px;
  height: 750px;
  border-color: rgba(249, 115, 22, 0.06);
  transform: translate(-50%, -50%);
  animation: crx 4s ease-in-out infinite 2s;
}

.cta-inner {
  position: relative;
  z-index: 5;
}

.cta-h2 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.cta-fire {
  filter: drop-shadow(0 0 20px rgba(249, 115, 22, 0.5));
}

.cta-sub {
  max-width: 480px;
  margin: 0 auto 56px;
  color: var(--muted-light);
  font-size: 1rem;
  line-height: 1.75;
}

.store-row {
  margin-bottom: 22px;
}

.sb {
  gap: 16px;
  padding: 17px 34px;
  border-radius: 22px;
}

.cta-fine {
  color: var(--muted);
  font-size: 0.72rem;
  opacity: 0.6;
}

footer {
  padding: 60px 5% 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(4, 6, 15, 0.8);
}

.ft-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
}

.ft-brand p {
  max-width: 240px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

.ft-col h4 {
  margin-bottom: 14px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ft-col a {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.8rem;
}

.ft-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ft-copy {
  color: var(--muted);
  font-size: 0.73rem;
}

.ft-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ft-badge {
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.65rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.rd1 {
  transition-delay: 0.1s;
}

.rd2 {
  transition-delay: 0.2s;
}

.rd3 {
  transition-delay: 0.3s;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes flash-g {
  50% {
    background: rgba(34, 197, 94, 0.2);
    border-radius: 4px;
  }
}

@keyframes flash-r {
  50% {
    background: rgba(255, 59, 59, 0.2);
    border-radius: 4px;
  }
}

@keyframes orb-f {
  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(30px, -40px);
  }

  66% {
    transform: translate(-20px, 20px);
  }
}

@keyframes blink {
  50% {
    opacity: 0.4;
  }
}

@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

@keyframes fsu {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes db {
  0%,
  80%,
  100% {
    opacity: 0.4;
    transform: scale(0.6);
  }

  40% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes sw-anim {
  to {
    opacity: 0;
    transform: translateY(12px);
  }
}

@keyframes si-anim {
  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

@keyframes os-scroll {
  to {
    transform: translateX(-50%);
  }
}

@keyframes lp {
  50% {
    opacity: 0.5;
  }
}

@keyframes ts-scroll {
  to {
    transform: translateX(-50%);
  }
}

@keyframes crx {
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

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

@media (max-width: 768px) {
  body,
  a,
  button {
    cursor: auto;
  }

  #cursor,
  #cursor-ring {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: flex;
  }

  .btn-ghost {
    display: none;
  }

  .btn-fire {
    padding: 9px 16px;
    font-size: 0.74rem;
    box-shadow: 0 0 18px rgba(249, 115, 22, 0.28);
  }

  nav {
    padding: 13px 18px;
  }

  nav.scrolled {
    padding: 10px 18px;
  }

  .odds-ticker {
    top: 54px;
    height: 32px;
  }

  .ticker-label {
    padding: 0 11px;
    font-size: 0.55rem;
    letter-spacing: 1.4px;
  }

  .ticker-item {
    gap: 6px;
    padding: 0 14px;
    font-size: 0.64rem;
  }

  .hero {
    min-height: auto;
    padding: 112px 18px 46px;
    justify-content: flex-start;
  }

  .hero-content {
    max-width: 390px;
  }

  .hero-badge,
  .hero-h1,
  .hero-sub,
  .hero-actions,
  .rating-row,
  .phone-stage {
    animation: none;
    opacity: 1;
  }

  .hero-badge {
    margin-bottom: 22px;
    padding: 7px 14px;
    font-size: 0.68rem;
    white-space: normal;
  }

  .hero-h1 {
    font-size: clamp(3.05rem, 17vw, 4.6rem);
    line-height: 0.98;
  }

  .hero-sub {
    margin: 20px auto 30px;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .hero-actions,
  .store-row {
    gap: 12px;
  }

  .hero-action,
  .sb {
    min-height: 68px;
    padding: 13px 20px;
    border-radius: 18px;
  }

  .rating-row {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    font-size: 0.72rem;
  }

  .rdivider {
    display: none;
  }

  .pw.left,
  .pw.right,
  .scroll-ind {
    display: none;
  }

  .phone-stage {
    width: 100%;
    height: 382px;
    margin-top: 34px;
    pointer-events: none;
  }

  .pw.center {
    transform: translateX(-50%) scale(0.82) !important;
    transform-origin: bottom center;
  }

  .ph-glow {
    width: 150px;
  }

  .orb {
    filter: blur(72px);
  }

  .orb1 {
    width: 360px;
    height: 360px;
    top: -90px;
    left: -150px;
  }

  .orb2 {
    width: 260px;
    height: 260px;
    right: -120px;
    bottom: 80px;
  }

  .orb3 {
    width: 180px;
    height: 180px;
  }

  .odds-sec,
  .feat-sec,
  .stats-sec,
  .test-sec,
  .cta-sec {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .sec-inner {
    padding-inline: 18px;
  }

  .sec-kicker {
    font-size: 0.66rem;
    letter-spacing: 2px;
  }

  .sec-h2 {
    margin-bottom: 34px;
    font-size: clamp(2rem, 11vw, 2.8rem);
    line-height: 1.08;
  }

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

  .os-wrap::before,
  .os-wrap::after {
    width: 48px;
  }

  .oc {
    width: 244px;
    padding: 17px;
  }

  .feat-head {
    margin-bottom: 34px;
  }

  .feat-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fc {
    padding: 24px 22px;
    border-radius: 20px;
  }

  .fc-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 14px;
    font-size: 1.25rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 20px;
  }

  .stat-it {
    padding: 28px 14px;
  }

  .test-track-outer {
    margin-top: 34px;
  }

  .test-card {
    width: min(280px, calc(100vw - 44px));
    padding: 22px;
  }

  .cta-glow {
    width: 420px;
    height: 420px;
  }

  .cta-ring {
    display: none;
  }

  .cta-h2 {
    font-size: clamp(2.45rem, 13vw, 3.5rem);
  }

  .cta-sub {
    margin-bottom: 34px;
    font-size: 0.95rem;
  }

  .ft-top {
    flex-direction: column;
    gap: 28px;
    margin-bottom: 34px;
  }

  .ft-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .nav-logo img {
    height: 24px;
  }

  .odds-ticker {
    top: 56px;
  }

  .ticker-label {
    max-width: 82px;
    overflow: hidden;
  }

  .hero-action,
  .sb {
    width: 100%;
    max-width: 330px;
    justify-content: center;
  }

  .sec-h2 {
    margin-bottom: 42px;
  }

  .feat-sec,
  .test-sec,
  .cta-sec {
    padding-inline: 18px;
  }
}

@media (max-width: 360px) {
  .hero {
    padding-inline: 14px;
  }

  .hero-h1 {
    font-size: 2.85rem;
  }

  .hero-badge {
    font-size: 0.63rem;
  }

  .phone-stage {
    height: 352px;
  }

  .pw.center {
    transform: translateX(-50%) scale(0.74) !important;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}
