:root {
  --red: #ff1c1c;
  --red-d: #cc0000;
  --red-xl: #8b0000;
  --red-s: rgba(255, 28, 28, 0.08);
  --red-m: rgba(255, 28, 28, 0.14);
  --red-g: rgba(255, 28, 28, 0.22);
  --ink: #0a0a0c;
  --ink2: #1c1c22;
  --mid: #5a5a6a;
  --soft: #9a9aaa;
  --line: #e4e4ee;
  --bg: #fafafa;
  --bg2: #f2f2f6;
  --bg3: #eaeaf0;
  --white: #fff;
  --gold: #f59e0b;
  --blue: #2563eb;
  --teal: #0d9488;
  --green: #16a34a;
  --purple: #8b5cf6;
  --orange: #ea580c;
  --r: 12px;
  --rl: 20px;
  --rxl: 28px;
  --sh: 0 2px 16px rgba(0, 0, 0, 0.06);
  --sh-m: 0 8px 32px rgba(0, 0, 0, 0.1);
  --sh-l: 0 20px 60px rgba(0, 0, 0, 0.13);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Open Sans", sans-serif;
  line-height: 1.05;
}

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

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg2);
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 2px;
}

/* UTILS */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.red {
  color: var(--red);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red-s);
  border: 1px solid var(--red-m);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.tag i[data-lucide] {
  width: 12px;
  height: 12px;
}

.sec {
  padding: 96px 0;
}

.sec-alt {
  background: var(--bg2);
}

.sh {
  text-align: center;
  margin-bottom: 64px;
}

.sh-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  margin: 16px 0 14px;
}

.sh-sub {
  color: var(--mid);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── SPORTS FLOATING ICONS ANIMATION ── */
.sports-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.sb-icon {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0.04;
  animation: floatSport linear infinite;
  user-select: none;
}

@keyframes floatSport {
  0% {
    transform: translateY(110vh) rotate(0deg);
    opacity: 0;
  }

  5% {
    opacity: 0.04;
  }

  95% {
    opacity: 0.04;
  }

  100% {
    transform: translateY(-10vh) rotate(360deg);
    opacity: 0;
  }
}

/* ── ANIMATED DIVIDER ── */
.sport-divider {
  width: 100%;
  height: 3px;
  position: relative;
  overflow: hidden;
  background: var(--line);
}

.sport-divider::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  animation: scanLine 3s ease-in-out infinite;
}

@keyframes scanLine {
  0% {
    left: -60%;
  }

  100% {
    left: 160%;
  }
}

/* ── PULSE RING ANIMATION ── */
@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* ── SCORE COUNTER ANIMATION ── */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

/* ── BLINK ── */
.live-dot {
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  animation: blink 1.2s infinite;
  display: inline-block;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--sh);
  transition: all 0.3s;
}

.nav-i {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 24px; */
  height: 66px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 10px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.nav-logo-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(255, 255, 255, 0.2)
  );
}

.nav-logo-icon i[data-lucide] {
  width: 18px;
  height: 18px;
  color: #fff;
  stroke-width: 2.5;
  position: relative;
  z-index: 1;
}

/* header-logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo img {
  height: 50px;
  width: auto;
}

.header-logo .logo-product img {
  height: 40px;
}

.header-logo .divider {
  width: 1px;
  height: 28px;
  background: #3b82f6;
}

.header-logo .logo-product {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 50px;
  padding: 6px 12px;
  border-radius: 9999px;
  background: #bfdbfe;
  border: 1.5px solid #93c5fd;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mid);
  padding: 7px 14px;
  border-radius: 8px;
  transition:
    color 0.2s,
    background 0.2s;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--red-s);
}

.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  font-weight: 700 !important;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(255, 28, 28, 0.3);
  transition:
    box-shadow 0.2s,
    transform 0.2s !important;
}

.nav-cta:hover {
  box-shadow: 0 6px 20px rgba(255, 28, 28, 0.4) !important;
  transform: translateY(-1px) !important;
}

.nav-cta i[data-lucide] {
  width: 14px;
  height: 14px;
}

.ham {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
}

.ham i[data-lucide] {
  width: 24px;
  height: 24px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #fff 0%, var(--bg2) 100%);
}

.hero-glow {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 28, 28, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}

.hero-glow2 {
  position: absolute;
  bottom: -250px;
  left: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.05) 0%,
    transparent 65%
  );
  pointer-events: none;
}

@keyframes glowPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

/* Hero pattern */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 40%,
    transparent 100%
  );
  opacity: 0.5;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #dc2626;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 10px;
  border-radius: 100px;
}

