/* ===== WB Promo Theme ===== */
:root {
  --wb-pink: #cb11ab;
  --wb-pink-light: #ff47d4;
  --wb-purple: #481173;
  --wb-purple-deep: #2a0a3e;
  --wb-purple-mid: #6b2d8b;
  --wb-gold: #ffd966;
  --wb-gold-dark: #e6b800;
  --font: 'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  background: var(--wb-purple-deep);
  overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ===== Ambient background ===== */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(203, 17, 171, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(72, 17, 115, 0.5) 0%, transparent 50%),
    linear-gradient(180deg, #1a0528 0%, #2a0a3e 40%, #1a0528 100%);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.glow-1 {
  width: 500px; height: 500px;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  background: rgba(203, 17, 171, 0.25);
}

.glow-2 {
  width: 400px; height: 400px;
  bottom: 10%; right: -100px;
  background: rgba(255, 71, 212, 0.15);
}

.stars span {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 0.7; transform: scale(1); }
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(26, 5, 40, 0.6);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-wb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--wb-pink), var(--wb-purple));
  border-radius: 12px;
  font-weight: 900;
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: -0.03em;
}

.logo-text {
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
}

.nav { display: flex; gap: 28px; }

.nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav a:hover { color: var(--wb-gold); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 5px 8px;
  border: none;
  border-radius: 100px;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.lang-flag {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.2s, transform 0.2s;
}

.lang-btn.active .lang-flag {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25), 0 2px 8px rgba(0, 0, 0, 0.35);
}

.lang-btn:hover .lang-flag {
  transform: scale(1.05);
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--wb-pink), var(--wb-purple));
  color: #fff;
  box-shadow: 0 2px 12px rgba(203, 17, 171, 0.35);
}

.lang-btn:hover:not(.active) {
  color: #fff;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
}

main { position: relative; z-index: 1; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--wb-pink) 0%, var(--wb-purple) 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(203, 17, 171, 0.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--wb-gold) 0%, var(--wb-gold-dark) 100%);
  color: var(--wb-purple-deep);
  box-shadow: 0 4px 24px rgba(255, 217, 102, 0.4);
}

.btn-primary:hover, .btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-glow {
  animation: btn-pulse 2.5s ease-in-out infinite;
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(255, 217, 102, 0.4); }
  50% { box-shadow: 0 8px 40px rgba(255, 217, 102, 0.6); }
}

.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ===== Promo Hero ===== */
.promo-hero {
  padding: 100px 0 80px;
  text-align: center;
}

.promo-top { margin-bottom: 28px; }

