/* =====================================================================
   Vira — Skincare campaign landing
   Brand: orange #ff6900 + black #111 + white. Mobile-first.
   ===================================================================== */

:root {
  --yellow: #ff6900;
  --yellow-deep: #e55a00;
  --ink: #111111;
  --ink-soft: #3a3a3a;
  --muted: #6b6b6b;
  --line: #e7e7e7;
  --bg: #ffffff;
  --bg-soft: #f6f6f5;
  --arg: #75AADB;
  /* Argentina light blue */
  --arg-deep: #4f8fc7;
  --bra: #009C3B;
  /* Brazil green */
  --bra-deep: #00822f;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 2px 6px rgba(17, 17, 17, .04), 0 14px 34px rgba(17, 17, 17, .08);
  --shadow-lg: 0 2px 8px rgba(17, 17, 17, .05), 0 18px 44px rgba(17, 17, 17, .10), 0 42px 96px rgba(17, 17, 17, .12);
  --ring: 0 0 0 4px rgba(255, 105, 0, .30);
  --maxw: 1160px;
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Bricolage Grotesque", var(--font);
  --font-bn: "Hind Siliguri", "Plus Jakarta Sans", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px
}

::selection {
  background: var(--ink);
  color: var(--yellow)
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  border-radius: 6px
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.bn {
  font-family: var(--font-bn)
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px
}

.container--narrow {
  max-width: 760px
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  padding: .85rem 1.6rem;
  overflow: hidden;
  transition: transform .18s cubic-bezier(.2, .6, .2, 1), box-shadow .22s ease, background .2s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px) scale(.99)
}

.btn--yellow {
  background: linear-gradient(180deg, #ff8533 0%, var(--yellow) 52%, #e55a00 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), inset 0 -1px 0 rgba(0, 0, 0, .08),
    0 1px 2px rgba(17, 17, 17, .12), 0 10px 26px rgba(255, 105, 0, .38);
}

.btn--yellow::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -70%;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: skewX(-18deg);
  transition: left .5s ease;
  pointer-events: none;
}

.btn--yellow:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), inset 0 -1px 0 rgba(0, 0, 0, .08),
    0 2px 4px rgba(17, 17, 17, .10), 0 16px 34px rgba(255, 105, 0, .45);
}

.btn--yellow:hover::after {
  left: 125%
}

.btn--dark {
  background: linear-gradient(180deg, #242424, #0c0c0c);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 1px 2px rgba(17, 17, 17, .2), 0 10px 24px rgba(17, 17, 17, .25);
}

.btn--dark:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 2px 4px rgba(17, 17, 17, .18), 0 14px 30px rgba(17, 17, 17, .32);
}

.btn--sm {
  padding: .6rem 1.15rem;
  font-size: .9rem
}

.btn--lg {
  padding: 1.05rem 2rem;
  font-size: 1.08rem
}

.btn--block {
  width: 100%
}

/* ---------- Button footballs ----------
   Idle: gentle bob. Hover: the ball spins like it's being dribbled.
   Click: quick squash-kick, and JS launches a flying ball off the button. */
.btn__ball {
  display: inline-flex;
  width: 1.3em;
  height: 1.3em;
  flex: none;
  margin-right: .1em
}

.stickycta .btn__ball {
  vertical-align: -.3em;
  margin-right: .45em
}

.btn__ball img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .22))
}

@media (prefers-reduced-motion:no-preference) {
  .btn__ball img {
    animation: ballIdle 2.6s ease-in-out infinite
  }

  :is(.btn, .stickycta):hover .btn__ball img {
    animation: ballSpin .6s linear infinite
  }

  .btn__ball.is-kicked img {
    animation: ballKick .45s cubic-bezier(.2, .7, .3, 1)
  }
}

@keyframes ballIdle {

  0%,
  100% {
    transform: translateY(0) rotate(0)
  }

  50% {
    transform: translateY(-2px) rotate(14deg)
  }
}

@keyframes ballSpin {
  to {
    transform: rotate(360deg)
  }
}

@keyframes ballKick {
  0% {
    transform: scale(1)
  }

  35% {
    transform: scale(.7) rotate(-16deg)
  }

  70% {
    transform: scale(1.18) rotate(10deg)
  }

  100% {
    transform: scale(1)
  }
}

/* the ball a button "kicks out" on click — arcs up, drops, fades */
.flyball {
  position: fixed;
  z-index: 80;
  pointer-events: none;
  will-change: transform, opacity;
  filter: drop-shadow(0 6px 6px rgba(0, 0, 0, .2));
  animation: flyKick .85s cubic-bezier(.3, .5, .4, 1) forwards;
}

@keyframes flyKick {
  0% {
    transform: translate(0, 0) rotate(0);
    opacity: 1
  }

  45% {
    transform: translate(calc(var(--fx, 1)*110px), -130px) rotate(calc(var(--fx, 1)*300deg));
    opacity: 1
  }

  100% {
    transform: translate(calc(var(--fx, 1)*230px), 60px) rotate(calc(var(--fx, 1)*560deg));
    opacity: 0
  }
}

/* ---------- Topbar ---------- */
.topbar {
  background: linear-gradient(90deg, #171717, #000 55%, #171717);
  color: #fff;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .01em;
  display: flex;
  gap: .6rem;
  justify-content: center;
  align-items: center;
  padding: .55rem 16px;
  flex-wrap: wrap;
  text-align: center;
  box-shadow: inset 0 -1px 0 rgba(255, 105, 0, .18);
}

.topbar .sep {
  opacity: .4
}

.topbar strong {
  color: var(--yellow)
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(17, 17, 17, .06);
  transition: box-shadow .25s ease;
}

.header.is-scrolled {
  box-shadow: 0 12px 32px rgba(17, 17, 17, .08)
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  color: var(--ink)
}

.logo__img {
  height: 44px;
  width: auto;
  display: block
}

.logo__word {
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -.02em
}

.nav {
  display: flex;
  gap: 1.4rem
}

.nav a {
  position: relative;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: .92rem;
  padding: .3rem 0;
  transition: color .15s
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s cubic-bezier(.2, .6, .2, 1);
}

.nav a:hover {
  color: var(--ink)
}

.nav a:hover::after {
  transform: scaleX(1)
}

.header__cta {
  display: flex;
  align-items: center;
  gap: .8rem
}

.header__timer {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 600
}

.header__timer strong {
  color: var(--ink)
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 88% -12%, rgba(255, 255, 255, .6), transparent 55%),
    radial-gradient(700px 500px at 6% 118%, rgba(255, 255, 255, .45), transparent 50%),
    linear-gradient(158deg, #ff8533 0%, var(--yellow) 46%, #e55a00 100%);
  padding: 58px 0 72px;
}

/* subtle dot texture + fine grain, fading downward */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(rgba(0, 0, 0, .05) 1.3px, transparent 1.3px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 22px 22px, 180px 180px;
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
}

/* soft decorative orb */
.hero::after {
  content: "";
  position: absolute;
  top: -140px;
  right: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .5), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ===== Animated matchday backdrop ===== */
.hero__fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(var(--px, 0px), calc(var(--py, 0px) + var(--sy, 0px)), 0);
  will-change: transform;
}

/* stadium floodlight glow, breathing slowly from each corner */
.hero__beam {
  position: absolute;
  top: -22%;
  width: 48%;
  height: 75%;
  pointer-events: none;
  filter: blur(28px)
}

.hero__beam--l {
  left: -10%;
  background: radial-gradient(ellipse at 18% 0%, rgba(255, 255, 255, .5), transparent 62%);
  animation: beamGlow 7.5s ease-in-out infinite
}

.hero__beam--r {
  right: -10%;
  background: radial-gradient(ellipse at 82% 0%, rgba(255, 255, 255, .45), transparent 62%);
  animation: beamGlow 7.5s ease-in-out infinite -3.7s
}

@keyframes beamGlow {

  0%,
  100% {
    opacity: .3
  }

  50% {
    opacity: .65
  }
}