.hero-h {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 22px;
  color: var(--ink);
}

.hero-h .accent {
  color: var(--red);
  position: relative;
}

.hero-h .accent::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  opacity: 0.3;
}

.hero-sub {
  color: var(--mid);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--r);
  box-shadow: 0 4px 20px rgba(255, 28, 28, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 28, 28, 0.4);
}

.btn-red i[data-lucide] {
  width: 16px;
  height: 16px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--line);
  color: var(--ink);
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--r);
  background: var(--white);
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
  box-shadow: var(--sh);
}

.btn-ghost:hover {
  border-color: var(--red);
  background: var(--red-s);
  box-shadow: var(--sh-m);
}

.btn-ghost i[data-lucide] {
  width: 16px;
  height: 16px;
}

.hero-stats {
  display: flex;
  gap: 0;
}

.hst {
  padding: 0 28px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.hst:first-child {
  padding-left: 0;
}

.hst:last-child {
  border-right: none;
}

.hst-n {
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
  animation: countUp 0.8s ease both;
}

.hst-l {
  font-size: 0.78rem;
  color: var(--mid);
  font-weight: 500;
  margin-top: 2px;
}

/* ── PHONE MOCKUP ── */
.phone-zone {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-wrap {
  position: relative;
  width: 280px;
}

.p-shell {
  width: 280px;
  border-radius: 36px;
  background: linear-gradient(145deg, #fff, #f0f0f8);
  border: 1.5px solid var(--line);
  box-shadow:
    var(--sh-l),
    0 0 0 1px rgba(255, 28, 28, 0.05);
  overflow: hidden;
  animation: phoneFloat 5s ease-in-out infinite;
}

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

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

.p-scr {
  padding: 20px 16px 16px;
  min-height: 560px;
  position: relative;
  background: var(--bg2);
}

.p-notch {
  width: 80px;
  height: 24px;
  background: var(--ink2);
  border-radius: 0 0 16px 16px;
  margin: 0 auto 12px;
}

.p-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.p-time {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
}

.p-icons {
  display: flex;
  gap: 4px;
}

.p-icons i[data-lucide] {
  width: 12px;
  height: 12px;
  color: var(--mid);
}

.p-head {
  margin-bottom: 12px;
}

.p-head-sub {
  font-size: 10px;
  color: var(--mid);
}

.p-head-name {
  font-size: 14px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  color: var(--ink);
}

.p-search {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--soft);
  margin-bottom: 12px;
  box-shadow: var(--sh);
}

.p-search i[data-lucide] {
  width: 11px;
  height: 11px;
  color: var(--soft);
}

.p-live {
  background: var(--red-s);
  border: 1px solid var(--red-m);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 12px;
}

.p-live-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 8px;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.p-score {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.p-team {
  text-align: center;
}

.p-tname {
  font-size: 8px;
  color: var(--mid);
  font-weight: 600;
}

.p-tnum {
  font-size: 22px;
  font-weight: 800;
  font-family: "Open Sans", sans-serif;
  color: var(--ink);
}

.p-vs {
  font-size: 8px;
  color: var(--soft);
  font-weight: 700;
  padding: 0 8px;
}

.p-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}

.p-act {
  text-align: center;
}

.p-act-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin: 0 auto 4px;
}

.p-act-ico i[data-lucide] {
  width: 14px;
  height: 14px;
}

.p-act-lbl {
  font-size: 7.5px;
  color: var(--mid);
  font-weight: 600;
}

.p-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-around;
  padding: 10px 0 14px;
}

.p-nav i[data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--soft);
}

.p-nav i.on[data-lucide] {
  color: var(--red);
}

.float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--sh-m);
  min-width: 170px;
  z-index: 5;
}

.fc1 {
  top: 40px;
  right: -85px;
  animation: floatCard1 4s ease-in-out infinite;
}

.fc2 {
  bottom: 100px;
  left: -85px;
  animation: floatCard2 4.5s ease-in-out infinite;
}

@keyframes floatCard1 {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

@keyframes floatCard2 {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-6px) rotate(1deg);
  }
}