.promo-badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(255, 217, 102, 0.15);
  border: 1px solid rgba(255, 217, 102, 0.4);
  border-radius: 100px;
  color: var(--wb-gold);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.promo-title {
  margin: 0 auto 40px;
  max-width: 820px;
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.promo-title-line { display: block; }

.promo-title-accent {
  background: linear-gradient(90deg, var(--wb-gold), var(--wb-pink-light), var(--wb-gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ===== Countdown ===== */
.countdown-block { margin-bottom: 56px; }

.countdown-label {
  margin: 0 0 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.countdown-item span {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--wb-gold);
  font-variant-numeric: tabular-nums;
}

.countdown-item small {
  margin-top: 6px;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.countdown-dot {
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(255, 217, 102, 0.4);
  margin-top: -18px;
}

/* ===== Wheel ===== */
.wheel-block { margin-bottom: 48px; }

.wheel-subtitle {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
}

.wheel-desc {
  margin: 0 0 40px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
}

.wheel-stage {
  position: relative;
  width: min(380px, 90vw);
  height: min(380px, 90vw);
  margin: 0 auto;
}

.wheel-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.wheel-ring-outer {
  inset: -16px;
  border: 3px solid rgba(255, 217, 102, 0.3);
  box-shadow: 0 0 40px rgba(203, 17, 171, 0.3), inset 0 0 30px rgba(255, 217, 102, 0.05);
}

.wheel-ring-inner {
  inset: -6px;
  border: 2px dashed rgba(255, 255, 255, 0.15);
  animation: ring-spin 30s linear infinite;
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

.wheel-lights {
  position: absolute;
  inset: -8px;
  animation: ring-spin 20s linear infinite reverse;
}

.wheel-lights span {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--wb-gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--wb-gold);
}

.wheel-lights span:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.wheel-lights span:nth-child(2) { top: 15%; right: 5%; }
.wheel-lights span:nth-child(3) { top: 50%; right: -2%; transform: translateY(-50%); }
.wheel-lights span:nth-child(4) { bottom: 15%; right: 5%; }
.wheel-lights span:nth-child(5) { bottom: 0; left: 50%; transform: translateX(-50%); }
.wheel-lights span:nth-child(6) { bottom: 15%; left: 5%; }
.wheel-lights span:nth-child(7) { top: 50%; left: -2%; transform: translateY(-50%); }
.wheel-lights span:nth-child(8) { top: 15%; left: 5%; }

.wheel-pointer {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

.wheel-spinner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.wheel-spinner canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.wheel-center-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 4px solid var(--wb-gold);
  background: linear-gradient(145deg, var(--wb-pink-light), var(--wb-pink));
  color: #fff;
  font-family: var(--font);
  font-weight: 900;
  font-size: 0.95rem;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 4px 24px rgba(203, 17, 171, 0.6), 0 0 0 4px rgba(255,255,255,0.15);
  transition: transform 0.2s;
}

.wheel-center-btn:hover:not(:disabled) {
  transform: translate(-50%, -50%) scale(1.08);
}

.wheel-center-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.wheel-labels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.wheel-labels span {
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== Wheel result ===== */
.wheel-result {
  max-width: 440px;
  margin: 0 auto;
  animation: fade-up 0.5s ease-out;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.wheel-result-inner {
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 217, 102, 0.25);
  border-radius: 28px;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

  margin: 0 0 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wb-gold);
}

.wheel-result-prize {
  margin: 0 0 12px;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.3;
}

.wheel-result-hint {
  margin: 0 0 24px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== Prizes ===== */
.prizes {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100%);
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
}

.section-title-light { color: #fff; }

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* Featured main prize */
.prize-hero-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  margin-bottom: 48px;
  background: linear-gradient(135deg, rgba(203,17,171,0.3) 0%, rgba(72,17,115,0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.prize-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,217,102,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.prize-hero-content {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 40px;
  position: relative;
}

.prize-hero-qty {
  position: absolute;
  top: 20px; right: 24px;
  padding: 6px 14px;
  background: rgba(255, 217, 102, 0.2);
  border: 1px solid rgba(255, 217, 102, 0.4);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--wb-gold);
}

.prize-balance-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  border: 2px solid rgba(255, 217, 102, 0.25);
  box-shadow: 0 0 40px rgba(255, 217, 102, 0.15);
  animation: balance-pulse 3s ease-in-out infinite;
}

@keyframes balance-pulse {
  0%, 100% { box-shadow: 0 0 40px rgba(255, 217, 102, 0.15); }
  50% { box-shadow: 0 0 60px rgba(255, 217, 102, 0.3); }
}

.prize-hero-info h3 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.15;
  background: linear-gradient(90deg, #fff 0%, var(--wb-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prize-hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wb-gold);
  margin-bottom: 8px;
}

.prize-hero-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.prizes-more-title {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 28px;
}

.prizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}

.prize-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px 14px;
  text-align: center;
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
  backdrop-filter: blur(4px);
}

.prize-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 217, 102, 0.3);
}

.prize-card-top {
  background: linear-gradient(145deg, rgba(255,217,102,0.15), rgba(255,217,102,0.05));
  border-color: rgba(255, 217, 102, 0.35);
}

.prize-qty {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--wb-pink-light);
  background: rgba(203, 17, 171, 0.2);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.prize-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 10px;
  background: rgba(203, 17, 171, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}

.prize-card:hover .prize-icon {
  transform: translateY(-2px);
}

.prize-icon--gold {
  background: linear-gradient(145deg, rgba(255, 217, 102, 0.22), rgba(255, 184, 0, 0.08));
  border-color: rgba(255, 217, 102, 0.3);
  box-shadow: 0 6px 20px rgba(255, 217, 102, 0.12);
}

.prize-icon--purple {
  background: linear-gradient(145deg, rgba(203, 17, 171, 0.22), rgba(72, 17, 115, 0.14));
  border-color: rgba(203, 17, 171, 0.32);
  box-shadow: 0 6px 18px rgba(203, 17, 171, 0.15);
}

.prize-icon--gift,
.prize-icon--star,
.prize-icon--cosmetics,
.prize-icon--watch,
.prize-icon--bag {
  background: linear-gradient(145deg, rgba(203, 17, 171, 0.18), rgba(72, 17, 115, 0.12));
  border-color: rgba(255, 71, 212, 0.25);
  box-shadow: 0 6px 18px rgba(203, 17, 171, 0.12);
}

.prize-icon--star {
  border-color: rgba(255, 217, 102, 0.3);
  box-shadow: 0 6px 18px rgba(255, 217, 102, 0.1);
}

.prize-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}

.prize-balance-icon svg {
  filter: drop-shadow(0 8px 24px rgba(255, 217, 102, 0.35));
}

.wheel-result-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.wheel-result-icon svg {
  filter: drop-shadow(0 6px 18px rgba(255, 217, 102, 0.4));
}

.prize-card h4 {
  margin: 0 0 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.prize-value {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

/* ===== Steps ===== */
.steps {
  padding: 80px 0 64px;
  background: rgba(0, 0, 0, 0.2);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto 48px;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--wb-pink), var(--wb-gold));
  margin-top: 36px;
  opacity: 0.4;
}

.step-card {
  text-align: center;
  padding: 0 12px;
}

.step-num {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wb-pink), var(--wb-purple));
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(203, 17, 171, 0.35);
  border: 2px solid rgba(255, 217, 102, 0.3);
}