/* floating stadium bokeh (spawned by JS, skipped for reduced motion) */
.spark {
  position: absolute;
  bottom: -14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, rgba(255, 255, 255, .25) 70%, transparent);
  opacity: 0;
  transform: scale(var(--s, 1));
  animation: sparkUp var(--d, 12s) linear infinite;
  will-change: transform, opacity;
}

@keyframes sparkUp {
  0% {
    transform: translate(0, 0) scale(var(--s, 1));
    opacity: 0
  }

  10% {
    opacity: .75
  }

  85% {
    opacity: .45
  }

  100% {
    transform: translate(var(--x, 0px), -84vh) scale(var(--s, 1));
    opacity: 0
  }
}

/* tap-a-ball pop burst */
.kickburst {
  position: absolute;
  z-index: 1;
  width: 16px;
  height: 16px;
  pointer-events: none
}

.kickburst::before,
.kickburst::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, .95)
}

.kickburst::before {
  animation: burstRing .55s cubic-bezier(.2, .7, .3, 1) forwards
}

.kickburst::after {
  border-color: rgba(17, 17, 17, .35);
  animation: burstRing .7s cubic-bezier(.2, .7, .3, 1) .08s forwards
}

@keyframes burstRing {
  from {
    transform: scale(.35);
    opacity: 1
  }

  to {
    transform: scale(3.6);
    opacity: 0
  }
}

/* pause the whole backdrop when the hero is scrolled out of view */
.fx-off .ball,
.fx-off .spark,
.fx-off .hero__sweep,
.fx-off .pitchring,
.fx-off .hero__beam {
  animation-play-state: paused
}

.hero__fxdefs {
  position: absolute;
  width: 0;
  height: 0
}

/* faint pitch center-circle, bottom-left */
.pitchring {
  position: absolute;
  left: -110px;
  bottom: -150px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, .06);
  animation: ringPulse 7s ease-in-out infinite
}

.pitchring::after {
  content: "";
  position: absolute;
  inset: 38%;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, .06)
}

@keyframes ringPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .8
  }

  50% {
    transform: scale(1.05);
    opacity: 1
  }
}

/* soft stadium light sweep */
.hero__sweep {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -45%;
  width: 38%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .4), transparent);
  transform: skewX(-12deg);
  filter: blur(6px);
  animation: sweep 9s ease-in-out infinite
}

@keyframes sweep {
  0% {
    left: -45%
  }

  55% {
    left: 120%
  }

  100% {
    left: 120%
  }
}

/* footballs — interactive: they swerve away from the cursor (via the
   composable `translate`/`scale` properties, so the keyframe transform
   keeps running underneath) and fly off with spin when kicked (clicked) */
.ball {
  position: absolute;
  opacity: 0;
  will-change: transform, opacity;
  filter: drop-shadow(0 6px 6px rgba(0, 0, 0, .18));
  pointer-events: auto;
  cursor: pointer;
  transition: translate .55s cubic-bezier(.2, .6, .2, 1), scale .25s ease;
}

.ball:hover {
  scale: 1.15
}

/* the kicked ball — a clone that rockets away in the kick direction */
.ballfly {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: .85;
  will-change: transform, opacity;
  filter: drop-shadow(0 6px 6px rgba(0, 0, 0, .18));
  animation: ballFly .8s cubic-bezier(.25, .55, .35, 1) forwards;
}

@keyframes ballFly {
  0% {
    transform: translate(0, 0) rotate(0)
  }

  100% {
    transform: translate(var(--kx, 140px), var(--ky, -240px)) rotate(var(--kr, 520deg));
    opacity: 0
  }
}

/* floating "+1 ⚽" / "GOAL!" score above a kicked ball */
.kickscore {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  translate: -50% 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .65);
  white-space: nowrap;
  animation: scoreUp .95s cubic-bezier(.2, .6, .2, 1) forwards;
}

.kickscore--goal {
  font-size: 1.5rem
}

@keyframes scoreUp {
  0% {
    transform: translateY(6px) scale(.7);
    opacity: 0
  }

  18% {
    transform: translateY(-6px) scale(1.08);
    opacity: 1
  }

  100% {
    transform: translateY(-64px) scale(1);
    opacity: 0
  }
}

.ball--1 {
  width: 66px;
  height: 66px;
  left: 3%;
  bottom: -60px;
  animation: floatUp 15s linear infinite
}

.ball--2 {
  width: 40px;
  height: 40px;
  left: 26%;
  bottom: -60px;
  animation: floatUp 12s linear infinite 5s
}

.ball--3 {
  width: 52px;
  height: 52px;
  left: 46%;
  bottom: -60px;
  animation: floatUp 18s linear infinite 9s
}

@keyframes floatUp {
  0% {
    transform: translateY(0) translateX(0) rotate(0);
    opacity: 0
  }

  14% {
    opacity: .4
  }

  86% {
    opacity: .4
  }

  100% {
    transform: translateY(-78vh) translateX(46px) rotate(320deg);
    opacity: 0
  }
}

/* the "shot on goal" — a ball rises up the left edge, then arcs across the top */
.ball--shot {
  width: 38px;
  height: 38px;
  left: 0;
  top: 0;
  animation: shot 8s ease-in-out infinite 2.5s
}

@keyframes shot {
  0% {
    transform: translate(-40px, 74vh) rotate(0);
    opacity: 0
  }

  6% {
    opacity: .58
  }

  28% {
    transform: translate(4vw, 6vh) rotate(300deg);
    opacity: .58
  }

  55% {
    transform: translate(108vw, 15vh) rotate(680deg);
    opacity: 0
  }

  100% {
    transform: translate(108vw, 15vh) rotate(680deg);
    opacity: 0
  }
}

/* a football drops in from the top and bounces on the pitch */
.ball--drop {
  width: 46px;
  height: 46px;
  left: 5%;
  top: 0;
  animation: drop 8s infinite 1.2s
}

@keyframes drop {
  0% {
    transform: translateY(-18vh) rotate(0);
    opacity: 0;
    animation-timing-function: cubic-bezier(.5, 0, .9, .35)
  }

  5% {
    opacity: .55
  }

  26% {
    transform: translateY(56vh) rotate(150deg);
    animation-timing-function: cubic-bezier(.1, .7, .5, 1)
  }

  40% {
    transform: translateY(36vh) rotate(225deg);
    animation-timing-function: cubic-bezier(.5, 0, .9, .35)
  }

  52% {
    transform: translateY(56vh) rotate(300deg);
    animation-timing-function: cubic-bezier(.1, .7, .5, 1)
  }

  62% {
    transform: translateY(46vh) rotate(350deg);
    animation-timing-function: cubic-bezier(.5, 0, .9, .35)
  }

  71% {
    transform: translateY(56vh) rotate(390deg);
    animation-timing-function: cubic-bezier(.1, .7, .5, 1)
  }

  78% {
    transform: translateY(52vh) rotate(410deg);
    animation-timing-function: cubic-bezier(.5, 0, .9, .35)
  }

  84% {
    transform: translateY(56vh) rotate(420deg)
  }

  92% {
    transform: translateY(56vh) rotate(420deg);
    opacity: .55
  }

  100% {
    transform: translateY(56vh) rotate(420deg);
    opacity: 0
  }
}

@media (prefers-reduced-motion:reduce) {

  .ball,
  .ball--shot,
  .ball--drop,
  .hero__sweep,
  .pitchring,
  .hero__beam,
  .herokits__vs::after {
    animation: none
  }

  .ball--shot,
  .ball--drop {
    opacity: 0
  }

  .ball--1,
  .ball--3 {
    opacity: .22
  }

  .ball--2 {
    opacity: 0
  }

  .hero__beam {
    opacity: .25
  }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center
}

/* Entrance choreography: copy cascades in, form card lands last.
   `backwards` fill so parallax transforms take over once each animation ends. */