.fc-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.fc-ico i[data-lucide] {
  width: 16px;
  height: 16px;
}

.fc-t {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
}

.fc-s {
  font-size: 9px;
  color: var(--mid);
}

/* ── TICKER ── */
.ticker {
  overflow: hidden;
  background: var(--red);
  padding: 11px 0;
  position: relative;
  z-index: 1;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

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

.ti {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0 24px;
  white-space: nowrap;
}

.ti i[data-lucide] {
  width: 14px;
  height: 14px;
}

.ti-sep {
  color: rgba(255, 255, 255, 0.4);
  padding: 0 4px;
}

/* ── ANIMATED BALL ── */
.ball-anim {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    #fff 0%,
    rgba(255, 255, 255, 0.3) 60%,
    transparent 100%
  );
  border: 2px solid rgba(255, 255, 255, 0.6);
  animation: ballBounce 1.2s ease-in-out infinite;
  z-index: 2;
}

@keyframes ballBounce {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
  }

  50% {
    transform: translateY(-70%) scale(0.95);
  }
}

/* ── CARDS BASE ── */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--rl);
  box-shadow: var(--sh);
  transition:
    box-shadow 0.3s,
    transform 0.3s,
    border-color 0.3s;
}

.card:hover {
  box-shadow: var(--sh-m);
  transform: translateY(-3px);
  border-color: rgba(255, 28, 28, 0.2);
}

/* ── HOW IT WORKS ── */
.hiw-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hiw-c {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--rl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh);
  transition:
    box-shadow 0.3s,
    transform 0.3s,
    border-color 0.3s;
}

.hiw-c:hover {
  box-shadow: var(--sh-m);
  transform: translateY(-4px);
  border-color: rgba(255, 28, 28, 0.25);
}

.hiw-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: "Open Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--red-s);
  line-height: 1;
  letter-spacing: -2px;
}

.hiw-num span {
  color: rgba(255, 28, 28, 0.08);
}

.hiw-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.hiw-ico i[data-lucide] {
  width: 24px;
  height: 24px;
}

.hiw-t {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}

.hiw-d {
  color: var(--mid);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* connector line */
.hiw-g {
  position: relative;
}

.hiw-g::before {
  content: "";
  position: absolute;
  top: 56px;
  left: calc(16.66% + 32px);
  right: calc(16.66% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--red-m), var(--red-s), var(--red-m));
  z-index: 0;
  border-radius: 2px;
}

.hiw-c {
  position: relative;
  z-index: 1;
}

/* ── BENTO FEATURES ── */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bx {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--rl);
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh);
  transition:
    box-shadow 0.3s,
    transform 0.3s,
    border-color 0.3s;
}

.bx:hover {
  box-shadow: var(--sh-m);
  transform: translateY(-3px);
  border-color: rgba(255, 28, 28, 0.2);
}

.bx1 {
  grid-column: span 1;
}

.bx2 {
  grid-column: span 1;
}

.bx3 {
  grid-column: span 1;
}

.bx4 {
  grid-column: span 2;
}

.bx5 {
  grid-column: span 1;
}

.bx6 {
  grid-column: span 1;
}

.bx7 {
  grid-column: span 1;
}

.bx8 {
  grid-column: span 1;
}

.bx9 {
  grid-column: span 1;
}

.bx10 {
  grid-column: span 2;
}

.bi {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.bi i[data-lucide] {
  width: 22px;
  height: 22px;
}

.bt {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.bd {
  color: var(--mid);
  font-size: 0.88rem;
  line-height: 1.65;
}

.bw {
  position: absolute;
  bottom: 18px;
  right: 20px;
  font-family: "Open Sans", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  letter-spacing: -1px;
}

/* SCORE MINI */
.score-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--red-s);
  border: 1px solid var(--red-m);
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 16px;
}

.sm-t {
  text-align: center;
}

.sm-n {
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
}

.sm-l {
  font-size: 0.72rem;
  color: var(--mid);
}

.sm-vs {
  flex: 1;
  text-align: center;
  font-size: 0.65rem;
  color: var(--red);
  font-weight: 800;
  letter-spacing: 1.5px;
  background: var(--red-m);
  border-radius: 8px;
  padding: 4px 8px;
  animation: vsGlow 2s ease-in-out infinite;
}

