:root {
  --green: #04f529;
  --teal: #05cfc8;
  --deep: #071312;
  --ink: #111;
  --muted: #6f7378;
  --paper: #f5f6f8;
  --card: #ffffff;
  --line: #dfe3e8;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding-bottom: 106px;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 58px);
  color: white;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0));
  box-shadow: none;
  backdrop-filter: none;
  transition: background 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.topbar.is-scrolled {
  background: rgba(7, 19, 18, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand span:last-child { color: var(--green); }

.topbar .brand {
  transform-style: preserve-3d;
}

.topbar .brand-lock,
.topbar .brand-shot {
  display: inline-block;
  will-change: transform;
}

.topbar .brand-lock {
  color: white;
  transform-origin: 100% -70%;
}

.topbar .brand-shot {
  color: var(--green);
  transform-origin: 0% -70%;
}

.topbar .brand.is-animating .brand-lock {
  animation: logo-lock-swing 1250ms cubic-bezier(0.2, 0.8, 0.24, 1) 80ms both;
}

.topbar .brand.is-animating .brand-shot {
  animation: logo-shot-swing 1250ms cubic-bezier(0.2, 0.8, 0.24, 1) 80ms both;
}

.brand-score {
  position: absolute;
  left: 52%;
  top: -0.92em;
  display: block;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--green) !important;
  text-shadow: 0 0 16px rgba(4, 245, 41, 0.8);
  font-size: 0.5em;
  font-weight: 1000;
  line-height: 1.1;
  opacity: 0;
  transform: translate(-50%, 12px) scale(0.45) rotate(-7deg);
  pointer-events: none;
}

.topbar .brand.is-animating .brand-score {
  animation: logo-score-pop 960ms cubic-bezier(0.18, 0.95, 0.28, 1.2) 1010ms both;
}

.footer .brand-score {
  display: none;
}

@keyframes logo-lock-swing {
  0% {
    transform: translateX(-62px) rotate(-31deg);
  }

  58% {
    transform: translateX(13px) rotate(11deg);
  }

  72% {
    transform: translateX(-6px) rotate(-5deg);
  }

  100% {
    transform: translateX(0) rotate(0);
  }
}

@keyframes logo-shot-swing {
  0% {
    transform: translateX(62px) rotate(31deg);
  }

  58% {
    transform: translateX(-13px) rotate(-11deg);
  }

  72% {
    transform: translateX(6px) rotate(5deg);
  }

  100% {
    transform: translateX(0) rotate(0);
  }
}

@keyframes logo-score-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, 12px) scale(0.45) rotate(-7deg);
  }

  38% {
    opacity: 1;
    transform: translate(-50%, -12px) scale(1.35) rotate(2deg);
  }

  72% {
    opacity: 1;
    transform: translate(-50%, -4px) scale(1.08) rotate(0);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -26px) scale(0.95) rotate(0);
  }
}

