:root {
  --cherry:    #E8003D;
  --cherry-glow:rgba(232,0,61,0.45);
  --candy-red: #FF2D55;
  --orange:    #FF6B00;
  --orange-glow:rgba(255,107,0,0.45);
  --gold:      #FFCF40;
  --gold-glow: rgba(255,207,64,0.55);
  --lime:      #A8FF3E;
  --lime-glow: rgba(168,255,62,0.4);
  --teal:      #00E5CC;
  --pink:      #FF6EC7;
  --deep:      #12000A;
  --mid:       #1E0015;
  --card-bg:   rgba(255,255,255,0.06);
  --card-border:rgba(255,255,255,0.12);
  --font-d: 'Fredoka One', cursive;
  --font-ui:'Poppins', sans-serif;
  --font-b: 'Quicksand', sans-serif;
  --r-xl: 32px;
  --r-lg: 20px;
  --r-md: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #1c1d1c !important; /* Устанавливаем ваш цвет */
  color: #fff;
  font-family: var(--font-ui);
  position: relative;
  cursor: default;
}

html, body {
  min-height: 100vh;
  /* Скрываем визуально, но оставляем возможность прокрутки */
  -ms-overflow-style: none;  /* IE и Edge */
  scrollbar-width: none;     /* Firefox */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Полностью скрываем декоративные элементы фона */
.bg, 
.bg::before, 
.bg::after, 
.blob, 
.sweets-layer {
  display: none !important;
}

/* ==========================================
   FLOATING SWEETS
========================================== */
.sweets-layer {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.sweet {
  position: absolute;
  animation: sweetRise linear infinite;
  opacity: 0;
  user-select: none;
}
@keyframes sweetRise {
  0%   { transform: translateY(105vh) rotate(0deg); opacity: 0; }
  8%   { opacity: 0.16; }
  92%  { opacity: 0.16; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* ==========================================
   CONFETTI CANVAS
========================================== */
#confetti {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

/* ==========================================
   TOP BAR
========================================== */
.topbar {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(18,0,10,0.75);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-d);
  font-size: 1.55rem;
  letter-spacing: 0.5px;
}
.logo-icon {
  font-size: 1.7rem;
  animation: logoSpin 4s ease-in-out infinite;
  display: inline-block;
}
@keyframes logoSpin {
  0%,100% { transform: rotate(-8deg) scale(1); }
  50%     { transform: rotate(8deg) scale(1.12); }
}
.logo-text {
  background: linear-gradient(130deg, #FFCF40, #FF6B00, #FF2D55);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.topbar-mid {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(168,255,62,0.08);
  border: 1px solid rgba(168,255,62,0.25);
  border-radius: 50px;
  padding: 5px 16px;
  font-family: var(--font-b);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.5px;
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
  animation: livePulse 1.4s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(0.65); opacity: 0.5; }
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.stat-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-b);
}
.stat-chip-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-chip-lbl {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.sep { width: 1px; height: 28px; background: rgba(255,255,255,0.1); }

/* ==========================================
   TICKER
========================================== */
.ticker {
  position: relative;
  z-index: 20;
  height: 36px;
  background: linear-gradient(90deg,
    rgba(232,0,61,0.25), rgba(255,107,0,0.25),
    rgba(255,207,64,0.2), rgba(255,107,0,0.25),
    rgba(232,0,61,0.25));
  background-size: 300% 100%;
  animation: tickerShift 8s linear infinite;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
@keyframes tickerShift {
  0%   { background-position: 0% 0; }
  100% { background-position: 300% 0; }
}
.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: tickerMove 28s linear infinite;
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-weight: 700;
}
@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.t-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 28px;
  color: rgba(255,255,255,0.85);
}
.t-amt { color: var(--gold); font-weight: 800; }
.t-sep { color: rgba(255,255,255,0.2); }

/* ==========================================
   PAGE LAYOUT
   Asymmetric 3-zone vertical stack:
   [ HERO BANNER wide  ]
   [ BONUS CTA  |  WINNERS  ]
   [ STATS ROW wide  ]
========================================== */
.page {
  position: relative;
  z-index: 5;
  max-width: 1300px;
  margin: 0 auto;
  padding: 48px 36px 72px;
  display: grid;
  gap: 40px;
}

/* ==========================================
   ZONE 1 — HERO BANNER (full width, horizontal)
========================================== */
.hero-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 36px;
  padding: 44px 56px;
  position: relative;
  overflow: hidden;
}

/* Diagonal candy stripe accent */
.hero-banner::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 380px; height: 100%;
  background: linear-gradient(135deg,
    transparent 30%,
    rgba(255,207,64,0.06) 30%,
    rgba(255,107,0,0.08) 60%,
    transparent 60%
  );
  pointer-events: none;
}