@keyframes vsGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 28, 28, 0);
  }

  50% {
    box-shadow: 0 0 12px rgba(255, 28, 28, 0.2);
  }
}

/* ── GAME SCORES ── */
.game-scores-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.gs-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--sh);
  transition:
    box-shadow 0.3s,
    border-color 0.3s,
    transform 0.3s;
}

.gs-card:hover {
  box-shadow: var(--sh-m);
  border-color: rgba(255, 28, 28, 0.2);
  transform: translateY(-3px);
}

.gs-sport {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.gs-sport i[data-lucide] {
  width: 14px;
  height: 14px;
}

.gs-teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gs-team {
  text-align: center;
}

.gs-tname {
  font-size: 0.8rem;
  color: var(--mid);
  margin-bottom: 4px;
}

.gs-score {
  font-family: "Open Sans", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
}

.gs-score.win {
  color: var(--red);
}

.gs-sep {
  color: var(--soft);
  font-size: 0.75rem;
  font-weight: 700;
}

.gs-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 6px;
  margin-top: 12px;
}

.gs-status.live {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.gs-status.done {
  background: var(--bg3);
  color: var(--mid);
}

/* ── OWNER SECTION ── */
.owner-lay {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.odash {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--sh-l);
}

.od-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.od-brand {
  display: flex;
  gap: 10px;
  align-items: center;
}

.od-ico {
  width: 38px;
  height: 38px;
  background: var(--red);
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.od-ico i[data-lucide] {
  width: 18px;
  height: 18px;
  color: #fff;
}

.od-name {
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.od-sub {
  font-size: 0.72rem;
  color: var(--mid);
}

.live-b {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #dc2626;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.kpi {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}

.kpi-n {
  font-family: "Open Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.kpi-l {
  font-size: 0.68rem;
  color: var(--mid);
  margin-top: 2px;
}

.ch-h {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.ch-bars {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  height: 60px;
  margin-bottom: 16px;
}

.b-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
}

.b-b {
  width: 100%;
  background: var(--red-s);
  border-radius: 4px 4px 0 0;
  min-height: 8px;
}

.b-b.hi {
  background: var(--red);
}

.b-l {
  font-size: 0.62rem;
  color: var(--mid);
  font-weight: 600;
}

.sl-h {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.sl-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 6px;
}

.sl-t {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
}

.sl-i {
  font-size: 0.7rem;
  color: var(--mid);
}

.sbadge {
  font-size: 0.62rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.osteps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ostep {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ost-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--red-s);
  border: 1px solid var(--red-m);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.ost-ico i[data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--red);
}

.ost-t {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 3px;
  color: var(--ink);
}

.ost-d {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ── FIND SECTION ── */
.find-g {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.find-c {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--rl);
  padding: 28px;
  text-align: center;
  box-shadow: var(--sh);
  transition:
    box-shadow 0.3s,
    transform 0.3s,
    border-color 0.3s;
}

.find-c:hover {
  box-shadow: var(--sh-m);
  transform: translateY(-4px);
  border-color: rgba(255, 28, 28, 0.25);
}

.find-ico {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}

.find-ico i[data-lucide] {
  width: 28px;
  height: 28px;
}

.find-t {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.find-d {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ── INDOOR ── */
.indoor-g {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ind-c {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--rl);
  padding: 24px;
  box-shadow: var(--sh);
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ind-c:hover {
  border-color: rgba(139, 92, 246, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--sh-m);
}

.ind-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}

.ind-ico i[data-lucide] {
  width: 24px;
  height: 24px;
}

.ind-t {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

.ind-d {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.55;
}

.ind-from {
  font-size: 0.75rem;
  color: var(--purple);
  font-weight: 700;
}

/* ── PRICING ── */
.price-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh);
}

.pc.pop {
  border-color: rgba(255, 28, 28, 0.35);
  background: linear-gradient(160deg, rgba(255, 28, 28, 0.03), var(--white));
  box-shadow: 0 8px 40px rgba(255, 28, 28, 0.12);
}

.pop-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 100px;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 28, 28, 0.4);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(255, 28, 28, 0);
  }
}

.pt-l {
  font-family: "Open Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mid);
  margin-bottom: 16px;
}

.pt-l.r {
  color: var(--red);
}

.pp {
  font-family: "Open Sans", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--ink);
}

.pp sub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--mid);
}

.pp.gr {
  color: var(--red);
}