@media (prefers-reduced-motion:no-preference) {
  .hero__copy>* {
    animation: heroIn .65s cubic-bezier(.2, .65, .2, 1) backwards
  }

  .hero__copy>*:nth-child(1) {
    animation-delay: .08s
  }

  .hero__copy>*:nth-child(2) {
    animation-delay: .16s
  }

  .hero__copy>*:nth-child(3) {
    animation-delay: .24s
  }

  .hero__copy>*:nth-child(4) {
    animation-delay: .30s
  }

  .hero__copy>*:nth-child(5) {
    animation-delay: .36s
  }

  .hero__copy>*:nth-child(6) {
    animation-delay: .42s
  }

  .formcard {
    animation: cardIn .75s cubic-bezier(.2, .65, .2, 1) .3s backwards
  }
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

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

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(.97)
  }

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  background: linear-gradient(180deg, #242424, #000);
  box-shadow: 0 6px 16px rgba(17, 17, 17, .25), inset 0 1px 0 rgba(255, 255, 255, .12);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .12em;
  padding: .5rem .95rem;
  border-radius: 999px;
}

.badge__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  animation: badgePulse 1.8s ease-out infinite
}

@keyframes badgePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 105, 0, .7)
  }

  70% {
    box-shadow: 0 0 0 9px rgba(255, 105, 0, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 105, 0, 0)
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 6vw, 4.6rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 1.1rem 0 0;
}

.hero__title .u {
  position: relative;
  z-index: 0;
  white-space: nowrap
}

.hero__title .u::before {
  content: "";
  position: absolute;
  left: -.08em;
  right: -.08em;
  top: .16em;
  bottom: .04em;
  z-index: -1;
  background: #fff;
  opacity: .6;
  border-radius: 8px;
  transform: rotate(-1.2deg);
}

.hero__sub {
  font-size: 1.08rem;
  line-height: 1.55;
  color: #2c2710;
  margin: 1.1rem 0 0;
  max-width: 40ch
}

.hero__sub strong {
  color: var(--ink)
}

.hero__bn {
  font-family: var(--font-bn);
  font-size: 1rem;
  font-weight: 600;
  margin: .55rem 0 0;
  color: #4a4108
}

.hero__bn--lead {
  font-size: 1.2rem;
  line-height: 1.55;
  color: #2c2710;
  margin: 1.1rem 0 0;
  max-width: 34ch
}

.hero__title--bn {
  font-family: var(--font-bn);
  line-height: 1.18;
  letter-spacing: 0;
  font-size: clamp(2.4rem, 5.2vw, 3.9rem)
}

.trust {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  margin: 1.3rem 0 0;
  background: rgba(255, 255, 255, .66);
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 999px;
  padding: .55rem 1.05rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 26px rgba(120, 90, 0, .14), inset 0 1px 0 rgba(255, 255, 255, .85);
}

.trust li {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .86rem;
  color: var(--ink);
  white-space: nowrap
}

.trust li:not(:first-child) {
  border-left: 1px solid rgba(0, 0, 0, .14);
  padding-left: .9rem
}

.trust--bn li {
  font-family: var(--font-bn)
}

/* Hero jersey prize visual — real photos */
.herokits {
  margin-top: 2rem;
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0);
  will-change: transform
}

.herokits__row {
  display: flex;
  align-items: center
}

.hk {
  height: clamp(150px, 17vw, 190px);
  width: auto;
  filter: drop-shadow(0 16px 14px rgba(0, 0, 0, .28));
}

.hk--arg {
  z-index: 1;
  animation: floatY 5.5s ease-in-out infinite
}

.hk--bra {
  z-index: 2;
  animation: floatY 5.5s ease-in-out infinite;
  animation-delay: -2.7s
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-9px)
  }
}

.herokits__vs {
  position: relative;
  z-index: 3;
  flex: none;
  margin: 0 -18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem;
  box-shadow: var(--shadow);
}

.herokits__vs::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(17, 17, 17, .28);
  animation: vsPulse 2.6s cubic-bezier(.2, .6, .3, 1) infinite;
  pointer-events: none;
}

@keyframes vsPulse {
  0% {
    transform: scale(.85);
    opacity: 0
  }

  25% {
    opacity: .8
  }

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

.herokits__cap {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .6rem;
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(0, 0, 0, .06);
  padding: .4rem .85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .84rem;
  color: #4a4108;
}

/* ---------- Form card ---------- */
.formcard {
  position: sticky;
  top: 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf4 100%);
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: 24px;
  box-shadow: 0 1px 2px rgba(17, 17, 17, .05), 0 12px 30px rgba(17, 17, 17, .10), 0 34px 80px rgba(17, 17, 17, .16);
  padding: 1.7rem;
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0);
}

.formcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--arg) 0%, var(--yellow) 45%, var(--yellow) 55%, var(--bra) 100%);
}

.formcard__timer {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff7cc;
  border: 1px solid #f0dc83;
  color: #6b5800;
  font-weight: 700;
  font-size: .8rem;
  padding: .42rem .75rem;
  border-radius: 999px;
  margin-bottom: .8rem;
}

.formcard__timer b {
  color: var(--ink);
  font-variant-numeric: tabular-nums
}

.formcard__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e23b3b;
  animation: dotBlink 1.4s ease-in-out infinite
}

@keyframes dotBlink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .25
  }
}

.formcard__head h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -.01em
}

.formcard__head p {
  font-family: var(--font-bn);
  color: var(--muted);
  font-size: .92rem;
  margin-top: .2rem
}

#leadForm {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.teampick {
  border: none
}

.teampick legend {
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .5rem;
  display: flex;
  gap: .4rem;
  align-items: baseline
}

.teampick legend span {
  font-family: var(--font-bn);
  font-weight: 500;
  color: var(--muted);
  font-size: .82rem
}

.teampick__opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem
}

.team {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  border: 1.5px solid rgba(17, 17, 17, .12);
  border-radius: 16px;
  padding: .85rem .5rem;
  cursor: pointer;
  background: #fff;
  text-align: center;
  transition: border-color .18s, background .18s, transform .15s, box-shadow .2s;
}

.team input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer
}

.team__jersey {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, .18))
}

.team__name {
  font-weight: 700;
  font-size: .95rem
}

.team__check {
  position: absolute;
  top: 6px;
  right: 8px;
  opacity: 0;
  font-weight: 800;
  transition: opacity .15s
}

.team:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 17, 17, .25);
  box-shadow: 0 10px 22px rgba(17, 17, 17, .08)
}

.team--arg:has(input:checked) {
  border-color: var(--arg-deep);
  background: linear-gradient(180deg, rgba(117, 170, 219, .16), rgba(117, 170, 219, .07));
  box-shadow: 0 0 0 3px rgba(117, 170, 219, .22);
}

.team--bra:has(input:checked) {
  border-color: var(--bra-deep);
  background: linear-gradient(180deg, rgba(0, 156, 59, .14), rgba(0, 156, 59, .06));
  box-shadow: 0 0 0 3px rgba(0, 156, 59, .18);
}

.team:has(input:checked) .team__check {
  opacity: 1
}

.team:has(input:focus-visible) {
  outline: 3px solid var(--yellow);
  outline-offset: 2px
}

.field {
  display: flex;
  flex-direction: column;
  gap: .35rem
}

.field label {
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  gap: .4rem;
  align-items: baseline
}

.field label span {
  font-family: var(--font-bn);
  font-weight: 500;
  color: var(--muted);
  font-size: .82rem
}

.field__opt {
  margin-left: auto;
  font-family: var(--font);
  font-style: normal;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: .14rem .5rem;
  border-radius: 999px;
}

.field input,
.field select {
  font-family: var(--font);
  font-size: 1rem;
  padding: .8rem .95rem;
  border: 1.5px solid rgba(17, 17, 17, .14);
  border-radius: 12px;
  background: #fcfcfa;
  color: var(--ink);
  width: 100%;
  transition: border-color .15s, box-shadow .15s, background .15s;
}