.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
}

.step-card p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}

.steps-cta { text-align: center; }

/* ===== Footer ===== */
.footer {
  position: relative;
  z-index: 1;
  padding: 56px 0 32px;
  background: rgba(12, 3, 20, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-tagline {
  margin: 0 0 20px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
}

.footer-col-title {
  margin: 0 0 16px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li + li { margin-top: 10px; }

.footer-list a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-list a:hover { color: var(--wb-gold); }

.footer-action-text {
  margin: 0 0 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 40px 0 24px;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.footer-copy {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  padding: 0 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.75rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
}

.footer-disclaimer {
  margin: 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.65;
}

/* ===== Confetti ===== */
.confetti-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .header-inner { gap: 12px; }
  .lang-switch { order: -1; margin-left: auto; margin-right: 8px; }
  .nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 260px;
    background: var(--wb-purple-deep);
    flex-direction: column;
    padding: 80px 24px 24px;
    gap: 0;
    border-left: 1px solid rgba(255,255,255,0.08);
    transform: translateX(100%);
    transition: transform 0.3s;
  }
  .nav-open { transform: translateX(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .burger { display: flex; }

  .countdown-item { min-width: 58px; padding: 10px 10px; }
  .countdown-item span { font-size: 1.5rem; }

  .prize-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }
  .prize-hero-visual { display: flex; justify-content: center; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .step-connector { display: none; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand { grid-column: 1 / -1; }
  .footer-tagline { max-width: none; }
}

@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .promo-hero { padding-top: 88px; }
  .countdown-dot { display: none; }
  .countdown-timer { gap: 8px; flex-wrap: wrap; }
}