.top-actions {
  display: inline-flex;
  align-items: center;
  gap: clamp(16px, 4vw, 30px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  margin-left: auto;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.desktop-nav a:hover {
  color: var(--green);
}

.top-actions a,
.top-actions button {
  position: relative;
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.desktop-nav a,
.top-actions a,
.top-actions button,
.top-actions svg {
  color: #fff !important;
  stroke: #fff !important;
}

.top-actions a,
.top-actions .cart-icon {
  display: grid !important;
}

.top-actions [data-open-menu] {
  display: none !important;
}

.login-button {
  min-width: 104px;
  padding: 0 22px;
  border-radius: 999px;
  border: 2px solid var(--green);
  background: var(--green) !important;
  color: #061106 !important;
  box-shadow: 0 10px 28px rgba(4, 245, 41, 0.24);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  text-transform: none;
}

.login-button:hover {
  transform: translateY(-1px);
}

.top-actions svg {
  width: 34px;
  height: 34px;
  stroke-width: 2.35;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-action,
.cart-icon {
  display: grid !important;
  color: #fff !important;
}

.account-action svg,
.cart-icon svg {
  display: block !important;
  width: 38px !important;
  height: 38px !important;
  color: #fff !important;
  stroke: #fff !important;
  fill: none !important;
  opacity: 1 !important;
}

.top-actions i {
  display: block;
}

.cart-icon span {
  position: absolute;
  top: -2px;
  right: -4px;
  display: grid;
  min-width: 23px;
  height: 23px;
  place-items: center;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--green);
  color: #031203;
  font-size: 0.76rem;
  font-weight: 950;
}

.hero {
  position: relative;
  min-height: min(780px, 100vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: #111;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1617814076668-24a24156fe39?auto=format&fit=crop&w=1600&q=88");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.18) 24%, rgba(0,0,0,0.18) 55%, rgba(0,0,0,0.78) 100%),
    radial-gradient(circle at 18% 15%, rgba(5, 207, 200, 0.42), transparent 28%);
}

.countdown {
  position: absolute;
  z-index: 2;
  top: clamp(102px, 16vh, 150px);
  left: 50%;
  display: grid;
  width: min(890px, calc(100% - 28px));
  grid-template-columns: 1.05fr repeat(4, 1fr);
  gap: clamp(8px, 2vw, 18px);
  transform: translateX(-50%);
}

.countdown > div {
  min-height: clamp(86px, 15vw, 138px);
  display: grid;
  place-items: center;
  align-content: center;
  padding: 12px;
  border: 1px solid rgba(4, 245, 41, 0.22);
  border-radius: 13px;
  background: linear-gradient(150deg, rgba(2, 44, 23, 0.86), rgba(1, 25, 16, 0.64));
  box-shadow: inset 0 -18px 36px rgba(255, 255, 255, 0.12), 0 12px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(11px);
}

.countdown strong {
  color: var(--green);
  font-size: clamp(2.3rem, 8vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.countdown span {
  color: white;
  font-size: clamp(0.68rem, 1.7vw, 1rem);
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.count-label { justify-items: start; }

.count-label strong,
.count-label span {
  font-size: clamp(1.05rem, 3vw, 2rem);
  line-height: 1.05;
}

.hero-message {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  padding: 0 clamp(20px, 5vw, 60px) clamp(34px, 8vh, 70px);
  text-align: center;
}

.hero-message p {
  margin: 0 0 -10px;
  color: var(--green);
  font-size: clamp(2.4rem, 8vw, 5.4rem);
  font-weight: 950;
  line-height: 0.9;
  transform: rotate(-4deg);
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  color: white;
  font-size: clamp(3.4rem, 12vw, 8.5rem);
  font-weight: 1000;
  line-height: 0.84;
  text-transform: uppercase;
}

.play-button {
  display: inline-flex;
  min-width: 245px;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  margin-top: clamp(34px, 7vh, 70px);
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #061106;
  box-shadow: 0 18px 48px rgba(4, 245, 41, 0.28);
  cursor: pointer;
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 850;
  text-transform: uppercase;
}

.slider-dots {
  display: flex;
  gap: 16px;
  margin-top: 34px;
}

.slider-dots span {
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
}

.slider-dots .active { background: white; }

.pay-strip {
  display: flex;
  gap: 22px;
  overflow: auto;
  align-items: center;
  padding: 18px clamp(16px, 4vw, 40px);
  background: white;
  color: #333;
  scrollbar-width: none;
}

.pay-strip span {
  flex: 0 0 auto;
  color: #42464b;
  font-weight: 900;
  white-space: nowrap;
}

.trust-strip {
  display: flex;
  gap: 28px;
  overflow: hidden;
  align-items: center;
  padding: 20px clamp(20px, 5vw, 60px);
  background: var(--paper);
  color: #1c1e22;
  white-space: nowrap;
}

.trust-strip span { font-size: clamp(1.1rem, 3vw, 1.75rem); }
.trust-strip strong { color: #071312; }

.section { padding: clamp(32px, 7vw, 70px) clamp(20px, 5vw, 60px); }

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
  letter-spacing: 0;
}

.section-title a {
  color: #057d78;
  font-weight: 900;
}

.cars {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 470px);
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
}

.car-card {
  min-height: 560px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border-radius: 22px;
  background: white;
  box-shadow: 0 12px 36px rgba(32, 41, 52, 0.1);
  scroll-snap-align: start;
}

.card-copy { padding: 28px 28px 10px; }

.card-copy span {
  display: block;
  margin-bottom: 10px;
  color: #3b3d42;
  font-size: 1.35rem;
  font-weight: 950;
}

.card-copy h3 {
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid #a7a9ad;
  color: #7b7f85;
  font-size: 1.4rem;
  font-weight: 500;
}

.card-copy p {
  color: #8d9198;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.card-copy strong { color: #45474c; }

.car-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  align-self: end;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px 28px;
}

.card-foot > strong {
  color: #202327;
  font-size: 1.35rem;
  font-weight: 500;
}

.card-foot button {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #061106;
  cursor: pointer;
  font-size: 1.12rem;
  font-weight: 950;
  text-transform: uppercase;
}

.card-foot svg {
  width: 23px;
  height: 23px;
}

.how { background: white; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.steps article {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 18px;
  background: var(--paper);
}

.steps strong {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
}

.steps span {
  font-size: 1.05rem;
  font-weight: 850;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(26px, 6vw, 70px);
  align-items: center;
  padding: clamp(42px, 8vw, 86px) clamp(20px, 5vw, 60px);
  background: #071312;
  color: white;
}

.phone-shot {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: 34px;
  border: 10px solid #111;
  box-shadow: var(--shadow);
}

.phone-shot img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.phone-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(4,245,41,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4,245,41,0.18) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.ball-point {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 3px solid white;
  border-radius: 50%;
  background: rgba(4, 245, 41, 0.35);
  box-shadow: 0 0 0 10px rgba(4, 245, 41, 0.15);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.ball-point.active {
  background: var(--green);
  border-color: #061106;
}

.feature-copy span,
.rewards span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-copy p,
.rewards p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
  line-height: 1.65;
}

.mini-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  margin-top: 14px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--green);
  color: #061106;
  font-weight: 900;
  text-transform: uppercase;
}

.winners { background: var(--paper); }

.winner-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.winner-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: white;
  box-shadow: 0 12px 34px rgba(32, 41, 52, 0.08);
}

.winner-avatar {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #061106;
  font-weight: 950;
}

.winner-list strong,
.winner-list span { display: block; }

.winner-list span {
  color: #057d78;
  font-weight: 850;
}

.winner-list p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.rewards {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(42px, 7vw, 78px) clamp(20px, 5vw, 60px);
  background:
    linear-gradient(135deg, rgba(4,245,41,0.22), transparent 38%),
    #081817;
  color: white;
}

.reward-button {
  flex: 0 0 auto;
  min-width: 200px;
  min-height: 68px;
  margin-top: 0;
  font-size: 1.1rem;
}

.faqs { background: white; }

.faqs details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.faqs summary {
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 900;
}

.faqs p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.checkout-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(24px, 6vw, 70px);
  align-items: start;
  min-height: 100svh;
  scroll-margin-top: 96px;
  padding: clamp(42px, 8vw, 86px) clamp(20px, 5vw, 60px);
  background: #071312;
  color: white;
}

.checkout-copy span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.65;
}

.checkout-card {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 5vw, 34px);
  border-radius: 26px;
  background: white;
  color: #111;
  box-shadow: var(--shadow);
}

.checkout-summary {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 18px;
  background: var(--paper);
}

.checkout-summary span,
.checkout-total span,
.checkout-field {
  color: #6f7378;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.checkout-summary strong {
  font-size: 1.35rem;
}

.checkout-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.method-grid label {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 850;
}

.checkout-field {
  display: grid;
  gap: 8px;
  font-size: 0.78rem;
}

.checkout-field input {
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
  text-transform: none;
}

.checkout-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.checkout-total strong {
  font-size: 2rem;
}

.checkout-status {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
  text-align: center;
}

.pay-button {
  display: inline-flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #061106;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 950;
  text-transform: uppercase;
}

.pay-button svg {
  width: 24px;
  height: 24px;
}

.game-section {
  min-height: 100svh;
  scroll-margin-top: 96px;
  padding: clamp(42px, 8vw, 86px) clamp(20px, 5vw, 60px);
  background: var(--paper);
}

.game-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.game-head span {
  display: block;
  margin-bottom: 8px;
  color: #057d78;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.player-stats {
  display: grid;
  gap: 7px;
  justify-items: end;
}

.player-stats strong {
  color: #057d78;
  font-size: 1.1rem;
}

.game-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.game-picker button {
  display: grid;
  gap: 6px;
  min-height: 96px;
  padding: 18px;
  border: 2px solid transparent;
  border-radius: 20px;
  background: white;
  box-shadow: 0 10px 28px rgba(32, 41, 52, 0.08);
  cursor: pointer;
  text-align: left;
}

.game-picker button.is-active {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(4, 245, 41, 0.14);
}

.game-picker strong {
  font-size: 1.1rem;
}

.game-picker span {
  color: var(--muted);
  line-height: 1.35;
}

.stable-games .game-choice {
  display: grid;
  gap: 8px;
  min-height: 126px;
  align-content: start;
  padding: 22px;
  border: 2px solid transparent;
  border-radius: 20px;
  background: white;
  box-shadow: 0 10px 28px rgba(32, 41, 52, 0.08);
  cursor: pointer;
  text-align: left;
}

.stable-games .game-choice.is-active {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(4, 245, 41, 0.14), 0 10px 28px rgba(32, 41, 52, 0.08);
}

.stable-games .game-choice:not(.is-active) {
  opacity: 0.66;
}

.play-area {
  display: none;
}

.play-area.is-active {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(260px, 360px);
  gap: 20px;
  align-items: stretch;
}

.spot-board {
  position: relative;
  min-height: min(640px, 68vh);
  overflow: hidden;
  border-radius: 28px;
  background: #071312;
  box-shadow: var(--shadow);
  cursor: crosshair;
}

.spot-board img {
  width: 100%;
  height: min(640px, 68vh);
  min-height: 460px;
  object-fit: cover;
  opacity: 0.88;
}

.spot-board::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(4,245,41,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4,245,41,0.18) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.spot-marker {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  z-index: 2;
  display: none;
  width: 42px;
  height: 42px;
  border: 4px solid white;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 12px rgba(4, 245, 41, 0.18);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.spot-board.has-marker .spot-marker {
  display: block;
}

.spot-board p {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.64);
  color: white;
  font-weight: 850;
  line-height: 1.45;
  backdrop-filter: blur(10px);
}

.spot-panel {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px;
  border-radius: 24px;
  background: white;
  box-shadow: 0 12px 34px rgba(32, 41, 52, 0.08);
}

.spot-panel > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.spot-panel span {
  color: var(--muted);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.spot-panel strong {
  color: #071312;
  font-size: 1.55rem;
}

.penalty-board {
  position: relative;
  min-height: min(720px, calc(100svh - 150px));
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 34%, rgba(4, 245, 41, 0.16), transparent 28%),
    linear-gradient(180deg, #0a5c45, #063428);
  box-shadow: var(--shadow);
  cursor: crosshair;
}

.penalty-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.goal-frame {
  position: absolute;
  left: 9%;
  right: 9%;
  top: 9%;
  height: 62%;
  border: 9px solid white;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.goal-frame span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.32);
}

.goal-frame span:nth-child(1) { left: 20%; }
.goal-frame span:nth-child(2) { left: 40%; }
.goal-frame span:nth-child(3) { left: 60%; }
.goal-frame span:nth-child(4) { left: 80%; }
.goal-frame span:nth-child(5) {
  left: 0;
  right: 0;
  top: 50%;
  bottom: auto;
  width: auto;
  height: 2px;
}

.penalty-ball,
.penalty-tap {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.penalty-ball {
  left: var(--ball-x, 50%);
  top: var(--ball-y, 38%);
  width: 58px;
  height: 58px;
  border: 2px solid rgba(0, 0, 0, 0.72);
  background:
    radial-gradient(circle at 34% 27%, rgba(255,255,255,0.95) 0 9%, transparent 10%),
    radial-gradient(circle at 50% 50%, #111 0 9%, transparent 10%),
    radial-gradient(circle at 25% 55%, #111 0 11%, transparent 12%),
    radial-gradient(circle at 75% 56%, #111 0 11%, transparent 12%),
    radial-gradient(circle at 50% 83%, #111 0 10%, transparent 11%),
    conic-gradient(from 18deg, #f7f7f7 0 16%, #e4e4e4 16% 32%, #fff 32% 48%, #d9d9d9 48% 64%, #fff 64% 80%, #ececec 80% 100%);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.42);
  pointer-events: none;
}

.penalty-tap {
  left: var(--tap-x, 50%);
  top: var(--tap-y, 50%);
  display: none;
  width: 38px;
  height: 38px;
  border: 3px solid white;
  background: rgba(4, 245, 41, 0.72);
  box-shadow: 0 0 0 11px rgba(4, 245, 41, 0.18);
  pointer-events: none;
}

.penalty-board.has-tap .penalty-tap {
  display: block;
}

.tap-pop {
  position: absolute;
  left: var(--pop-x, 50%);
  top: var(--pop-y, 50%);
  z-index: 5;
  display: none;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--green);
  font-size: clamp(1.4rem, 5vw, 2.4rem);
  font-weight: 1000;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.tap-pop.is-showing {
  display: block;
  animation: tap-pop 720ms ease both;
}

.tap-pop.is-miss {
  color: #ff2d2d;
}

.penalty-board p {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.64);
  color: white;
  font-weight: 850;
  line-height: 1.45;
  backdrop-filter: blur(10px);
}

.gear-board,
.drift-board {
  position: relative;
  min-height: min(720px, calc(100svh - 150px));
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 36%, rgba(4, 245, 41, 0.16), transparent 28%),
    linear-gradient(180deg, #061412, #0b2722);
  box-shadow: var(--shadow);
}

.gear-board {
  display: grid;
  place-items: center;
  cursor: pointer;
}

.rev-dial {
  position: relative;
  display: grid;
  width: min(520px, 82vw);
  aspect-ratio: 1;
  place-items: center;
  border: 12px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background:
    conic-gradient(from 220deg, rgba(255,255,255,0.16) 0deg 176deg, var(--green) 176deg 214deg, rgba(255,255,255,0.16) 214deg 280deg, transparent 280deg 360deg),
    radial-gradient(circle, #071312 0 58%, rgba(4,245,41,0.08) 59% 68%, transparent 69%);
  color: white;
}

.rev-dial span {
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.rev-dial strong {
  font-size: clamp(4rem, 14vw, 8rem);
  line-height: 0.9;
}

.shift-zone {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 10px solid transparent;
  border-right-color: var(--green);
  border-top-color: var(--green);
  filter: drop-shadow(0 0 18px rgba(4, 245, 41, 0.55));
  transform: rotate(20deg);
}

.rev-needle {
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 7px;
  height: 42%;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(4, 245, 41, 0.7);
  transform: translateX(-50%) rotate(var(--needle-angle, -112deg));
  transform-origin: bottom center;
}

.drift-board {
  cursor: crosshair;
  background:
    linear-gradient(rgba(255,255,255,0.05) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 2px, transparent 2px),
    radial-gradient(circle at 74% 28%, rgba(4, 245, 41, 0.18), transparent 24%),
    linear-gradient(135deg, #0c1214, #1a2224);
  background-size: 54px 54px, 54px 54px, auto, auto;
}

.drift-paths {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ideal-line,
.player-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ideal-line {
  opacity: 0;
  stroke: var(--green);
  stroke-width: 2.6;
  filter: drop-shadow(0 0 10px rgba(4, 245, 41, 0.8));
}

.drift-board.show-ideal .ideal-line {
  opacity: 1;
}

.player-line {
  stroke: white;
  stroke-width: 2.2;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
}

.game-overlay {
  position: absolute;
  inset: 0;
  z-index: 9;
  display: none;
  place-items: center;
  padding: clamp(18px, 5vw, 44px);
  background: rgba(2, 7, 7, 0.72);
  backdrop-filter: blur(4px);
}

.game-overlay.is-open {
  display: grid;
}

.game-overlay-card {
  display: grid;
  width: min(680px, 100%);
  max-height: calc(100svh - 120px);
  overflow: auto;
  gap: clamp(14px, 3vw, 22px);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid rgba(4, 245, 41, 0.6);
  border-radius: 28px;
  background: rgba(1, 14, 12, 0.82);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
  color: white;
  text-align: center;
}

.game-overlay-card h3 {
  margin: 0;
  color: var(--green);
  font-size: clamp(2.3rem, 7vw, 4.5rem);
  line-height: 1.02;
}

.game-overlay-card p {
  position: static;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 3vw, 1.45rem);
  font-weight: 850;
  line-height: 1.5;
  backdrop-filter: none;
}

.game-overlay-card p strong {
  color: var(--green);
}

.game-overlay-card button {
  display: inline-flex;
  min-height: clamp(58px, 8vw, 76px);
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: min(520px, 100%);
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #061106;
  cursor: pointer;
  font-size: clamp(1.25rem, 4vw, 1.8rem);
  font-weight: 1000;
  text-transform: uppercase;
}

@keyframes tap-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -28%) scale(0.7);
  }

  24% {
    opacity: 1;
    transform: translate(-50%, -66%) scale(1.08);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -112%) scale(0.92);
  }
}

.game-board {
  position: relative;
  min-height: min(640px, 68vh);
  overflow: hidden;
  border-radius: 28px;
  background: #071312;
  box-shadow: var(--shadow);
}

.game-board img {
  width: 100%;
  height: min(640px, 68vh);
  object-fit: cover;
  opacity: 0.88;
}

.game-board::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(4,245,41,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4,245,41,0.18) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.game-target {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  display: none;
  width: 42px;
  height: 42px;
  border: 4px solid white;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 12px rgba(4, 245, 41, 0.18);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.game-board.has-round .game-target {
  display: block;
}

.game-board.penalty-mode .game-target {
  animation: penalty-drift 1.7s ease-in-out infinite alternate;
}

.game-board.reaction-ready {
  cursor: pointer;
}

.game-board.reaction-green::before {
  content: "LOCK NOW";
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  background: rgba(4, 245, 41, 0.55);
  color: #061106;
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 1000;
  text-transform: uppercase;
}

.game-hud {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  z-index: 4;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: white;
  backdrop-filter: blur(10px);
}

.game-board.has-round .game-hud {
  display: flex;
}

.game-hud span {
  color: var(--green);
  font-weight: 950;
  text-transform: uppercase;
}

.game-board p {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 24px;
  background: rgba(7, 19, 18, 0.78);
  color: white;
  font-size: 1.25rem;
  font-weight: 850;
  text-align: center;
}

.game-board.has-round p {
  display: none;
}

.game-controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.game-controls button,
.submit-game {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
}

.game-controls button {
  background: white;
  color: #111;
}

.game-controls button:disabled,
.submit-game:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.game-controls span {
  color: #45474c;
  font-weight: 950;
  text-align: center;
}

.submit-game {
  width: min(420px, 100%);
  margin-top: 18px;
  background: var(--green);
  color: #061106;
}

.submission-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 850;
  text-align: center;
}

@keyframes penalty-drift {
  0% {
    margin-left: -18%;
    margin-top: -8%;
  }

  50% {
    margin-left: 14%;
    margin-top: 10%;
  }

  100% {
    margin-left: 24%;
    margin-top: -4%;
  }
}

.footer {
  padding: 44px clamp(20px, 5vw, 60px) 140px;
  background: #071312;
  color: white;
}

.footer-brand { font-size: 2.2rem; }

.footer p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  color: var(--green);
  font-weight: 900;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 95;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(480px, calc(100% - 78px));
  min-height: 88px;
  padding: 12px 22px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.17);
  transform: translateX(-50%);
}

.bottom-nav a {
  display: grid;
  place-items: center;
  gap: 5px;
  color: #0f1114;
  font-size: 0.96rem;
}

.bottom-nav svg {
  width: 30px;
  height: 30px;
}

.bottom-nav .active {
  color: #1374ff;
  font-weight: 900;
}

body.is-slip-open .bottom-nav,
body[data-page="checkout"] .bottom-nav,
body[data-page="game"] .bottom-nav {
  display: none !important;
}

body.is-slip-open .chat-button,
body[data-page="checkout"] .chat-button,
body[data-page="game"] .chat-button {
  display: none !important;
}

.chat-button {
  position: fixed;
  right: clamp(18px, 5vw, 44px);
  bottom: 32px;
  z-index: 96;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #03bf17;
  color: white;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.chat-button svg {
  width: 42px;
  height: 42px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 120px clamp(34px, 8vw, 74px) 150px;
  background: rgba(3, 12, 12, 0.94);
  color: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.menu-close {
  position: absolute;
  top: 86px;
  right: clamp(34px, 8vw, 74px);
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
}

.menu-close svg {
  width: 48px;
  height: 48px;
  stroke-width: 2;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-section {
  min-height: 100svh;
  scroll-margin-top: 96px;
  background: white;
}

.account-section p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.account-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(24px, 6vw, 70px);
  align-items: start;
}

.account-copy span {
  display: block;
  margin-bottom: 12px;
  color: #057d78;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-status-card {
  display: grid;
  gap: 7px;
  width: min(460px, 100%);
  margin-top: 24px;
  padding: 20px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.account-status-card strong {
  color: #071312;
  font-size: 1.2rem;
}

.account-status-card span {
  color: var(--muted);
  font-weight: 750;
}

.auth-card {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 5vw, 34px);
  border-radius: 26px;
  background: #071312;
  color: white;
  box-shadow: var(--shadow);
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.auth-tabs button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: white;
  cursor: pointer;
  font-weight: 950;
}

.auth-tabs button.is-active {
  background: var(--green);
  color: #061106;
}

.auth-form {
  display: none;
  gap: 14px;
}

.auth-form.is-active {
  display: grid;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.auth-form input {
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font: inherit;
  text-transform: none;
}

.auth-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.auth-form button,
.sign-out-button {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #061106;
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
}

.sign-out-button {
  background: white;
}

.auth-message {
  margin: 0;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.98rem !important;
  font-weight: 800;
  text-align: center;
}

.menu-links {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(16px, 3vh, 28px);
  justify-items: center;
  text-align: center;
}

.menu-links a {
  position: relative;
  color: white;
  font-size: clamp(1.45rem, 5.5vw, 2.7rem);
  font-weight: 450;
  letter-spacing: 0.06em;
  line-height: 0.95;
  text-transform: uppercase;
}

.menu-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -9px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 14px rgba(4, 245, 41, 0.7);
  transition: left 160ms ease, right 160ms ease;
}

.menu-links a:hover::after,
.menu-links a:focus-visible::after {
  left: 0;
  right: 0;
}

.entry-slip {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1fr);
  gap: 22px;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 34px 40px 40px;
  max-height: 92svh;
  overflow: auto;
  border-radius: 24px 24px 0 0;
  background: white;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.22);
  transform: translateY(110%);
  transition: transform 180ms ease;
}

.entry-slip.is-open { transform: translateY(0); }

.slip-close {
  position: absolute;
  top: 22px;
  right: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #0d0d0d;
  cursor: pointer;
}

.slip-close svg {
  width: 42px;
  height: 42px;
  stroke-width: 2.5;
}

.slip-price {
  display: grid;
  align-content: start;
  gap: 6px;
}

.slip-price strong {
  font-size: clamp(3.2rem, 9vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.slip-price span {
  color: #9ca0a6;
  font-weight: 850;
}

.quantity-area {
  grid-column: 1;
  display: grid;
  gap: 12px;
  align-content: start;
}

.quantity-area > span,
.bulk-box > strong {
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quantity-area p {
  margin: 0;
  color: #a8abb0;
  font-size: 1.35rem;
}

.quantity-control {
  display: grid;
  width: min(230px, 100%);
  grid-template-columns: 72px 64px 72px;
  align-items: center;
}

.quantity-control button {
  min-height: 72px;
  border: 0;
  border-radius: 8px;
  background: #f0f0f0;
  cursor: pointer;
  color: #1f1f1f;
  font-size: 1.7rem;
}

.quantity-control strong {
  text-align: center;
  font-size: 1.65rem;
}

.bulk-box {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 28px 24px 18px;
  border: 5px solid var(--green);
  border-radius: 20px;
  text-align: center;
}

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

.bulk-options button {
  position: relative;
  min-height: 98px;
  display: grid;
  place-items: center;
  border: 5px solid var(--green);
  border-radius: 16px;
  background: white;
  cursor: pointer;
}

.bulk-options button.is-selected {
  background: #f1fff3;
  box-shadow: 0 0 0 4px rgba(4, 245, 41, 0.16);
}

.bulk-options span {
  font-size: 1.7rem;
  font-weight: 950;
}

.bulk-options em {
  position: absolute;
  left: 50%;
  bottom: -18px;
  min-width: 76px;
  padding: 8px 12px;
  border-radius: 9px;
  background: var(--green);
  color: #061106;
  font-style: normal;
  font-weight: 950;
  transform: translateX(-50%);
}

.basket-button {
  grid-column: 1 / -1;
  display: inline-flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #061106;
  cursor: pointer;
  font-size: clamp(1.25rem, 4vw, 1.7rem);
  font-weight: 950;
  text-transform: uppercase;
}

.basket-button svg {
  width: 30px;
  height: 30px;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 110;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
}

.scrim.is-open {
  pointer-events: auto;
  opacity: 1;
}

@media (min-width: 721px) {
  body { padding-bottom: 0; }
  .hero { min-height: 920px; }
  .bottom-nav { display: none; }
  .footer { padding-bottom: 54px; }
  .desktop-nav { display: flex !important; }
  .top-actions a,
  .top-actions .cart-icon,
  .top-actions .login-button {
    display: grid !important;
  }
  .top-actions [data-open-menu] {
    display: none !important;
  }
}

@media (max-width: 720px) {
  .desktop-nav { display: none !important; }
  .top-actions .login-button { display: none !important; }
  .top-actions [data-open-menu] { display: grid !important; }
}

@media (max-width: 720px) {
  .topbar { padding-top: 22px; }
  .top-actions { gap: 12px; }
  .top-actions svg { width: 30px; height: 30px; }
  .countdown { top: 132px; gap: 8px; }
  .countdown > div { border-radius: 10px; }
  .count-label strong,
  .count-label span { font-size: 1rem; }
  .hero-message { padding-bottom: 34px; }
  .chat-button { width: 74px; height: 74px; bottom: 30px; }
  .steps,
  .feature-panel,
  .winner-list,
  .account-grid,
  .checkout-section { grid-template-columns: 1fr; }
  .game-head,
  .game-controls,
  .game-picker,
  .play-area {
    grid-template-columns: 1fr;
    display: grid;
  }
  .play-area.is-active {
    grid-template-columns: 1fr;
  }
  .penalty-game.is-active {
    margin-inline: calc(clamp(20px, 5vw, 60px) * -1);
  }
  .penalty-game .spot-panel {
    margin-inline: clamp(20px, 5vw, 60px);
  }
  .penalty-board {
    min-height: calc(100svh - 96px);
    border-radius: 0;
  }
  .penalty-board p {
    bottom: 96px;
  }
  .penalty-ball {
    width: 50px;
    height: 50px;
  }
  .player-stats {
    justify-items: start;
  }
  .rewards { display: grid; }
  .reward-button { width: fit-content; }
  .entry-slip {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 34px 40px 40px;
  }
  .slip-price {
    padding-right: 46px;
  }
  .bulk-box {
    grid-column: 1;
    grid-row: auto;
  }
  .basket-button {
    grid-column: 1;
  }
}

@media (max-width: 420px) {
  .brand { font-size: 1.8rem; }
  .countdown { width: calc(100% - 18px); gap: 6px; }
  .countdown > div { min-height: 78px; padding: 8px; }
  .countdown strong { font-size: 2rem; }
  .countdown span { font-size: 0.58rem; }
  .play-button { min-width: 206px; min-height: 70px; }
  .entry-slip { padding: 28px 40px 40px; }
  .quantity-control { grid-template-columns: 72px 64px 72px; }
  .bulk-box { padding-inline: 16px; }
  .bulk-options { gap: 8px; }
}