.field input:hover,
.field select:hover {
  border-color: rgba(17, 17, 17, .28)
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
  box-shadow: var(--ring)
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #e23b3b;
  box-shadow: 0 0 0 4px rgba(226, 59, 59, .14)
}

.phone {
  display: flex;
  align-items: stretch;
  border: 1.5px solid rgba(17, 17, 17, .14);
  border-radius: 12px;
  overflow: hidden;
  background: #fcfcfa;
  transition: border-color .15s, box-shadow .15s, background .15s;
}

.phone:hover {
  border-color: rgba(17, 17, 17, .28)
}

.phone:focus-within {
  border-color: var(--ink);
  background: #fff;
  box-shadow: var(--ring)
}

.phone.is-invalid {
  border-color: #e23b3b;
  box-shadow: 0 0 0 4px rgba(226, 59, 59, .14)
}

.phone__cc {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: 0 .85rem;
  background: var(--bg-soft);
  font-weight: 700;
  font-size: .92rem;
  white-space: nowrap;
  border-right: 1.5px solid rgba(17, 17, 17, .12)
}

.phone input {
  border: none;
  border-radius: 0;
  background: transparent
}

.phone input:focus,
.phone input:hover {
  border: none;
  box-shadow: none
}

.hint {
  color: var(--muted);
  font-size: .8rem
}

.formcard__fine {
  font-size: .76rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.45
}

/* ---------- Inline field errors ---------- */
.field__err {
  display: none;
  color: #e23b3b;
  font-size: .8rem;
  font-weight: 600;
  align-items: center;
  gap: .3rem;
}

.field__err::before {
  content: "⚠";
  font-size: .8rem;
  line-height: 1
}

.field input[aria-invalid="true"]~.field__err,
.phone.is-invalid~.field__err {
  display: flex;
  animation: errIn .2s ease-out both;
}

.teampick.is-invalid .field__err {
  display: flex;
  animation: errIn .2s ease-out both
}

.teampick.is-invalid .teampick__opts {
  animation: teamShake .4s ease-in-out
}

.teampick.is-invalid .team {
  border-color: rgba(226, 59, 59, .45)
}

@keyframes errIn {
  from {
    opacity: 0;
    transform: translateY(-3px)
  }

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

@keyframes teamShake {

  0%,
  100% {
    transform: translateX(0)
  }

  20% {
    transform: translateX(-6px)
  }

  40% {
    transform: translateX(5px)
  }

  60% {
    transform: translateX(-4px)
  }

  80% {
    transform: translateX(3px)
  }
}

@media (prefers-reduced-motion:reduce) {

  .field__err,
  .teampick.is-invalid .teampick__opts {
    animation: none
  }
}

.formcard__fine a {
  color: var(--muted)
}

/* ---------- Sections ---------- */
.section {
  padding: 78px 0
}

.section:nth-of-type(even) {
  background: var(--bg-soft)
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 800;
  font-size: .74rem;
  letter-spacing: .18em;
  color: var(--muted)
}

.kicker::before,
.kicker::after {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--yellow)
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.015em;
  margin: .35rem 0 0
}

.section__lead {
  color: var(--muted);
  margin: .5rem 0 0;
  max-width: 55ch
}

/* Fan-meter — live scoreboard */
.livepill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: #ffe7e7;
  color: #d12b2b;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .12em;
  padding: .42rem .85rem;
  border-radius: 999px
}

.livepill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e23b3b;
  animation: dotBlink 1.3s ease-in-out infinite
}

.scoreboard {
  margin-top: 1.9rem;
  max-width: 840px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(560px 240px at 50% -30%, rgba(255, 105, 0, .10), transparent 70%),
    linear-gradient(160deg, #202020 0%, #0c0c0c 100%);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 26px;
  padding: 1.8rem 2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 30px 70px rgba(17, 17, 17, .35);
}

.scoreboard__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem
}

.sbteam {
  display: flex;
  align-items: center;
  gap: .95rem;
  flex: 1;
  min-width: 0
}

.sbteam--bra {
  justify-content: flex-end
}

.sbteam__flag {
  font-size: 2.5rem;
  line-height: 1;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, .5))
}

.sbteam__meta {
  display: flex;
  flex-direction: column;
  gap: .22rem
}

.sbteam--bra .sbteam__meta {
  align-items: flex-end
}

.sbteam__name {
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -.01em
}

.sbteam__lead {
  display: none;
  align-items: center;
  gap: .22rem;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: #111;
  background: var(--yellow);
  padding: .14rem .5rem;
  border-radius: 999px;
  width: max-content;
}

.sbteam__lead::before {
  content: "\25B2";
  font-size: .6rem
}

.sbteam.is-leading .sbteam__lead {
  display: inline-flex
}

.sbteam__pct {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums
}

.sbteam--arg .sbteam__pct {
  color: #8fbfe8
}

.sbteam--bra .sbteam__pct {
  color: #3ecb74
}

.sbvs {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #000;
  border: 2px solid #3a3a3a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .78rem
}

.meter {
  margin-top: 1.5rem
}

.meter__bar {
  position: relative;
  display: flex;
  height: 46px;
  border-radius: 14px;
  overflow: hidden;
  font-weight: 800;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .10), inset 0 2px 6px rgba(0, 0, 0, .35);
}

.meter__bar::after {
  content: "";
  position: absolute;
  inset: 0 0 55% 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .16), transparent);
  pointer-events: none
}

.meter__arg {
  background: linear-gradient(90deg, var(--arg-deep), var(--arg));
  display: flex;
  align-items: center;
  padding-left: 1rem;
  transition: width .8s cubic-bezier(.4, 0, .2, 1);
  white-space: nowrap;
  overflow: hidden;
  font-size: .9rem
}

.meter__bra {
  background: linear-gradient(90deg, var(--bra), var(--bra-deep));
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1rem;
  transition: width .8s cubic-bezier(.4, 0, .2, 1);
  white-space: nowrap;
  overflow: hidden;
  font-size: .9rem
}

.scoreboard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.15rem;
  color: #b5b5b5;
  font-size: .92rem;
  font-weight: 600
}

.scoreboard__foot strong {
  color: #fff
}

.sbvotes {
  display: flex;
  align-items: center;
  gap: .45rem
}

.sbtotal {
  color: #8c8c8c;
  font-weight: 700
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex: none
}

.dot--arg {
  background: var(--arg)
}

.dot--bra {
  background: #3ecb74
}

/* Prizes — product carousel in a soft panel */
/* trim the section's own padding so it + the panel padding matches other sections' rhythm */
.prizes {
  padding: 46px 0
}

.prizes__panel {
  background: linear-gradient(180deg, #FFF3EB, #FFE4D1);
  border: 1px solid rgba(255, 105, 0, .28);
  border-radius: 28px;
  padding: 2rem 1.7rem;
  box-shadow: 0 2px 8px rgba(255, 105, 0, .06), 0 24px 60px rgba(255, 105, 0, .12);
}

.prizes__head {
  max-width: 60ch;
  margin: 0 auto
}

.section__title--bn {
  font-family: var(--font-bn);
  letter-spacing: 0;
  line-height: 1.25
}

.section__lead--bn {
  font-family: var(--font-bn);
  color: #7a3a0a;
  font-weight: 600
}

.carousel {
  position: relative;
  margin-top: 1.6rem
}

.carousel__track {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: .6rem 2px 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel__track::-webkit-scrollbar {
  display: none
}

.pcard {
  --accent: #9aa0a6;
  --accent-bg: #f4f5f6;
  flex: 0 0 260px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 2px solid color-mix(in srgb, var(--accent) 45%, #fff);
  border-radius: 24px;
  padding: 1.5rem 1.25rem 1.6rem;
  box-shadow: 0 2px 6px rgba(17, 17, 17, .04), 0 14px 34px rgba(17, 17, 17, .07);
  transition: transform .25s cubic-bezier(.2, .6, .2, 1), box-shadow .25s ease, border-color .2s ease;
}

.pcard:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg)
}

.pcard__tag {
  display: inline-flex;
  align-items: center;
  background: var(--accent-bg);
  color: var(--accent);
  border: 1.5px solid color-mix(in srgb, var(--accent) 55%, #fff);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .02em;
  padding: .34rem .85rem;
  border-radius: 999px;
}

.pcard__media {
  width: 100%;
  height: 158px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.1rem 0 1rem;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--accent) 22%, #fff);
}

/* white-background product shots: show the whole product on a clean tile */
.pcard__photo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  padding: .35rem;
  transition: transform .4s cubic-bezier(.2, .6, .2, 1);
}