/* Top shimmer line */
.hero-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent, var(--cherry), var(--gold), var(--orange), var(--lime), transparent);
  animation: shimmerLine 3s linear infinite;
  background-size: 200% 100%;
}
@keyframes shimmerLine {
  from { background-position: -100% 0; }
  to   { background-position: 200% 0; }
}

.hero-text { display: flex; flex-direction: column; gap: 16px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168,255,62,0.1);
  border: 1px solid rgba(168,255,62,0.3);
  border-radius: 50px;
  padding: 5px 16px;
  width: fit-content;
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0.5px;
}

.ht-1 {
  display: block;
  color: var(--gold);
  text-shadow: 0 0 40px var(--gold-glow), 0 4px 12px rgba(0,0,0,0.4);
}
.ht-2 {
  display: block;
  background: linear-gradient(135deg, #FF6EC7, #FF2D55, #E8003D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 8px;
}
.ht-3 {
  display: block;
  background: linear-gradient(135deg, #A8FF3E, #00E5CC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 20px;
}

.hero-desc {
  font-family: var(--font-b);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.58);
  max-width: 440px;
  line-height: 1.7;
}

/* Feature pills */
.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.feat {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 4px 12px;
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

/* Right side of hero: big candy gift graphic */
.hero-visual {
  position: relative;
  width: 260px;
  height: 260px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rotating ring */
.vis-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(255,207,64,0.3);
  animation: ringRotate 20s linear infinite;
}
.vis-ring-2 {
  position: absolute;
  inset: 15px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,45,85,0.2);
  animation: ringRotate 30s linear infinite reverse;
}
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Glow behind box */
.vis-glow {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,207,64,0.3) 0%,
    rgba(232,0,61,0.15) 50%,
    transparent 70%
  );
  filter: blur(18px);
  animation: visGlow 3s ease-in-out infinite alternate;
}
@keyframes visGlow {
  from { transform: scale(0.9); opacity: 0.7; }
  to   { transform: scale(1.1); opacity: 1; }
}

.gift-box {
  font-size: 7rem;
  position: relative;
  z-index: 2;
  animation: giftFloat 2.8s ease-in-out infinite;
  filter: drop-shadow(0 8px 30px rgba(255,207,64,0.7));
}
@keyframes giftFloat {
  0%,100% { transform: translateY(0) rotate(-4deg) scale(1); }
  50%     { transform: translateY(-14px) rotate(4deg) scale(1.06); }
}

/* Orbiting candy dots */
.orb {
  position: absolute;
  font-size: 1.4rem;
  animation: orbMove linear infinite;
}
@keyframes orbMove {
  from { transform: rotate(0deg) translateX(110px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(110px) rotate(-360deg); }
}

/* ==========================================
   ZONE 2 — MIDDLE ROW
   [  BONUS CTA CARD  |  WINNERS FEED  ]
========================================== */
.middle-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

/* ---- BONUS CTA CARD ---- */
.bonus-card {
  background: linear-gradient(145deg, rgba(232,0,61,0.12), rgba(255,107,0,0.08), rgba(255,207,64,0.06));
  border: 1.5px solid rgba(255,207,64,0.25);
  border-radius: 36px;
  padding: 52px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* Radial glow backdrop */
.bonus-card::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,207,64,0.1) 0%, transparent 65%);
  pointer-events: none;
}

/* Bottom shimmer */
.bonus-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent, var(--gold), var(--orange), var(--cherry), transparent);
  animation: shimmerLine 2.5s linear infinite;
  background-size: 200% 100%;
}

.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168,255,62,0.1);
  border: 1px solid rgba(168,255,62,0.35);
  border-radius: 50px;
  padding: 6px 18px;
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Prize display */
.prize-display {
  position: relative;
}

