* { box-sizing: border-box; }
:root {
  --site-red: #7f1d1d;
  --site-red-light: #b91c1c;
  --site-red-dark: #450a0a;
}
html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
html, body {
  margin: 0;
  min-height: 100%;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  background: #8b0000;
  color: #fff8e7;
}
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  overscroll-behavior-x: none;
  position: relative;
}
a { color: #ffd700; }

/* festive background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(255,215,0,0.18) 0%, transparent 35%),
    radial-gradient(circle at 85% 15%, rgba(255,100,50,0.15) 0%, transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(255,180,0,0.12) 0%, transparent 40%),
    linear-gradient(180deg, var(--site-red-light) 0%, var(--site-red) 40%, var(--site-red-dark) 100%);
  z-index: -2;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,215,0,0.35) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}

#confettiCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 65;
}

/* ===== Site header (Postcode Lottery style) ===== */
.site-header {
  background: var(--site-red);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: #fff;
  color: var(--site-red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
}
.logo-text {
  font-size: 11px;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.logo-text strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
}
.site-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0.95;
}
.site-nav a:hover { opacity: 1; text-decoration: underline; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.header-help {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-help::before { content: "🔍"; font-size: 12px; }
.btn-signup {
  background: #00a651;
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s;
}
.btn-signup:hover { background: #008c45; }
.btn-header-login {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.85);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  margin-right: 8px;
}
.btn-header-login:hover { background: rgba(255,255,255,0.15); }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 4px 8px;
}

/* ===== Hero video banner ===== */
.video-hero {
  position: relative;
  width: 100%;
  height: clamp(320px, 52vw, 520px);
  overflow: hidden;
  background: #1a1a1a;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
}
.video-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px 60px;
  text-align: center;
  z-index: 2;
}
.video-hero-title {
  color: #fff;
  font-size: clamp(22px, 4.5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 24px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  max-width: 800px;
}
.video-hero-title .highlight {
  color: #ffd700;
  font-size: 1.1em;
}
.hero-cta-box {
  background: var(--site-red);
  border-radius: 4px;
  padding: 20px 24px 24px;
  width: min(100%, 420px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.hero-cta-label {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 14px;
}
.btn-hero-spin {
  display: block;
  width: 100%;
  background: #00a651;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.btn-hero-spin:hover {
  background: #008c45;
  transform: translateY(-1px);
}
.hero-countdown-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 13px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  z-index: 3;
}
.hero-pill {
  background: var(--site-red);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.video-pause-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  background: rgba(0,0,0,0.5);
  border: 0;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
}
.video-pause-btn:hover { background: rgba(0,0,0,0.75); }

/* Trust bar below hero */
.trust-bar {
  background: #fff;
  color: #333;
  display: flex;
  justify-content: center;
  gap: clamp(12px, 4vw, 40px);
  flex-wrap: wrap;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid #eee;
}
.trust-bar span { color: #00a651; }
.trust-bar span::first-letter { color: #00a651; }

@media (max-width: 768px) {
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--site-red);
    flex-direction: column;
    padding: 12px 16px 16px;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  .site-nav.open { display: flex; }
  .header-actions .header-help { display: none; }
  .header-inner { position: relative; }
  .video-hero { height: clamp(360px, 70vw, 480px); }
  .hero-countdown-bar { font-size: 11px; padding: 8px 12px; }
}

.shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 14px 56px;
  position: relative;
  --shell-pad-x: 14px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* FREE emphasis */
.free-badge {
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
  color: #fff !important;
  animation: pulse-free 2s ease-in-out infinite;
}
@keyframes pulse-free {
  0%, 100% { box-shadow: 0 4px 16px rgba(34,197,94,0.4); }
  50% { box-shadow: 0 4px 28px rgba(34,197,94,0.7); }
}
.stat-free strong { color: #4ade80 !important; }
.hero-tier { font-size: 15px; color: #ffe4b5; margin-top: 8px; }
.hero-tier strong { color: #ffd700; }

/* removed lanterns */

/* hero title */
.hero {
  text-align: center;
  margin-bottom: 12px;
  padding-top: 8px;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #7f1d1d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 10px;
  box-shadow: 0 4px 16px rgba(255,215,0,0.4);
}
.hero h1 {
  margin: 0;
  font-size: clamp(42px, 11vw, 88px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff9c4 0%, #ffd700 35%, #ff8c00 70%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5)) drop-shadow(0 0 30px rgba(255,215,0,0.4));
}
.hero-sub {
  margin: 10px 0 0;
  font-size: clamp(15px, 3.5vw, 20px);
  color: #ffe4b5;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.hero-sub strong { color: #ffd700; }

.stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 22px;
}
.stat {
  background: linear-gradient(145deg, rgba(255,215,0,0.15), rgba(0,0,0,0.25));
  border: 2px solid rgba(255,215,0,0.45);
  border-radius: 16px;
  padding: 12px 22px;
  min-width: 130px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.stat strong {
  display: block;
  font-size: clamp(28px, 6vw, 36px);
  color: #ffd700;
  line-height: 1.1;
}
.stat span {
  font-size: 13px;
  color: #ffe4b5;
  opacity: 0.9;
}
.stat-hint {
  display: block;
  font-size: 11px;
  color: #ffb347;
  margin-top: 4px;
}

/* main layout */
.main-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* won prize box below wheel */
.won-prize-box {
  width: 100%;
  max-width: 560px;
}
.won-prize-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: linear-gradient(145deg, rgba(255,215,0,0.18), rgba(0,0,0,0.35));
  border: 2px solid rgba(255,215,0,0.55);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}
.won-prize-inner img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #ffd700;
  flex-shrink: 0;
}
.won-prize-info { flex: 1; min-width: 0; }
.won-prize-label {
  margin: 0 0 4px;
  font-size: 13px;
  color: #ffd700;
  font-weight: 700;
}
.won-prize-info h3 {
  margin: 0 0 4px;
  font-size: clamp(16px, 4vw, 20px);
  color: #fff;
}
.won-prize-hint {
  margin: 0;
  font-size: 12px;
  color: #ffe4b5;
}
.won-claim-btn {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 10px 18px !important;
  font-size: 14px !important;
}

.wheel-card {
  width: 100%;
  max-width: 640px;
  background: linear-gradient(165deg, rgba(160,0,0,0.95) 0%, rgba(69,10,10,0.98) 45%, rgba(40,5,5,1) 100%);
  border: 3px solid #ffd700;
  border-radius: 28px;
  padding: clamp(16px, 4vw, 32px);
  box-shadow:
    0 0 0 6px rgba(255,215,0,0.15),
    0 24px 60px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.wheel-card-premium {
  border-width: 4px;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255,215,0,0.12), transparent 60%),
    linear-gradient(165deg, rgba(160,0,0,0.96) 0%, rgba(69,10,10,0.98) 50%, rgba(25,5,5,1) 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 0 0 8px rgba(255,215,0,0.12),
    0 0 80px rgba(255,140,0,0.25),
    0 32px 80px rgba(0,0,0,0.55);
}
.wheel-tagline {
  text-align: center;
  margin: 0 0 12px;
  font-size: clamp(12px, 2.5vw, 15px);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffe566;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.wheel-spotlight {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(255,215,0,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.wheel-card::before,
.wheel-card::after {
  content: "🎊";
  position: absolute;
  font-size: 28px;
  top: 12px;
  z-index: 2;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  animation: float-deco 3s ease-in-out infinite;
}
.wheel-card::before { left: 16px; }
.wheel-card::after { right: 16px; animation-delay: 1.5s; }
@keyframes float-deco {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.wheel-wrap {
  position: relative;
  width: min(100%, 560px);
  max-width: 100%;
  margin: 0 auto 20px;
  aspect-ratio: 1;
  z-index: 1;
}
.wheel-hub-stat {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 12;
  width: 24%;
  min-width: 74px;
  max-width: 120px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px;
  background: linear-gradient(180deg, #fff3a3, #ffd700);
  border: 3px solid #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  text-align: center;
}
.wheel-hub-stat strong {
  display: block;
  font-size: clamp(24px, 5.8vw, 44px);
  line-height: 1;
  margin-bottom: 2px;
}
.wheel-hub-stat span {
  display: block;
  font-size: clamp(8px, 1.8vw, 11px);
  color: #7f1d1d;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.wheel-outer-glow {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,0.35) 0%, rgba(255,100,0,0.15) 40%, transparent 70%);
  filter: blur(8px);
  animation: glow-pulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}
.wheel-lights {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  opacity: 0.45;
}
.wheel-lights::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(255,249,196,0.9) 0deg 4deg,
    transparent 4deg 15deg
  );
  -webkit-mask: radial-gradient(circle, transparent 64%, #000 66%, #000 74%, transparent 76%);
  mask: radial-gradient(circle, transparent 64%, #000 66%, #000 74%, transparent 76%);
  animation: spin-slow 18s linear infinite;
}
.wheel-lights::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 2px solid rgba(255,215,0,0.2);
  box-shadow: 0 0 16px rgba(255,215,0,0.15) inset;
}

/* neon bulb ring */
.neon-frame {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 4px solid rgba(255, 200, 50, 0.35);
  box-shadow:
    0 0 12px rgba(255, 215, 0, 0.4),
    0 0 30px rgba(255, 140, 0, 0.25),
    inset 0 0 20px rgba(255, 215, 0, 0.12);
  pointer-events: none;
  z-index: 3;
  animation: neon-frame-pulse 2.5s ease-in-out infinite;
}
@keyframes neon-frame-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(255,215,0,0.35), 0 0 28px rgba(255,140,0,0.2), inset 0 0 18px rgba(255,215,0,0.1); }
  50% { box-shadow: 0 0 20px rgba(255,215,0,0.65), 0 0 45px rgba(255,140,0,0.4), inset 0 0 28px rgba(255,215,0,0.2); }
}
.neon-bulbs {
  position: absolute;
  inset: -32px;
  pointer-events: none;
  z-index: 5;
}
.neon-bulb {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-origin: center center;
  animation: neon-bulb-chase 1.8s ease-in-out infinite;
}
.neon-bulb-cap {
  width: 12px;
  height: 14px;
  border-radius: 50% 50% 42% 42%;
  position: relative;
}
.neon-bulb-cap::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  filter: blur(0.5px);
}
.neon-bulb-base {
  width: 8px;
  height: 5px;
  margin-top: -1px;
  background: linear-gradient(180deg, #666, #333);
  border-radius: 0 0 3px 3px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.neon-bulb.gold .neon-bulb-cap {
  background: radial-gradient(circle at 35% 28%, #fffef0, #ffe566 45%, #ffaa00 100%);
  box-shadow: 0 0 6px #fff9c4, 0 0 14px #ffd700, 0 0 22px rgba(255, 180, 0, 0.85);
}
.neon-bulb.warm .neon-bulb-cap {
  background: radial-gradient(circle at 35% 28%, #fff, #fff5cc 50%, #ffcc66 100%);
  box-shadow: 0 0 6px #fff, 0 0 14px #fff8dc, 0 0 22px rgba(255, 230, 150, 0.9);
}
.neon-bulb.red .neon-bulb-cap {
  background: radial-gradient(circle at 35% 28%, #ffe0e0, #ff6b6b 50%, #ff2222 100%);
  box-shadow: 0 0 6px #ffb3b3, 0 0 14px #ff4444, 0 0 22px rgba(255, 60, 60, 0.85);
}
.neon-bulb.white .neon-bulb-cap {
  background: radial-gradient(circle at 35% 28%, #fff, #f0f0f0 60%, #ddd 100%);
  box-shadow: 0 0 6px #fff, 0 0 14px rgba(255,255,255,0.9), 0 0 20px rgba(200,230,255,0.7);
}
@keyframes neon-bulb-chase {
  0%, 100% {
    opacity: 0.3;
    filter: brightness(0.55) saturate(0.7);
  }
  35%, 65% {
    opacity: 1;
    filter: brightness(1.35) saturate(1.2);
  }
}
.wheel-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 6px dashed rgba(255,215,0,0.5);
  animation: spin-slow 20s linear infinite reverse;
  pointer-events: none;
  z-index: 2;
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
#wheelCanvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
  border-radius: 50%;
  z-index: 1;
  box-shadow:
    0 0 0 6px rgba(255,215,0,0.45),
    0 0 60px rgba(255,215,0,0.35),
    0 16px 50px rgba(0,0,0,0.55);
}
.wheel-pointer {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 42px solid #ffd700;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.6)) drop-shadow(0 0 12px rgba(255,215,0,0.6));
  z-index: 5;
}
.wheel-pointer::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -14px;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid #fff3b0;
  opacity: 0.85;
}
.wheel-pointer::after {
  content: "";
  position: absolute;
  top: -44px;
  left: -9px;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at 35% 35%, #ff6b6b, #cc0000);
  border-radius: 50%;
  border: 3px solid #ffd700;
  box-shadow: 0 0 10px rgba(255,68,68,0.8);
}

.spin-btn {
  display: block;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  padding: 18px 28px;
  border: 3px solid #ffd700;
  border-radius: 999px;
  font-size: clamp(17px, 4vw, 22px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7f1d1d;
  background: linear-gradient(180deg, #fff0a0 0%, #ffe566 15%, #ffd700 45%, #ff8c00 100%);
  cursor: pointer;
  box-shadow:
    0 0 0 2px rgba(127,29,29,0.3) inset,
    0 10px 30px rgba(255,140,0,0.55),
    inset 0 2px 0 rgba(255,255,255,0.5);
  transition: transform .15s ease, box-shadow .15s ease;
  animation: pulse-btn 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.wheel-subcta {
  text-align: center;
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,228,181,0.85);
  text-transform: uppercase;
}
@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 8px 24px rgba(255,140,0,0.5), inset 0 2px 0 rgba(255,255,255,0.4); }
  50% { box-shadow: 0 8px 36px rgba(255,215,0,0.7), inset 0 2px 0 rgba(255,255,255,0.4); }
}
.spin-btn:disabled {
  opacity: 0.65;
  cursor: wait;
  animation: none;
}
.spin-btn.is-recharge {
  cursor: pointer;
  opacity: 1;
  animation: pulse-btn 2s ease-in-out infinite;
}
.spin-btn.is-recharge:hover { transform: scale(1.05); }
.spin-btn:not(:disabled):hover { transform: scale(1.05); }

/* Desktop — larger premium wheel */
@media (min-width: 900px) {
  .shell { max-width: 1280px; padding-left: 24px; padding-right: 24px; }
  .main-stage { gap: 28px; }
  .wheel-card,
  .wheel-card-premium {
    max-width: 920px;
    padding: 36px 48px 32px;
    border-radius: 36px;
    border-width: 5px;
  }
  .wheel-card::before,
  .wheel-card::after { font-size: 40px; top: 20px; }
  .wheel-card::before { left: 28px; }
  .wheel-card::after { right: 28px; }
  .wheel-tagline {
    font-size: 16px;
    letter-spacing: 0.28em;
    margin-bottom: 20px;
  }
  .wheel-wrap {
    width: min(78vw, 760px);
    margin-bottom: 28px;
  }
  .wheel-outer-glow { inset: -28px; }
  .neon-frame { inset: -38px; border-width: 5px; }
  .neon-bulbs { inset: -40px; }
  .neon-bulb-cap { width: 14px; height: 17px; }
  .neon-bulb-base { width: 9px; height: 6px; }
  .wheel-lights { inset: -20px; }
  .wheel-ring { inset: -14px; border-width: 8px; }
  .wheel-pointer {
    top: -10px;
    border-left-width: 26px;
    border-right-width: 26px;
    border-top-width: 54px;
  }
  .wheel-pointer::before {
    top: -50px;
    left: -18px;
    border-left-width: 18px;
    border-right-width: 18px;
    border-top-width: 36px;
  }
  .wheel-pointer::after {
    top: -56px;
    left: -11px;
    width: 22px;
    height: 22px;
    border-width: 4px;
  }
  .spin-btn {
    max-width: 520px;
    padding: 22px 40px;
    font-size: 24px;
    letter-spacing: 0.12em;
    border-width: 4px;
  }
  .wheel-subcta { font-size: 14px; margin-top: 16px; }
  .won-prize-box { max-width: 760px; }
  .stat { min-width: 160px; padding: 16px 32px; }
}

@media (min-width: 1200px) {
  .wheel-wrap { width: min(72vw, 820px); }
  .wheel-card-premium { max-width: 980px; }
  .hero h1 { font-size: 96px; }
}

/* result modals */
.modal-result { text-align: center; max-width: 420px; }
.modal-result img {
  width: 140px; height: 140px; object-fit: cover;
  border-radius: 16px; border: 3px solid #ffd700;
  margin: 12px auto; display: block;
}
.result-pop-ribbon {
  background: linear-gradient(90deg, #ff4444, #ffd700, #ff4444);
  color: #fff; font-weight: 800; letter-spacing: 0.1em;
  padding: 10px; border-radius: 10px; margin-bottom: 12px;
  font-size: 14px;
}
.result-pop-hint { color: #92400e; font-size: 14px; }
.tier-label {
  display: inline-block; background: #cc0000; color: #fff;
  padding: 4px 14px; border-radius: 999px; font-size: 13px; font-weight: 700;
}
.modal-recharge .price-big { color: #cc0000; font-size: 1.4em; }
.recharge-lead {
  margin: 0 0 12px;
  font-size: 15px;
  color: #7f1d1d;
  text-align: center;
}
.recharge-offer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 0 0 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.28), rgba(255, 140, 0, 0.12));
  border: 2px solid rgba(255, 215, 0, 0.55);
  text-align: center;
}
.recharge-price {
  font-size: clamp(28px, 6vw, 36px);
  font-weight: 900;
  color: #cc0000;
  line-height: 1;
  letter-spacing: -0.02em;
}
.recharge-offer-divider {
  font-size: 22px;
  font-weight: 800;
  color: #b45309;
  line-height: 1;
}
.recharge-offer-spins {
  font-size: 17px;
  color: #7f1d1d;
  line-height: 1.2;
}
.recharge-offer-spins strong {
  color: #cc0000;
  font-weight: 900;
}
.recharge-sub {
  margin: 0 0 14px;
  font-size: 14px;
  color: #92400e;
  text-align: center;
  line-height: 1.5;
}
.recharge-perks { text-align: left; color: #7f1d1d; font-size: 14px; line-height: 1.8; padding-left: 20px; margin: 0 0 4px; }
.modal-recharge #closeRecharge {
  display: block;
  margin: 14px auto 0;
  min-width: 180px;
}

/* prize pool — two rows, full width */
.prize-pool-scroll {
  overflow: visible;
  width: 100%;
  padding: 4px 0 12px;
  box-sizing: border-box;
}
.prize-pool-row {
  display: grid;
  grid-template-columns: repeat(var(--prize-cols, 4), minmax(0, 1fr));
  gap: clamp(8px, 1.2vw, 12px);
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.prize-pool-row .prize-item {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.prize-pool-row .prize-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: 10px 10px 0 0;
}
.prize-pool-row .prize-item-name,
.prize-pool-row .prize-item span {
  display: block;
  padding: 8px 6px 10px;
  font-size: clamp(11px, 2.8vw, 13px);
  line-height: 1.35;
  text-align: center;
  color: #ffe4b5;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
  white-space: normal;
}

.result-box { display: none !important; }

@keyframes pop-in {
  from { opacity: 0; transform: scale(0.8) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.result-box.win {
  background: linear-gradient(135deg, #fff9e6, #ffe4b5);
  border: 3px solid #ffd700;
  box-shadow: 0 12px 40px rgba(255,215,0,0.4);
  color: #7f1d1d;
}
.result-box.lose {
  background: rgba(0,0,0,0.3);
  border: 2px solid rgba(255,255,255,0.2);
  padding: 16px 20px;
  color: #ffe4b5;
}
.result-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  position: relative;
}
.result-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 36px;
  background: linear-gradient(90deg, #ff4444, #ffd700, #ff4444);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.result-inner.has-ribbon { padding-top: 48px; }
.result-box img {
  width: clamp(100px, 28vw, 140px);
  height: clamp(100px, 28vw, 140px);
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid #ffd700;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.result-text h3 {
  margin: 0 0 6px;
  font-size: clamp(20px, 5vw, 28px);
  color: #cc0000;
}
.result-text .prize-name {
  font-size: clamp(16px, 4vw, 22px);
  font-weight: 800;
  color: #7f1d1d;
  margin: 0 0 10px;
}
.result-text p {
  margin: 0;
  font-size: 14px;
  color: #92400e;
}
.result-actions {
  padding: 0 20px 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* prize pool */
.prize-section {
  width: 100%;
  max-width: 100%;
  margin: 8px auto 0;
  box-sizing: border-box;
}
.prize-section h2 {
  text-align: center;
  font-size: clamp(20px, 5vw, 28px);
  color: #ffd700;
  margin: 0 0 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.prize-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.prize-item {
  background: linear-gradient(160deg, rgba(255,215,0,0.12), rgba(0,0,0,0.3));
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(255,215,0,0.3);
  transition: transform .2s;
}
.prize-item:hover { transform: translateY(-3px); }
.prize-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.prize-item span {
  display: block;
  padding: 8px 10px;
  font-size: 12px;
  text-align: center;
  color: #ffe4b5;
}

/* modals */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(69,10,10,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 50;
}
.modal.show { display: flex; }
.modal-card {
  position: relative;
  width: min(100%, 520px);
  max-height: 90vh;
  overflow: auto;
  background: linear-gradient(160deg, #fff9e6, #ffe4b5);
  border: 3px solid #ffd700;
  border-radius: 20px;
  padding: 22px;
  color: #7f1d1d;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.modal-card h2 { margin-top: 0; color: #cc0000; }
.modal-claim-wide { width: min(100%, 560px); }
.claim-step-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 0;
}
.claim-step-nav.hide { display: none; }
.claim-step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  background: rgba(127,29,29,0.15);
  color: #92400e;
  border: 2px solid rgba(127,29,29,0.25);
}
.claim-step-dot.active {
  background: #cc0000;
  color: #fff;
  border-color: #cc0000;
}
.claim-step-dot.done {
  background: #22c55e;
  color: #fff;
  border-color: #22c55e;
}
.claim-step-line {
  width: 40px;
  height: 2px;
  background: rgba(127,29,29,0.2);
}
.claim-step-panel { display: none; }
.claim-step-panel.active { display: grid; gap: 12px; }
.claim-modal--authed .claim-step-panel[data-step="1"] { display: none !important; }
.claim-modal--authed #claimStep2Back { display: none; }
.claim-step-title {
  margin: 0;
  font-size: 18px;
  color: #cc0000;
}
.claim-step-desc {
  margin: 0 0 12px;
  color: #64748b;
  font-size: 14px;
}
.claim-signed-in {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #ecfdf5;
  color: #065f46;
  font-size: 14px;
}
.checkbox-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.checkbox-row input { width: auto !important; }
.billing-row { margin: 4px 0 8px; }
.billing-summary {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(127,29,29,0.06);
  border: 1px solid rgba(127,29,29,0.12);
  font-size: 14px;
  color: #7f1d1d;
}
.link-btn {
  background: none;
  border: 0;
  color: #cc0000;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  margin-left: 8px;
  font-size: 14px;
}
.billing-fields-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.billing-fields {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px dashed rgba(127,29,29,0.3);
  border-radius: 12px;
  background: rgba(255,255,255,0.35);
}
.billing-fields[hidden],
.billing-fields.is-collapsed {
  display: none !important;
}
.billing-title {
  margin: 0;
  font-size: 15px;
  color: #7f1d1d;
}
.shipping-fee-notice {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(204,0,0,0.08);
  border: 1px solid rgba(204,0,0,0.2);
  display: grid;
  gap: 4px;
}
.shipping-fee-notice strong { color: #cc0000; font-size: 16px; }
.shipping-fee-notice span { font-size: 13px; color: #92400e; }
.claim-success {
  text-align: center;
  padding: 8px 0;
}
.claim-success h3 { color: #cc0000; margin: 12px 0 8px; }
.claim-success p { color: #92400e; margin: 0 0 16px; }
.claim-prize-preview.hide { display: none !important; }
.form-grid select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(127,29,29,0.25);
  background: #fff;
  color: #7f1d1d;
  font-size: 14px;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff5555, #cc0000);
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.35),
    0 0 0 2px rgba(255, 215, 0, 0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.modal-close:hover {
  background: linear-gradient(180deg, #ff7777, #dd1111);
  color: #fff;
  transform: scale(1.08);
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.45),
    0 0 0 3px rgba(255, 215, 0, 0.85);
}
.form-grid { display: grid; gap: 12px; }
.form-grid label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
}
.form-grid input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 2px solid #d4a574;
  background: #fff;
  color: #333;
}
.phone-input-wrap {
  display: grid;
  grid-template-columns: minmax(118px, 34%) 1fr;
  gap: 8px;
  align-items: stretch;
}
.phone-dial-select,
.phone-local-input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 2px solid #d4a574;
  background: #fff;
  color: #333;
  font-size: 15px;
}
.phone-dial-select {
  padding-right: 28px;
  cursor: pointer;
}
@media (max-width: 520px) {
  .phone-input-wrap {
    grid-template-columns: 1fr;
  }
}
.btn-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
}
.btn-primary {
  background: linear-gradient(180deg, #ff4444, #cc0000);
  color: #fff;
  box-shadow: 0 4px 12px rgba(204,0,0,0.4);
}
.btn-secondary {
  background: #92400e;
  color: #fff;
}
.btn-gold {
  background: linear-gradient(180deg, #ffe566, #ffd700);
  color: #7f1d1d;
  border: 2px solid #cc0000;
}
#paypal-recharge, #paypal-shipping { margin-top: 8px; min-height: 45px; }

/* PayPal embedded checkout (Shopify-style) */
.paypal-checkout-embed {
  margin-top: 16px;
  padding: 16px;
  background: #fff;
  border-radius: 14px;
  border: 2px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.checkout-summary {
  border-bottom: 1px dashed #d4a574;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.checkout-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}
.checkout-total {
  font-size: 17px;
  color: #7f1d1d;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #eee;
}
.checkout-total strong { color: #cc0000; font-size: 20px; }
.checkout-note {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin: 0 0 10px;
}
.paypal-embed-buttons {
  min-height: 50px;
}
.paypal-embed-buttons iframe { border-radius: 8px !important; }
.paypal-direct-btn {
  width: 100%;
  min-height: 50px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 8px;
}
.claim-step2-back-row {
  justify-content: flex-start;
  margin-top: 8px;
}
.claim-pay-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.btn-paypal-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  min-height: 52px;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  background: #ffc439;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn-paypal-checkout:hover:not(:disabled) {
  background: #f5b730;
  transform: translateY(-1px);
}
.btn-paypal-checkout:disabled {
  opacity: 0.7;
  cursor: wait;
}
.btn-paypal-svg {
  width: 96px;
  height: 28px;
  display: block;
}
.claim-pay-note {
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: #666;
}
.payment-success-card h2 { color: #111; }
.payment-success-ribbon {
  background: linear-gradient(90deg, #111, #444, #111) !important;
}
.order-success-note {
  font-size: 14px;
  color: #555;
}
.order-success-note a { color: #111; font-weight: 700; }

.claim-prize-preview {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: #fff;
  border-radius: 12px;
  border: 2px solid #ffd700;
  margin-bottom: 16px;
}
.claim-prize-preview img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #ffd700;
}
.claim-prize-preview strong {
  display: block;
  font-size: 16px;
  color: #7f1d1d;
  margin-bottom: 4px;
}
.claim-prize-preview span {
  font-size: 14px;
  color: #cc0000;
  font-weight: 700;
}

/* Social proof popup — bottom left, every 5s */
.social-proof {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 55;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(360px, calc(100vw - 32px));
  padding: 12px 14px;
  background: #fff;
  border-radius: 14px;
  border: 2px solid #ffd700;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
  pointer-events: none;
}
.social-proof.show {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.social-proof img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #ffd700;
}
.social-proof-text {
  flex: 1;
  min-width: 0;
}
.social-proof-text strong {
  display: block;
  font-size: 13px;
  color: #333;
  line-height: 1.4;
}
.social-proof-text strong em {
  color: #cc0000;
  font-style: normal;
  font-weight: 800;
}
.social-proof-text span {
  font-size: 11px;
  color: #888;
}
.social-proof-close {
  background: none;
  border: 0;
  font-size: 22px;
  color: #999;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}
.social-proof-close:hover { color: #333; }

@media (max-width: 600px) {
  .social-proof {
    left: 8px;
    right: auto;
    bottom: 8px;
    max-width: min(52vw, 200px);
    padding: 6px 8px;
    gap: 6px;
    border-radius: 10px;
    border-width: 1px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.28);
  }
  .social-proof img {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    border-width: 1px;
  }
  .social-proof-text strong {
    font-size: 10px;
    line-height: 1.3;
  }
  .social-proof-text span {
    font-size: 9px;
  }
  .social-proof-close {
    font-size: 16px;
    padding: 0 2px;
  }
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #cc0000, #7f1d1d);
  color: #ffd700;
  padding: 14px 22px;
  border-radius: 999px;
  border: 2px solid #ffd700;
  display: none;
  z-index: 60;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  max-width: 90vw;
  text-align: center;
}
.toast.show { display: block; }

.rules {
  max-width: 760px;
  margin: 32px auto 0;
  padding: 20px;
  background: rgba(0,0,0,0.25);
  border-radius: 16px;
  border: 1px solid rgba(255,215,0,0.2);
  color: #ffe4b5;
  font-size: 14px;
  line-height: 1.7;
}
.rules h3 { color: #ffd700; margin-top: 0; }
.rules a { color: #ffd700; }

/* ===== Promo band (Postcode-style sections) ===== */
.promo-band {
  width: auto;
  max-width: none;
  margin: 32px calc(-1 * var(--shell-pad-x)) 0;
  background: #fff;
  color: #222;
  padding: clamp(36px, 5vw, 56px) calc(16px + var(--shell-pad-x)) clamp(44px, 6vw, 64px);
  box-sizing: border-box;
  overflow-x: hidden;
}
.promo-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.promo-title {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  color: #111;
  margin: 0 0 clamp(24px, 4vw, 36px);
  line-height: 1.2;
}
.promo-steps { margin-bottom: clamp(36px, 5vw, 52px); }
.promo-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  margin-bottom: clamp(28px, 4vw, 40px);
}
.promo-step {
  text-align: center;
}
.promo-step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  color: var(--site-red);
}
.promo-step-icon svg {
  width: 100%;
  height: 100%;
}
.promo-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--site-red);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 12px;
}
.promo-step h3 {
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 800;
  color: #111;
  margin: 0 0 10px;
  line-height: 1.35;
}
.promo-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}
.promo-hero-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: clamp(220px, 32vw, 340px);
}
.promo-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(69, 10, 10, 0.72) 0%, rgba(69, 10, 10, 0.35) 42%, transparent 68%);
  pointer-events: none;
}
.promo-hero-banner > img {
  width: 100%;
  height: 100%;
  min-height: clamp(220px, 32vw, 340px);
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.promo-banner-card {
  position: absolute;
  left: clamp(16px, 4vw, 36px);
  top: 50%;
  transform: translateY(-50%);
  width: min(100% - 32px, 340px);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  padding: clamp(18px, 3vw, 24px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  border-left: 4px solid var(--site-red);
  z-index: 1;
}
.promo-banner-tag {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.promo-banner-card h3 {
  margin: 0 0 10px;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 900;
  color: #111;
  line-height: 1.25;
}
.promo-banner-card p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: #555;
}
.promo-banner-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe566 0%, #ffd700 45%, #ff8c00 100%);
  color: #7f1d1d;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255, 140, 0, 0.35);
  transition: transform 0.15s ease;
}
.promo-banner-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.promo-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: clamp(36px, 5vw, 52px);
  min-height: clamp(220px, 28vw, 300px);
}
.promo-stat-card {
  background: linear-gradient(145deg, #22c55e, #16a34a);
  color: #fff;
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promo-stat-big {
  margin: 0 0 8px;
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 900;
  line-height: 1;
}
.promo-stat-title {
  margin: 0 0 10px;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  line-height: 1.25;
}
.promo-stat-sub {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.92;
}
.promo-split-image img {
  width: 100%;
  height: 100%;
  min-height: clamp(220px, 28vw, 300px);
  object-fit: cover;
  display: block;
}

.promo-winners { margin-bottom: 8px; }
.winner-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  overflow: hidden;
}
.winner-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 12px;
  scrollbar-width: none;
  max-width: 100%;
  touch-action: pan-x;
}
.winner-carousel::-webkit-scrollbar { display: none; }
.winner-card {
  position: relative;
  flex: 0 0 clamp(220px, 28vw, 280px);
  height: clamp(300px, 38vw, 380px);
  border-radius: 14px;
  overflow: hidden;
  scroll-snap-align: start;
}
.winner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.winner-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 16px;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.82) 100%);
  color: #fff;
}
.winner-card blockquote {
  margin: 0 0 10px;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 700;
  line-height: 1.45;
  quotes: none;
}
.winner-card cite {
  font-size: 13px;
  font-style: normal;
  opacity: 0.9;
}
.winner-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: #fff;
  color: #0066cc;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.winner-nav:hover {
  transform: scale(1.06);
  border-color: #0066cc;
}

@media (max-width: 900px) {
  .promo-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .promo-split {
    grid-template-columns: 1fr;
  }
  .promo-stat-card { min-height: 180px; }
}
@media (max-width: 600px) {
  .promo-steps-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .promo-banner-card {
    left: 12px;
    right: 12px;
    top: auto;
    bottom: 12px;
    transform: none;
    width: auto;
    max-width: none;
  }
  .promo-banner-card h3 {
    font-size: 18px;
  }
  .winner-nav { display: none; }
  .winner-carousel { gap: 12px; }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    overscroll-behavior-x: none;
    touch-action: pan-y;
  }
  .site-header,
  .video-hero,
  .trust-bar,
  .site-footer,
  .footer-main,
  .footer-bottom-bar {
    max-width: 100%;
    overflow-x: hidden;
  }
  .shell {
    padding-left: 10px;
    padding-right: 10px;
    --shell-pad-x: 10px;
  }
  .hero h1 {
    font-size: clamp(34px, 10vw, 48px);
    margin-bottom: 8px;
  }
  .hero-sub {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .main-stage {
    gap: 14px;
    width: 100%;
  }
  .wheel-card,
  .wheel-card-premium {
    width: 100%;
    max-width: 100%;
    padding: 14px 10px 16px;
    border-radius: 20px;
    overflow: hidden;
  }
  .wheel-wrap {
    width: 100%;
    max-width: min(420px, 100%);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 14px;
  }
  .wheel-tagline {
    font-size: 11px;
    letter-spacing: 0.14em;
    margin-bottom: 10px;
  }
  .neon-frame { inset: -10px; }
  .neon-bulbs { inset: -10px; }
  .wheel-outer-glow { inset: -8px; }
  .wheel-ring { inset: -8px; border-width: 4px; }
  .wheel-pointer {
    top: -4px;
    border-left-width: 16px;
    border-right-width: 16px;
    border-top-width: 34px;
  }
  .spin-btn {
    max-width: 100%;
    padding: 16px 18px;
    font-size: 17px;
  }
  .prize-pool-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .prize-pool-row .prize-item-name,
  .prize-pool-row .prize-item span {
    font-size: 11px;
    line-height: 1.35;
    padding: 6px 4px 8px;
    min-height: 2.7em;
  }
  .prize-section {
    padding-left: 4px;
    padding-right: 4px;
  }
}

@media (max-width: 600px) {
  .wheel-card::before, .wheel-card::after { font-size: 20px; top: 8px; }
  .result-inner { flex-direction: column; text-align: center; }
  .prize-grid { grid-template-columns: repeat(2, 1fr); }
  .spin-btn { padding: 16px 20px; }
  .won-prize-inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .won-claim-btn { width: 100%; }
}

/* ===== Content pages ===== */
.page-body {
  background: #f4f4f4;
  color: #333;
}
.page-body::before, .page-body::after { display: none; }
.content-page {
  background: #fff;
  min-height: 40vh;
  padding: 32px 16px 48px;
}
.content-page-inner {
  max-width: 800px;
  margin: 0 auto;
}
.content-back a {
  color: var(--site-red);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.content-page h1 {
  color: #222;
  font-size: clamp(26px, 5vw, 36px);
  margin: 16px 0 24px;
}
.content-prose {
  line-height: 1.75;
  color: #444;
  font-size: 15px;
}
.content-prose h2 {
  color: #222;
  font-size: 20px;
  margin: 28px 0 12px;
}
.content-prose a { color: #0066cc; }
.content-prose ul { padding-left: 20px; }
.sitemap-list { list-style: none; padding: 0; }
.sitemap-list li { margin-bottom: 10px; }
.sitemap-list a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 600;
}
.sitemap-list a:hover { text-decoration: underline; }

/* ===== Site footer ===== */
.site-footer {
  margin-top: 0;
  background: #ececec;
  color: #333;
}
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 16px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 12px;
  color: #222;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: #333;
  text-decoration: none;
  font-size: 13px;
}
.footer-col a:hover { text-decoration: underline; color: var(--site-red); }

.footer-extras {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 24px;
}
.footer-extra-block h5 {
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 10px;
  color: #222;
}
.trust-badges, .pay-logos, .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 12px;
}
.trust-stars { color: #00b67a; font-size: 16px; }
.trust-score { font-weight: 700; }
.badge-18 {
  border: 1px solid #999;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
}
.pay-logo {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
}
.social-links a {
  color: #333;
  font-size: 12px;
  text-decoration: none;
}
.social-links a:hover { color: var(--site-red); }
.footer-contact {
  color: var(--site-red);
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
}

.footer-legal {
  font-size: 11px;
  line-height: 1.7;
  color: #666;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.footer-legal a { color: #0066cc; }
.footer-legal p { margin: 0 0 12px; }

.footer-bottom-bar {
  background: var(--site-red);
  color: #fff;
  padding: 14px 16px 20px;
}
.footer-bottom-links {
  max-width: 1200px;
  margin: 0 auto 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
}
.footer-bottom-links a {
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  opacity: 0.95;
}
.footer-bottom-links a:hover { text-decoration: underline; }
.footer-bottom-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-icon-badge {
  border: 2px solid #fff;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  padding: 8px;
}
.footer-icon-badge.green {
  background: #00a651;
  border-color: #00a651;
}

@media (max-width: 900px) {
  .footer-grid, .footer-extras {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .footer-grid, .footer-extras {
    grid-template-columns: 1fr;
  }
}

/* account / orders */
.account-page { padding-top: 24px; }
.account-inner { max-width: 860px; }
.account-lead { color: #555; margin-bottom: 20px; }
.account-error { color: #cc0000; font-weight: 600; }
.account-login-form {
  display: grid;
  gap: 14px;
  max-width: 420px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #eee;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.account-login-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
}
.account-login-form input {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 15px;
}
.account-empty {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #eee;
  text-align: center;
}
.order-list { display: grid; gap: 16px; }
.order-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}
.order-card-head {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}
.order-card-head img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #ffd700;
}
.order-card-head h3 { margin: 0 0 4px; color: #222; }
.order-id { margin: 0 0 6px; font-size: 13px; color: #777; }
.order-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #f3f4f6;
  color: #374151;
}
.order-status.status-shipped { background: #dcfce7; color: #166534; }
.order-status.status-paid { background: #fef3c7; color: #92400e; }
.order-card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.order-block h4 {
  margin: 0 0 8px;
  font-size: 14px;
  color: #cc0000;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.order-block p { margin: 0; font-size: 14px; line-height: 1.6; color: #444; }
.order-tracking {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 12px;
}
.order-date {
  margin: 14px 0 0;
  font-size: 12px;
  color: #888;
}
@media (max-width: 700px) {
  .order-card-body { grid-template-columns: 1fr; }
}