.pcard:hover .pcard__photo {
  transform: scale(1.06)
}

/* jersey tile: two team cutouts on a soft pitch-tint */
.pcard__media--jersey {
  gap: .15rem;
  padding: .5rem;
  background: linear-gradient(155deg, #eaf2fb 0%, #eef7f0 100%);
}

.pcard__jersey {
  height: 118px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, .20));
  transition: transform .35s cubic-bezier(.2, .6, .2, 1);
}

.pcard__media--jersey .pcard__jersey:first-child {
  transform: rotate(-5deg)
}

.pcard__media--jersey .pcard__jersey:last-child {
  transform: rotate(5deg)
}

.pcard:hover .pcard__media--jersey .pcard__jersey:first-child {
  transform: rotate(-7deg) translateY(-4px) scale(1.05)
}

.pcard:hover .pcard__media--jersey .pcard__jersey:last-child {
  transform: rotate(7deg) translateY(-4px) scale(1.05)
}

.pcard__name {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--ink)
}

.pcard__name.bn {
  font-weight: 700
}

.pcard__foot {
  color: var(--accent);
  font-size: .9rem;
  font-weight: 700;
  margin-top: .5rem
}

/* per-card accent themes */
.pcard--emerald {
  --accent: #0FA968;
  --accent-bg: #e7f7f0
}

.pcard--blue {
  --accent: #2F73E6;
  --accent-bg: #e8f0fd
}

.pcard--gold {
  --accent: #D79800;
  --accent-bg: #fdf3d9
}

.pcard--magenta {
  --accent: #E4187A;
  --accent-bg: #fde5f0
}

.pcard--violet {
  --accent: #7C4DE0;
  --accent-bg: #efe8fc
}

.pcard--teal {
  --accent: #0E9FA5;
  --accent-bg: #e3f6f7
}

/* bottom dots */
.carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.3rem
}

.carousel__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  flex: none;
  background: rgba(17, 17, 17, .18);
  transition: width .25s ease, background .25s ease;
}

.carousel__dots button:hover {
  background: rgba(17, 17, 17, .32)
}

.carousel__dots button[aria-current="true"] {
  width: 28px;
  background: #E4187A
}

/* How */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 270px));
  gap: 1rem;
  margin: 1.8rem auto 0;
  justify-content: center;
  counter-reset: s
}

.steps li {
  position: relative;
  background: linear-gradient(165deg, #1e1e1e, #0d0d0d);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.5rem;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.steps li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(180deg, var(--yellow), #e55a00)
}

.steps li:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 105, 0, .35);
  box-shadow: 0 24px 50px rgba(17, 17, 17, .28)
}

.steps__n {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 105, 0, .14);
  color: var(--yellow);
  font-weight: 800;
  border-radius: 50%;
  font-size: .9rem
}

.steps__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ff8533, var(--yellow) 60%, #e55a00);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), 0 10px 22px rgba(255, 105, 0, .30);
}

.steps__icon svg {
  width: 30px;
  height: 30px
}

.steps h3 {
  margin: 1rem 0 .25rem;
  font-size: 1.1rem;
  font-weight: 800
}

.steps p {
  color: #c7c7c7;
  font-size: .9rem
}

.how__cta {
  margin-top: 1.8rem
}

/* Map — district battle (Argentina vs Brazil per district) */
.battle {
  margin-top: 1.8rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  text-align: left
}

.battle__legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: .15rem;
  font-weight: 800;
  font-size: .88rem
}

.battle__key {
  display: inline-flex;
  align-items: center;
  gap: .45rem
}

.battle__key::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 4px;
  flex: none
}

.battle__key--arg::before {
  background: linear-gradient(135deg, var(--arg), var(--arg-deep))
}

.battle__key--bra {
  flex-direction: row-reverse
}

.battle__key--bra::before {
  background: linear-gradient(135deg, #2fbf68, var(--bra-deep))
}

.battle__vs {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .66rem;
  box-shadow: 0 6px 14px rgba(17, 17, 17, .2);
}

.battlerow {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: 18px;
  padding: .95rem 1.15rem 1.1rem;
  box-shadow: 0 2px 5px rgba(17, 17, 17, .03), 0 6px 18px rgba(17, 17, 17, .05);
  transition: transform .18s ease, box-shadow .22s ease, border-color .2s ease;
}

.battlerow:hover {
  transform: translateY(-3px);
  border-color: rgba(17, 17, 17, .15);
  box-shadow: 0 10px 26px rgba(17, 17, 17, .09)
}

.battlerow__head {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: .7rem
}

.battlerow__rank {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  flex: none;
  font-weight: 800;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.battlerow.is-top .battlerow__rank {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 0 0 3px rgba(255, 105, 0, .25)
}

.battlerow__city {
  font-weight: 800;
  font-size: 1.04rem;
  letter-spacing: -.01em
}

.battlerow__tag {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  flex: none;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .02em;
  padding: .24rem .62rem;
  border-radius: 999px;
}

.battlerow__tag--arg {
  background: rgba(117, 170, 219, .16);
  color: #2e6ea8
}

.battlerow__tag--bra {
  background: rgba(0, 156, 59, .12);
  color: #007c2f
}

.battlerow__tag--tie {
  background: rgba(17, 17, 17, .06);
  color: var(--ink-soft)
}

.battlerow__total {
  margin-left: auto;
  font-weight: 600;
  font-size: .86rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap
}

.battlerow__total b {
  color: var(--ink);
  font-weight: 800
}

.battlerow__bar {
  position: relative;
  display: flex;
  height: 30px;
  border-radius: 999px;
  overflow: hidden;
  background: #ececec;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, .14);
}

.battlerow__bar::after {
  content: "";
  position: absolute;
  inset: 0 0 55% 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .22), transparent);
  pointer-events: none
}

.battlerow__arg,
.battlerow__bra {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: .74rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  font-variant-numeric: tabular-nums;
  transition: width .9s cubic-bezier(.25, .7, .2, 1);
}

.battlerow__arg {
  background: linear-gradient(90deg, var(--arg-deep), var(--arg));
  justify-content: flex-start;
  padding-left: .8rem
}

.battlerow__bra {
  background: linear-gradient(90deg, #2fbf68, var(--bra-deep));
  justify-content: flex-end;
  padding-right: .8rem;
  margin-left: auto
}

.battlerow__mid {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  margin-left: -1px;
  z-index: 1;
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 0 5px rgba(0, 0, 0, .25);
}

/* Winners */
.winnergrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 1.8rem
}

.winner {
  position: relative;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: 20px;
  padding: 1.6rem 1.2rem 1.3rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(17, 17, 17, .04), 0 10px 26px rgba(17, 17, 17, .06);
  transition: transform .22s cubic-bezier(.2, .6, .2, 1), box-shadow .25s ease, border-color .2s ease;
  overflow: hidden;
}

.winner:hover {
  transform: translateY(-5px);
  border-color: rgba(17, 17, 17, .15);
  box-shadow: var(--shadow-lg)
}

.winner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), #e55a00)
}

.winner__ava {
  position: relative;
  display: inline-block;
  margin-top: .3rem
}

.winner__av {
  display: flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.55rem;
  border-radius: 50%;
  box-shadow: 0 5px 12px rgba(0, 0, 0, .18);
}