.prize-num {
  font-family: var(--font-d);
  font-size: clamp(5rem, 9vw, 8rem);
  line-height: 0.9;
  background: linear-gradient(135deg, #FFCF40 0%, #FF6B00 50%, #E8003D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(255,207,64,0.5));
  position: relative;
  z-index: 1;
}

.prize-unit {
  font-family: var(--font-d);
  font-size: 1.8rem;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-top: 4px;
  letter-spacing: 1px;
}

/* Countdown timer */
.countdown-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.countdown-label {
  font-family: var(--font-b);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
}
.countdown-blocks {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 8px 14px;
  min-width: 52px;
}
.cd-val {
  font-family: var(--font-d);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold);
}
.cd-lbl {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}
.cd-colon {
  font-family: var(--font-d);
  font-size: 1.3rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 6px;
}

/* THE BIG CLAIM BUTTON */
.claim-btn-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

/* Pulse rings behind button */
.pulse-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 100%; height: 100%;
  border-radius: 100px;
  border: 2px solid rgba(255,207,64,0.5);
  animation: pulseRing 2.4s ease-out infinite;
  pointer-events: none;
}
.pulse-ring:nth-child(2) { animation-delay: 0.8s; }
.pulse-ring:nth-child(3) { animation-delay: 1.6s; }
@keyframes pulseRing {
  0%   { transform: translate(-50%,-50%) scale(1); opacity: 0.7; }
  100% { transform: translate(-50%,-50%) scale(1.45); opacity: 0; }
}

.claim-btn {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 22px 40px;
  background: linear-gradient(135deg, #FFCF40 0%, #FF6B00 50%, #E8003D 100%);
  background-size: 200% 200%;
  animation: btnShift 3s ease infinite;
  color: #fff;
  font-family: var(--font-d);
  font-size: 1.55rem;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow:
    0 0 0 3px rgba(255,207,64,0.2),
    0 8px 40px rgba(232,0,61,0.6),
    inset 0 2px 0 rgba(255,255,255,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  overflow: hidden;
}
.claim-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 55%);
  border-radius: 100px;
  pointer-events: none;
}
.claim-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 0 4px rgba(255,207,64,0.35),
    0 14px 50px rgba(232,0,61,0.75),
    inset 0 2px 0 rgba(255,255,255,0.2);
}
.claim-btn:active { transform: scale(0.97); }
@keyframes btnShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-icon { font-size: 1.6rem; }
.btn-arrow {
  font-size: 1.2rem;
  margin-left: 4px;
  transition: transform 0.2s;
}
.claim-btn:hover .btn-arrow { transform: translateX(4px); }

/* Sub-note below button */
.btn-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
}
.note-icon { font-size: 0.8rem; }

/* ---- WINNERS FEED ---- */
.winners-panel {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-b);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
}

.panel-live {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(168,255,62,0.1);
  border: 1px solid rgba(168,255,62,0.25);
  border-radius: 50px;
  padding: 3px 10px;
  font-family: var(--font-b);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.winners-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 8px 0;
  max-height: 420px;
  overflow-y: auto;
  scrollbar-width: none;
}
.winners-list::-webkit-scrollbar {
  display: none !important;
}

.winner-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  transition: background 0.18s;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.winner-row:last-child { border-bottom: none; }
.winner-row:hover { background: rgba(255,255,255,0.04); }

.w-rank {
  font-family: var(--font-d);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  width: 18px;
  text-align: right;
  flex-shrink: 0;
}
.w-rank.gold   { color: var(--gold); }
.w-rank.silver { color: rgba(192,192,192,0.8); }
.w-rank.bronze { color: rgba(205,127,50,0.9); }

.w-av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232,0,61,0.25), rgba(255,207,64,0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.08);
}

.w-info { flex: 1; min-width: 0; }
.w-name {
  font-family: var(--font-b);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.w-time {
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255,255,255,0.28);
  margin-top: 1px;
}

.w-prize {
  font-family: var(--font-d);
  font-size: 0.95rem;
  color: var(--gold);
  text-shadow: 0 0 10px var(--gold-glow);
  flex-shrink: 0;
}

/* "New win" animation for fresh rows */
@keyframes newWin {
  0%   { background: rgba(255,207,64,0.12); }
  100% { background: transparent; }
}
.winner-row.fresh { animation: newWin 1.5s ease forwards; }