.pd {
  color: var(--mid);
  font-size: 0.88rem;
  margin: 12px 0 20px;
}

.pfeats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pfeat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink);
}

.pfeat i[data-lucide] {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0;
}

.pfeat.off {
  color: var(--soft);
}

.pfeat.off i[data-lucide] {
  color: var(--soft);
}

.pbtn {
  display: block;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px;
  border-radius: var(--r);
  transition: all 0.2s;
}

.pbtn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 28, 28, 0.25);
}

.pbtn-red:hover {
  box-shadow: 0 8px 24px rgba(255, 28, 28, 0.4);
  transform: translateY(-2px);
}

.pbtn-ghost {
  border: 1.5px solid var(--line);
  color: var(--ink);
  background: var(--white);
}

.pbtn-ghost:hover {
  border-color: var(--red);
  background: var(--red-s);
}

/* ── STORE ── */
.store-lay {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sp-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.sp {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: var(--sh);
  transition:
    border-color 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
}

.sp:hover {
  border-color: rgba(255, 28, 28, 0.25);
  transform: translateY(-3px);
  box-shadow: var(--sh-m);
}

.sp-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
}

.sp-ico i[data-lucide] {
  width: 26px;
  height: 26px;
}

.sp-name {
  font-family: "Open Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
}

.sp-price {
  font-size: 0.75rem;
  color: var(--red);
  font-weight: 600;
}

.sprks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.sprk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--mid);
}

.sprk i[data-lucide] {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0;
}

.spromo {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red-s);
  border: 1px solid var(--red-m);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.88rem;
}

.spromo i[data-lucide] {
  width: 16px;
  height: 16px;
  color: var(--red);
}

/* ── TESTIMONIALS ── */
.testi-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--sh);
  transition:
    box-shadow 0.3s,
    border-color 0.3s;
}

.tc:hover {
  box-shadow: var(--sh-m);
  border-color: rgba(255, 28, 28, 0.2);
}

.tc-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.tc-q {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.tc-av {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--bg3);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.tc-n {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}

.tc-r {
  font-size: 0.75rem;
  color: var(--mid);
}

/* ── MORE GRID ── */
.more-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--sh);
  transition:
    box-shadow 0.3s,
    border-color 0.3s;
}

.mc:hover {
  box-shadow: var(--sh-m);
  border-color: rgba(255, 28, 28, 0.2);
}

.mc-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.mc-ico i[data-lucide] {
  width: 20px;
  height: 20px;
}

.mc-t {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--ink);
}

.mc-d {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ── DOWNLOAD ── */
.dl-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--rxl);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-l);
}

.dl-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(255, 28, 28, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Animated sport lines bg in download */
.dl-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 28, 28, 0.03) 0,
    rgba(255, 28, 28, 0.03) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 20px 20px;
}

.dl-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin: 16px 0 12px;
  position: relative;
  z-index: 1;
}

.dl-sub {
  color: var(--mid);
  font-size: 1rem;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.dl-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.dl-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg2);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 16px 28px;
  cursor: pointer;
  box-shadow: var(--sh);
  transition:
    border-color 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
}

.dl-btn:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: var(--sh-m);
}

.dl-btn i[data-lucide] {
  width: 28px;
  height: 28px;
}

.dl-btn-copy div:first-child {
  font-size: 0.72rem;
  color: var(--mid);
}