.winner__av--1 {
  background: linear-gradient(135deg, #8fbfe8, #4f8fc7)
}

.winner__av--2 {
  background: linear-gradient(135deg, #f6a5c0, #e5638b)
}

.winner__av--3 {
  background: linear-gradient(135deg, #48d07f, #009C3B)
}

.winner__av--4 {
  background: linear-gradient(135deg, #ff8533, #e55a00);
  color: #fff
}

.winner__medal {
  position: absolute;
  bottom: -4px;
  right: -6px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
}

.winner__name {
  margin: .75rem 0 .15rem;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -.01em
}

.winner__meta {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums
}

.winner__prize {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin-top: 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: .55rem .6rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
}

.winner__prizeicon {
  font-size: 1.05rem
}

.winner__verified {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  margin-top: .75rem;
  color: #159a45;
  font-size: .74rem;
  font-weight: 700
}

.winner__verified::before {
  content: "\2713";
  font-weight: 800
}

/* ===== Countdown + CTA band ===== */
.cdband {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 66px 20px;
  color: #fff;
  background:
    radial-gradient(680px 320px at 50% -12%, rgba(255, 105, 0, .24), transparent 70%),
    radial-gradient(500px 300px at 12% 120%, rgba(255, 105, 0, .10), transparent 60%),
    linear-gradient(160deg, #1e1e1e 0%, #0a0a0a 100%);
}

.cdband::before {
  /* subtle dot texture */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image: radial-gradient(rgba(255, 255, 255, .05) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
}

.cdband__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto
}

.cdband__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(226, 59, 59, .16);
  color: #ff7676;
  border: 1px solid rgba(226, 59, 59, .4);
  font-weight: 800;
  font-size: .74rem;
  letter-spacing: .12em;
  padding: .45rem .9rem;
  border-radius: 999px;
}

.cdband__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5b5b;
  animation: dotBlink 1.2s ease-in-out infinite
}

.cdband__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -.015em;
  margin: 1.05rem 0 .45rem
}

.cdband__sub {
  color: #bcbcbc;
  font-size: 1.04rem;
  max-width: 48ch;
  margin: 0 auto 2rem
}

.bigcd {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 2rem
}

.bigcd__unit {
  background: linear-gradient(180deg, #2b2b2b, #151515);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 18px;
  padding: 1.05rem 1rem;
  min-width: 98px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 14px 30px rgba(0, 0, 0, .5);
}

.bigcd__unit strong {
  display: block;
  font-size: clamp(2.3rem, 6vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--yellow);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 22px rgba(255, 105, 0, .35);
}

.bigcd__unit span {
  display: block;
  margin-top: .5rem;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8f8f8f
}

.bigcd__sep {
  font-size: 1.9rem;
  font-weight: 800;
  color: #4a4a4a
}

.cdband__cta {
  font-size: 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55), 0 2px 4px rgba(0, 0, 0, .3), 0 18px 44px rgba(255, 105, 0, .30);
}

.cdband__cta:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55), 0 4px 8px rgba(0, 0, 0, .25), 0 22px 52px rgba(255, 105, 0, .38);
}

.cdband__note {
  color: #8f8f8f;
  font-size: .86rem;
  margin-top: 1.1rem
}

.cdband__note span {
  color: #e5e5e5;
  font-weight: 700
}

/* FAQ */
.acc {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  text-align: left
}

.acc details {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, .09);
  border-radius: 18px;
  box-shadow: 0 2px 6px rgba(17, 17, 17, .04);
  transition: box-shadow .25s ease, border-color .25s ease;
}

.acc details[open] {
  border-color: rgba(255, 105, 0, .55);
  box-shadow: 0 2px 6px rgba(17, 17, 17, .04), 0 16px 40px rgba(17, 17, 17, .08)
}

.acc summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
}

.acc summary::-webkit-details-marker {
  display: none
}

.acc__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .04em;
  color: #b9b9b9;
  transition: color .25s ease
}

.acc details[open] .acc__num {
  color: #b08d00
}

.acc__q {
  font-weight: 700;
  font-size: 1.04rem;
  letter-spacing: -.01em
}

.acc__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(17, 17, 17, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  color: var(--ink);
  background: #fff;
  transition: transform .3s cubic-bezier(.2, .6, .2, 1), background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.acc__icon::before {
  content: "+";
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1
}

.acc summary:hover .acc__icon {
  border-color: var(--ink)
}

.acc details[open] .acc__icon {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: rotate(45deg);
  box-shadow: 0 6px 14px rgba(255, 105, 0, .35)
}

.acc__body {
  overflow: hidden;
  transition: height .35s cubic-bezier(.2, .6, .2, 1), opacity .3s ease
}

.acc__body p {
  color: var(--muted);
  margin: 0;
  padding: .1rem 1.25rem 1.3rem calc(2.25rem + 34px);
  line-height: 1.6
}

/* "Still have questions?" support strip */
.faqhelp {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  background: linear-gradient(165deg, #1e1e1e, #0d0d0d);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 1.35rem 1.6rem;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 18px 44px rgba(17, 17, 17, .16);
}

.faqhelp h3 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -.01em
}

.faqhelp p {
  font-family: var(--font-bn);
  color: #a9a9a9;
  font-size: .9rem;
  margin-top: .25rem;
  max-width: 42ch
}

.faqhelp .btn {
  flex: none
}

/* Final CTA */
.finalcta {
  position: relative;
  overflow: hidden;
  padding: 68px 0;
  background:
    radial-gradient(760px 320px at 50% -20%, rgba(255, 255, 255, .45), transparent 65%),
    linear-gradient(160deg, #ff8533 0%, var(--yellow) 50%, #e55a00 100%);
}

.finalcta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
}

.finalcta__inner {
  position: relative;
  text-align: center
}

.finalcta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.015em
}

.finalcta p {
  font-family: var(--font-bn);
  font-weight: 600;
  margin: .5rem 0 1.4rem;
  font-size: 1.1rem
}

/* Footer */
.footer {
  background: #000;
  color: #cfcfcf;
  padding: 52px 0 28px;
  border-top: 4px solid var(--yellow)
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 2.4rem
}

.footer__brand p {
  margin-top: .9rem;
  font-size: .9rem;
  line-height: 1.65;
  color: #c9c9c9;
  max-width: 44ch
}

.footer__logo {
  display: inline-block;
  padding: 0;
  margin-bottom: .2rem
}

.footer__logo:hover {
  color: inherit
}

.footer__logo img {
  width: 170px;
  height: auto;
  filter: invert(1) drop-shadow(0 2px 6px rgba(0, 0, 0, .4))
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .9rem
}

.footer__col a {
  display: block;
  color: #bcbcbc;
  text-decoration: none;
  font-size: .9rem;
  padding: .32rem 0;
  transition: color .15s
}

.footer__col a:hover {
  color: var(--yellow)
}

.footer__social {
  display: flex;
  gap: .6rem;
  margin-top: 1.2rem
}

.footer__social a {
  display: inline-flex;
  padding: 0
}

.footer__social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s, background .15s
}

.footer__social-icon img {
  width: 20px;
  height: 20px;
  display: block
}

.footer__social a:hover .footer__social-icon {
  background: var(--yellow);
  transform: translateY(-2px)
}

.footer__contact .footer__label {
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  margin: 0 0 .15rem
}

.footer__contact p {
  margin: 0 0 1rem;
  font-size: .9rem;
  line-height: 1.5;
  color: #bcbcbc
}

.footer__bottom {
  border-top: 1px solid #2a2a2a;
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  font-size: .82rem;
  color: #8d8d8d;
  text-align: center
}

/* Sticky mobile CTA */
.stickycta {
  display: none;
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 45;
  background: linear-gradient(180deg, #ff8533, var(--yellow) 55%, #e55a00);
  color: #fff;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, .06);
  font-weight: 800;
  padding: 1rem;
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), 0 8px 22px rgba(17, 17, 17, .22), 0 16px 40px rgba(255, 105, 0, .4);
}