/* ==========================================
   ZONE 3 — STATS ROW (full width)
========================================== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.stat-card:hover {
  border-color: rgba(255,207,64,0.3);
  transform: translateY(-3px);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.stat-card:nth-child(1)::before { background: linear-gradient(90deg, var(--cherry), var(--orange)); }
.stat-card:nth-child(2)::before { background: linear-gradient(90deg, var(--gold), #FFF0A0); }
.stat-card:nth-child(3)::before { background: linear-gradient(90deg, var(--teal), #A8FF3E); }
.stat-card:nth-child(4)::before { background: linear-gradient(90deg, var(--pink), var(--cherry)); }

.sc-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 8px rgba(255,207,64,0.5));
}
.sc-val {
  font-family: var(--font-d);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--gold);
  margin-top: 4px;
}
.sc-lbl {
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.38);
}
.sc-delta {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: var(--font-b);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--lime);
  background: rgba(168,255,62,0.1);
  border-radius: 50px;
  padding: 2px 8px;
  margin-top: 2px;
  width: fit-content;
}

/* ==========================================
   TOAST
========================================== */
.toast-wrap {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 80;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(18,0,10,0.94);
  border: 1px solid rgba(255,207,64,0.28);
  border-radius: 20px;
  padding: 12px 18px 12px 14px;
  min-width: 250px;
  max-width: 300px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transform: translateX(-320px);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
}
.toast.show { transform: translateX(0); opacity: 1; }

.t-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232,0,61,0.3), rgba(255,107,0,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  border: 1.5px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.t-body { flex: 1; min-width: 0; }
.t-name {
  font-family: var(--font-b);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
}
.t-prize {
  font-family: var(--font-d);
  font-size: 1rem;
  color: var(--gold);
}
.t-tag {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--lime);
}

/* ==========================================
   MODAL
========================================== */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(12,0,8,0.88);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.overlay.open { opacity: 1; visibility: visible; }

.modal {
  background: linear-gradient(145deg, #220010, #120008);
  border: 1.5px solid rgba(255,207,64,0.3);
  border-radius: 40px;
  padding: 56px 44px 40px;
  width: min(500px, 92vw);
  text-align: center;
  box-shadow:
    0 0 60px rgba(232,0,61,0.4),
    0 0 120px rgba(255,107,0,0.2);
  transform: scale(0.88) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  overflow: hidden;
}
.overlay.open .modal { transform: scale(1) translateY(0); }

.modal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cherry), var(--gold), var(--lime), var(--orange), var(--cherry));
  background-size: 200% 100%;
  animation: shimmerLine 2s linear infinite;
}

.modal-burst { font-size: 4.5rem; display: block; margin-bottom: 8px; animation: giftFloat 2s ease-in-out infinite; }

.modal-title {
  font-family: var(--font-d);
  font-size: 2.5rem;
  background: linear-gradient(135deg, #FFCF40, #FF6B00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.modal-sub {
  font-family: var(--font-b);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}

.modal-prize-box {
  background: linear-gradient(135deg, rgba(255,207,64,0.1), rgba(232,0,61,0.08));
  border: 1.5px solid rgba(255,207,64,0.25);
  border-radius: 24px;
  padding: 22px;
  margin-bottom: 24px;
}
.mpb-eyebrow {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}
.mpb-val {
  font-family: var(--font-d);
  font-size: 4.5rem;
  line-height: 1;
  background: linear-gradient(135deg, #FFCF40, #FF6B00, #E8003D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255,207,64,0.4));
}
.mpb-lbl {
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

.modal-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, #FFCF40, #FF6B00);
  color: #1A0008;
  font-family: var(--font-d);
  font-size: 1.25rem;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(255,207,64,0.45);
  transition: all 0.22s;
  margin-bottom: 12px;
}
.modal-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(255,207,64,0.6); }

.modal-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-b);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
}
.modal-close:hover { color: rgba(255,255,255,0.65); }

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1100px) {
  .hero-banner { grid-template-columns: 1fr; padding: 36px 32px; }
  .hero-visual { display: none; }
  .middle-row { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .topbar { padding: 0 16px; }
  .topbar-right { display: none; }
  .page { padding: 24px 16px 56px; }
  .hero-banner { padding: 28px 22px; }
  .hero-title { font-size: 2.4rem; }
  .bonus-card { padding: 36px 24px; }
  .stats-strip { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card { padding: 20px 18px; }
}