.dl-btn-copy div:last-child {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

.dl-nums {
  display: flex;
  justify-content: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.dl-nn {
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
}

.dl-nl {
  font-size: 0.78rem;
  color: var(--mid);
  margin-top: 2px;
}

/* ── FAQ ── */
.faq-w {
  max-width: 720px;
  margin: 0 auto;
}

.fi {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: var(--sh);
  transition: box-shadow 0.2s;
}

.fi.open {
  border-color: rgba(255, 28, 28, 0.3);
  box-shadow: 0 4px 20px rgba(255, 28, 28, 0.08);
}

.fq {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  user-select: none;
  color: var(--ink);
}

.fq i[data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--mid);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.fi.open .fq i[data-lucide] {
  transform: rotate(180deg);
  color: var(--red);
}

.fa-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.fi.open .fa-a {
  max-height: 300px;
}

.fa-in {
  padding: 0 24px 20px;
  color: var(--mid);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ── CONTACT ── */
.con-lay {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.cc {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 12px;
  box-shadow: var(--sh);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.cc:hover {
  border-color: rgba(255, 28, 28, 0.3);
  box-shadow: var(--sh-m);
}

.cc-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cc-ico i[data-lucide] {
  width: 20px;
  height: 20px;
}

.cc-l {
  font-size: 0.72rem;
  color: var(--mid);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cc-v {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.cform {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--sh-m);
}

.cform-t {
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--ink);
}

.ci-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.ci {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.ci:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 28, 28, 0.1);
}

.ci::placeholder {
  color: var(--soft);
}

select.ci {
  cursor: pointer;
}

textarea.ci {
  resize: none;
}

.fsoc {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  cursor: pointer;
  background: var(--white);
  box-shadow: var(--sh);
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s;
}

.fsoc:hover {
  border-color: var(--red);
  background: var(--red-s);
  transform: translateY(-2px);
}

.fsoc i[data-lucide] {
  width: 16px;
  height: 16px;
  color: var(--mid);
}

.soc-row {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

/* ── FAB ── */
.fab-wa {
  position: fixed;
  bottom: 28px;
  right: 84px;
  z-index: 50;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
}

.fab-wa:hover {
  transform: scale(1.1);
}

.fab-wa i[data-lucide] {
  width: 24px;
  height: 24px;
  color: #fff;
}

#fabTop {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 50;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #0a6cff;
  color: #fff;
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--sh-m);
  transition:
    border-color 0.2s,
    transform 0.2s;
  opacity: 0;
}

#fabTop.show {
  opacity: 1;
}

#fabTop:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

#fabTop i[data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--mid);
}

/* ── SPORTS ANIMATION STRIP ── */
.sport-strip {
  background: var(--red);
  overflow: hidden;
  position: relative;
  height: 48px;
  display: flex;
  align-items: center;
}

.running-figure {
  position: absolute;
  font-size: 1.4rem;
  animation: runAcross 8s linear infinite;
  white-space: nowrap;
}

@keyframes runAcross {
  0% {
    left: -60px;
  }

  100% {
    left: calc(100% + 60px);
  }
}

.running-figure:nth-child(2) {
  animation-delay: 2.5s;
}

.running-figure:nth-child(3) {
  animation-delay: 5s;
}

/* ── MOBILE MENU ── */
#mob {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 10, 12, 0.5);
  backdrop-filter: blur(8px);
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}

#mob.show {
  display: flex;
}

#mob.visible {
  opacity: 1;
}

.mob-panel {
  width: 300px;
  height: 100%;
  background: var(--white);
  border-right: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--sh-l);
}

.mob-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mob-close {
  background: none;
  border: none;
  color: var(--mid);
  cursor: pointer;
}

.mob-close i[data-lucide] {
  width: 22px;
  height: 22px;
}

.mob-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mob-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--mid);
  transition:
    background 0.2s,
    color 0.2s;
}

.mob-links a:hover {
  background: var(--red-s);
  color: var(--red);
}

.mob-links i[data-lucide] {
  width: 16px;
  height: 16px;
}

.mob-footer {
  margin-top: auto;
}

.mob-cta-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.mob-dl-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.82rem;
  border: none;
  cursor: pointer;
}

.mob-dl-btn.red {
  background: var(--red);
  color: #fff;
}

.mob-dl-btn i[data-lucide] {
  width: 14px;
  height: 14px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .phone-zone {
    display: none;
  }

  .hiw-g,
  .game-scores-g,
  .find-g,
  .indoor-g,
  .testi-g,
  .price-g,
  .more-g {
    grid-template-columns: 1fr 1fr;
  }

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

  .bx4,
  .bx5,
  .bx10 {
    grid-column: span 1;
  }

  .owner-lay,
  .store-lay,
  .con-lay {
    grid-template-columns: 1fr;
  }

  .footer-g {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }

  .ham {
    display: flex;
    margin-left: auto;
  }
}

@media (max-width: 560px) {
  .hiw-g,
  .find-g,
  .indoor-g,
  .testi-g,
  .price-g,
  .more-g,
  .game-scores-g {
    grid-template-columns: 1fr;
  }

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

  .footer-g {
    grid-template-columns: 1fr;
  }

  .dl-nums {
    gap: 24px;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .hst {
    padding: 8px 14px;
  }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

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