/* ---------- Success modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(10, 10, 10, .55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  animation: modalFade .25s ease-out both;
}

.modal[hidden] {
  display: none
}

.modal.is-closing {
  opacity: 0;
  transition: opacity .22s ease
}

.modal.is-closing .modal__box {
  transform: scale(.94) translateY(10px);
  opacity: 0;
  transition: transform .22s ease, opacity .22s ease
}

@keyframes modalFade {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.modal__box {
  --team: var(--yellow);
  --team-deep: var(--yellow-deep);
  --team-soft: rgba(255, 105, 0, .18);
  background: #fff;
  border-radius: 26px;
  max-width: 430px;
  width: 100%;
  padding: 1.5rem 1.6rem 1.7rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: calc(100dvh - 36px);
  overflow-y: auto;
  animation: modalPop .6s cubic-bezier(.22, 1.36, .32, 1) both;
}

.modal__box--arg {
  --team: var(--arg);
  --team-deep: var(--arg-deep);
  --team-soft: rgba(117, 170, 219, .20)
}

.modal__box--bra {
  --team: var(--bra);
  --team-deep: var(--bra-deep);
  --team-soft: rgba(0, 156, 59, .15)
}

@keyframes modalPop {
  from {
    transform: scale(.82) translateY(34px);
    opacity: 0
  }

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

.modal__close {
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 3;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  transition: transform .2s, color .2s;
}

.modal__close:hover {
  color: var(--ink);
  transform: rotate(90deg)
}

/* staggered entrance for the content rows */
.modal__hero,
.modal__title,
.modal__sub,
.ticket,
.modal__boost,
.modal__skip {
  animation: mRise .55s cubic-bezier(.2, .85, .25, 1) both;
}

.modal__hero {
  animation-delay: .08s
}

.modal__title {
  animation-delay: .16s
}

.modal__sub {
  animation-delay: .22s
}

.ticket {
  animation-delay: .3s
}

.modal__boost {
  animation-delay: .4s
}

.modal__skip {
  animation-delay: .5s
}

@keyframes mRise {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

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

/* jersey + pulse rings + check badge */
.modal__hero {
  position: relative;
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .4rem
}

.modal__hero::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--team-soft) 0%, transparent 70%);
}

.modal__ring {
  position: absolute;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  border: 2px solid var(--team);
  opacity: 0;
  animation: ringPulse 2.4s ease-out .6s infinite;
}

.modal__ring--2 {
  animation-delay: 1.8s
}

@keyframes ringPulse {
  0% {
    transform: scale(.72);
    opacity: .55
  }

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

.modal__jersey {
  position: relative;
  z-index: 1;
  width: 118px;
  height: auto;
  filter: drop-shadow(0 16px 22px rgba(17, 17, 17, .24));
  animation: jerseyFloat 3.6s ease-in-out .9s infinite;
}

@keyframes jerseyFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg)
  }

  50% {
    transform: translateY(-9px) rotate(2deg)
  }
}

.modal__check {
  position: absolute;
  z-index: 2;
  right: calc(50% - 76px);
  bottom: 8px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff8533, var(--yellow) 60%, #e55a00);
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), 0 6px 16px rgba(17, 17, 17, .22);
  animation: checkPop .5s cubic-bezier(.2, 1.6, .35, 1) .45s both;
}

@keyframes checkPop {
  from {
    transform: scale(0) rotate(-30deg)
  }

  to {
    transform: scale(1) rotate(0)
  }
}

.modal__check svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round
}

.modal__check svg path {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: checkDraw .35s ease-out .75s forwards
}

@keyframes checkDraw {
  to {
    stroke-dashoffset: 0
  }
}

.modal__title {
  font-family: var(--font-bn);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.25
}

.modal__sub {
  color: var(--muted);
  margin-top: .3rem;
  font-size: .98rem
}

/* lucky-draw entry ticket */
.ticket {
  display: flex;
  align-items: stretch;
  margin-top: 1.15rem;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-soft);
}

.ticket__stub {
  min-width: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .1rem;
  padding: .85rem .6rem;
  color: #fff;
  background: linear-gradient(165deg, var(--team) 0%, var(--team-deep) 100%);
  text-shadow: 0 1px 2px rgba(0, 0, 0, .18);
}

.ticket__flag {
  font-size: 1.75rem;
  line-height: 1
}

.ticket__code {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .16em
}

.ticket__body {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .18rem;
  padding: .85rem 1rem .85rem 1.2rem;
  border-left: 2px dashed rgba(17, 17, 17, .18);
}

.ticket__body::before,
.ticket__body::after {
  content: "";
  position: absolute;
  left: -8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
}

.ticket__body::before {
  top: -8px
}

.ticket__body::after {
  bottom: -8px
}

.ticket__kicker {
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--muted)
}

.ticket__kicker b {
  color: var(--ink);
  letter-spacing: .02em;
  margin-left: .3rem
}

.ticket__name {
  font-family: var(--font-bn);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  overflow-wrap: anywhere
}

.ticket__note {
  font-size: .8rem;
  color: var(--muted)
}

.modal__boost {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  margin: 1.15rem 0 1rem
}

.modal__boost p {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: .98rem;
  margin: 0 0 .9rem
}

.modal__skip {
  display: inline-block;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s
}

.modal__skip:hover {
  color: var(--ink)
}

/* confetti burst */
.modal__confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.confetti {
  position: absolute;
  top: -16px;
  width: 10px;
  height: 14px;
  border-radius: 2px;
  opacity: 0;
  animation: confettiFall var(--cd, 2.6s) ease-in var(--cdel, 0s) forwards;
}

@keyframes confettiFall {
  0% {
    opacity: 1;
    transform: translate(0, 0) rotate(0)
  }

  85% {
    opacity: 1
  }

  100% {
    opacity: 0;
    transform: translate(var(--cx, 0px), 105vh) rotate(var(--cr, 540deg))
  }
}

@media (prefers-reduced-motion:reduce) {

  .modal,
  .modal__box,
  .modal__hero,
  .modal__title,
  .modal__sub,
  .ticket,
  .modal__boost,
  .modal__skip,
  .modal__jersey,
  .modal__check,
  .confetti {
    animation: none
  }

  .modal__check svg path {
    animation: none;
    stroke-dashoffset: 0
  }

  .modal__ring {
    display: none
  }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px)
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .8s cubic-bezier(.2, .65, .2, 1), transform .8s cubic-bezier(.2, .65, .2, 1);
}

@media (prefers-reduced-motion:reduce) {
  .reveal {
    opacity: 1;
    transform: none
  }
}

/* ---------- Responsive ---------- */
@media (max-width:900px) {
  .nav {
    display: none
  }

  .logo__img {
    height: 36px
  }

  .hero {
    padding: 30px 0 44px
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .formcard {
    position: static
  }

  .steps {
    grid-template-columns: repeat(2, 1fr)
  }

  .winnergrid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr
  }

  .stickycta {
    display: block
  }

  .header__timer {
    display: none
  }

  /* Mobile hero: reorder for impact + reachable form */
  .hero__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start
  }

  .badge {
    order: 0
  }

  .hero__title {
    order: 1;
    margin-top: .8rem
  }

  .hero__bn {
    order: 2;
    margin-top: .6rem;
    font-size: 1rem;
    line-height: 1.4;
    color: #5a4f0a
  }

  .herokits {
    order: 3;
    align-self: center;
    margin-top: 1.1rem;
    text-align: center
  }

  .trust {
    order: 4;
    align-self: center;
    margin-top: 1.2rem
  }

  .hero__sub {
    display: none
  }

  /* drop long English copy; Bangla line carries it */
  /* gap layout instead of heavy overlap so numbers stay visible */
  .herokits__row {
    justify-content: center
  }

  .hk {
    height: 132px;
    width: auto
  }

  .hk--bra {
    margin-left: 0
  }

  .herokits__vs {
    margin: 0 8px;
    width: 44px;
    height: 44px
  }

  .herokits__cap {
    font-size: .78rem;
    margin-top: .5rem
  }

  /* tighter announcement bar */
  .topbar {
    font-size: .74rem;
    gap: .45rem;
    padding: .45rem 12px
  }

  .topbar .bn,
  .topbar .sep:first-of-type {
    display: none
  }

  /* keep the matchday backdrop minimal on mobile — but keep the dropping ball */
  .ball--shot,
  .ball--3,
  .pitchring {
    display: none
  }

  .ball--1 {
    width: 54px;
    height: 54px
  }

  .ball--2 {
    width: 36px;
    height: 36px
  }

  .ball--drop {
    left: 72%;
    width: 38px;
    height: 38px
  }

  /* scoreboard on tablets/phones */
  .scoreboard {
    padding: 1.3rem 1.2rem
  }

  .sbteam {
    gap: .6rem
  }

  .sbteam__flag {
    font-size: 2rem
  }

  .sbteam__name {
    font-size: 1rem
  }

  .sbteam__pct {
    font-size: 1.9rem
  }

  .sbvs {
    width: 38px;
    height: 38px;
    font-size: .7rem
  }

  .scoreboard__foot {
    font-size: .82rem
  }

  .sbtotal {
    display: none
  }

  /* keep the two side counts, drop the middle on narrow screens */
}

@media (max-width:520px) {

  /* footer: stack into a single column on phones */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.8rem
  }

  /* prizes: compact single-peek carousel */
  .prizes__panel {
    padding: 1.2rem 1rem 1.4rem;
    border-radius: 22px
  }

  .carousel__track {
    gap: .8rem
  }

  .pcard {
    flex-basis: calc(44% - .4rem);
    border-radius: 18px;
    padding: 1rem .7rem 1.1rem
  }

  .pcard__media {
    height: 104px;
    margin: .7rem 0 .6rem;
    border-radius: 12px
  }

  .pcard__jersey {
    height: 78px
  }

  .pcard__tag {
    font-size: .6rem;
    padding: .28rem .6rem
  }

  .pcard__name {
    font-size: .95rem
  }

  .pcard__foot {
    font-size: .75rem;
    margin-top: .3rem
  }

  .hero__title {
    font-size: 2.5rem
  }

  /* countdown band: even boxes, drop the colons */
  .bigcd {
    gap: .45rem
  }

  .bigcd__sep {
    display: none
  }

  .bigcd__unit {
    flex: 1;
    min-width: 0;
    padding: .85rem .3rem
  }

  .bigcd__unit span {
    font-size: .6rem;
    letter-spacing: .08em
  }

  .cdband {
    padding: 52px 16px
  }

  .cdband__cta {
    width: 100%
  }

  .trust {
    gap: .65rem;
    padding: .5rem .85rem
  }

  .trust li {
    font-size: .76rem
  }

  .trust li:not(:first-child) {
    padding-left: .65rem
  }

  .hk {
    height: 120px;
    width: auto
  }

  body {
    padding-bottom: 78px
  }

  /* compact centered scoreboard: flag + % + VS; team names live in the bar below */
  .scoreboard__row {
    justify-content: center;
    gap: .7rem
  }

  .sbteam {
    flex: 0 1 auto;
    gap: .5rem
  }

  .sbteam__name {
    display: none
  }

  .sbteam.is-leading .sbteam__lead {
    display: none
  }

  .sbvs {
    display: flex;
    width: 36px;
    height: 36px;
    font-size: .72rem
  }

  .sbteam__flag {
    font-size: 2rem
  }

  .sbteam__pct {
    font-size: 2rem
  }

  .meter__bar {
    height: 40px
  }

  /* district battle: tighter rows, the split bar carries the story */
  .battlerow {
    padding: .8rem .85rem .9rem
  }

  .battlerow__head {
    gap: .5rem;
    margin-bottom: .55rem
  }

  .battlerow__tag {
    display: none
  }

  .battlerow__city {
    font-size: .95rem
  }

  .battlerow__total {
    font-size: .76rem
  }

  .battlerow__rank {
    width: 24px;
    height: 24px;
    font-size: .76rem;
    border-radius: 7px
  }

  .battlerow__bar {
    height: 26px
  }

  .battlerow__arg {
    padding-left: .6rem
  }

  .battlerow__bra {
    padding-right: .6rem
  }

  .battle__legend {
    font-size: .8rem;
    gap: .7rem
  }

  .battle__vs {
    width: 28px;
    height: 28px;
    font-size: .58rem
  }

  /* FAQ: tighter rows, full-width answers, stacked help strip */
  .acc summary {
    grid-template-columns: 26px 1fr auto;
    gap: .7rem;
    padding: 1rem 1rem
  }

  .acc__num {
    font-size: .8rem
  }

  .acc__q {
    font-size: .95rem
  }

  .acc__icon {
    width: 30px;
    height: 30px
  }

  .acc__body p {
    padding: .05rem 1rem 1.15rem 1rem
  }

  .faqhelp {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.2rem
  }

  .faqhelp .btn {
    width: 100%
  }

  /* winner cards: tighter on narrow 2-up grid */
  .winnergrid {
    gap: .8rem
  }

  .winner {
    padding: 1.35rem .85rem 1.1rem
  }

  .winner__av {
    width: 56px;
    height: 56px;
    font-size: 1.4rem
  }

  .winner__name {
    font-size: 1rem
  }

  .winner__meta {
    font-size: .76rem
  }

  .winner__prize {
    font-size: .78rem;
    padding: .5rem .45rem
  }
}

/* ---------- Short desktop screens (e.g. 1366×768 Windows laptops) ----------
   Compress the hero's vertical rhythm so the form CTA stays in view.
   Only applies to wide + short viewports — MacBooks (taller) and mobile are untouched. */
@media (min-width:901px) and (max-height:860px) {
  .topbar {
    padding: .35rem 16px;
    font-size: .78rem
  }

  .header {
    height: 56px
  }

  .hero {
    padding: 20px 0 30px
  }

  .hero__grid {
    gap: 38px;
    align-items: start
  }

  .badge {
    font-size: .68rem;
    padding: .4rem .8rem
  }

  .hero__title {
    font-size: clamp(2.2rem, 3.4vw, 3.2rem);
    margin-top: .7rem
  }

  .hero__sub {
    font-size: 1rem;
    margin-top: .7rem;
    line-height: 1.45;
    max-width: 38ch
  }

  .hero__bn {
    margin-top: .45rem;
    font-size: .95rem
  }

  .trust {
    margin-top: .9rem;
    padding: .45rem .9rem
  }

  .herokits {
    margin-top: 1rem
  }

  .hk {
    height: 128px;
    width: auto
  }

  .herokits__cap {
    margin-top: .4rem
  }

  .formcard {
    padding: 1.25rem 1.4rem;
    top: 68px
  }

  .formcard__timer {
    margin-bottom: .55rem
  }

  .formcard__head h2 {
    font-size: 1.3rem
  }

  .formcard__head p {
    font-size: .85rem
  }

  #leadForm {
    gap: .7rem;
    margin-top: .75rem
  }

  .teampick legend {
    margin-bottom: .35rem
  }

  .team {
    padding: .5rem .5rem
  }

  .team__jersey {
    height: 38px
  }

  .field input,
  .field select {
    padding: .6rem .85rem
  }

  .phone__cc {
    padding: 0 .8rem
  }

  .hint {
    display: none
  }

  .btn--lg {
    padding: .85rem 1.6rem;
    font-size: 1rem
  }

  .formcard__fine {
    font-size: .72rem;
    line-height: 1.35;
    margin-top: -.1rem
  }
}

/* ---------- Center all content sections (desktop + mobile) for a consistent theme ---------- */
.section .container {
  text-align: center
}

.section__lead {
  margin-left: auto;
  margin-right: auto
}

.scoreboard,
.board {
  margin-left: auto;
  margin-right: auto
}

.acc {
  text-align: left
}

/* keep FAQ answers left-aligned for readability */


/* ===== Winner Carousel Section CSS overrides ===== */
#winnerTrack .winner {
  flex: 0 0 280px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.winner__media {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #fdfdfd;
  margin-bottom: 0;
}

.winner__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}