/* ============================================================
   style.css  |  WC2026 Prediction Challenge Landing Page
   Design mirrors q64cdr.12bet.com/en/event/wc26pc
   All CSS values sourced directly from the reference stylesheet.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ── Assets (CDN from reference) ───────────────────────────── */
:root {
  --img-bg:     url('https://banner.picasso12.com/desktop/img/event/prediction-champion/BackgroundImage.webp?v=20260508032321');
  --img-hero:   url('https://banner.picasso12.com/desktop/img/event/prediction-champion/MainVisualHeroImage.webp?v=20260508032321');
  --img-prize:  url('https://banner.picasso12.com/desktop/img/event/prediction-champion/BgPrizeSection.webp?v=20260508032321');
  --img-soccer: url('https://banner.picasso12.com/desktop/img/event/prediction-champion/SoccerIcon.webp?v=20260508032321');
  --img-fifaWC: url('https://banner.picasso12.com/desktop/img/event/prediction-champion/IconWorldCupLogoBlack.webp?v=20260508032321');

  /* ── Colour tokens (sourced from reference CSS) ── */
  --lime:        #b0ea00;
  --lime-hover:  #9ed200;
  --lime-dark:   #7ab500;
  --yellow-hd:   #ffe518;    /* table header text */
  --red-card:    #8f0000;    /* table / card bg */
  --red-prize:   #b80000;    /* group header bg */
  --red-deep:    #290000;
  --red-banner1: #d50000;
  --red-banner2: #900;
  --blue-rule:   #172788;    /* rule section title (on green bg) */
  --gold:        linear-gradient(92.11deg, #fff 14.54%, #e9dabd 32.98%, #c9b258 70.95%);
  --grad-banner: linear-gradient(90deg, #d50000, #b90000 20%, #900 50%, #b90000 80%, #d50000);
  --grad-card:   linear-gradient(180deg, #bc0000, #290000);
  --grad-select: linear-gradient(92.11deg, #fff 14.54%, #e9dabd 32.98%, #c9b258 70.95%);

  /* ── Layout ── */
  --font:    'Poppins', sans-serif;
  --pill:    9999px;
  --r32:     32px;
  --r64:     64px;
  --max-w:   1200px;
  --trans:   0.2s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font); color: #fff; background: #0e1800; overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
table { border-collapse: collapse; }

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

/* ── Scroll reveal (matches reference .ScrollReveal_revealWrapper) ── */
.reveal {
  opacity: 0; visibility: hidden;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.175,.885,.32,1.275),
              transform .65s cubic-bezier(.175,.885,.32,1.275),
              visibility .65s;
  will-change: transform, opacity;
}
.reveal--visible { opacity: 1; visibility: visible; transform: none; }

/* ── Focus ring ─────────────────────────────────────────────── */
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }

/* ═══════════════════════════════════════════════════════════
   1. TOP STICKY BANNER
   CSS: .DepositCountdownBanner_banner (exact from reference)
   ═══════════════════════════════════════════════════════════ */
#top-banner {
  width: 100%;
  background: var(--grad-banner);
  position: sticky; top: 0; z-index: 100;
  cursor: pointer;
  display: block;
}
.top-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  padding: 10px 20px; gap: 16px; flex-wrap: wrap;
}
.top-banner-label {
  color: #fff; font-size: 13px; font-weight: 500;
  letter-spacing: 1px; text-align: center;
}
.top-banner-countdown {
  color: #fff; font-size: 18px; font-weight: 700;
  letter-spacing: 2px; text-align: center;
}
.top-banner-cta {
  background: var(--lime); color: #121311;
  padding: 5px 18px; border-radius: var(--pill);
  font-size: 13px; font-weight: 700;
  transition: background var(--trans);
  white-space: nowrap;
}
#top-banner:hover .top-banner-cta { background: var(--lime-hover); }

/* ═══════════════════════════════════════════════════════════
   2. SITE-WIDE BACKGROUND WRAPPER
   ═══════════════════════════════════════════════════════════ */
#page-bg {
  background-image: var(--img-bg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  min-height: 100%;
}

/* ═══════════════════════════════════════════════════════════
   3. HERO LOGO BADGE (replaces nav — sits top-centre of hero)
   ═══════════════════════════════════════════════════════════ */
.hero-logo-link {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex; align-items: center;
  background: #000000;
  border-radius: 10px;
  padding: 5px 14px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.hero-logo-badge {
  height: 40px; width: auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  .hero-logo-link { top: 16px; padding: 7px 18px; }
  .hero-logo-badge { height: 48px; }
}

/* ═══════════════════════════════════════════════════════════
   4. HERO BANNER
   Player image is the section background.
   Text content overlays the empty center gap between Messi & Ronaldo.
   ═══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  background-image: var(--img-hero);
  background-size: cover;
  /* Shift down slightly so players aren't hidden behind the fixed nav bar */
  background-position: 50% 12%;
  background-repeat: no-repeat;
  min-height: clamp(580px, 64vw, 860px);
  display: flex;
  align-items: center;
  justify-content: center;
  /* top padding = sticky banner (≈44px) + fixed nav (≈72px) + breathing room */
  padding-top: 32px;
  padding-bottom: 48px;
}

/* Dark oval behind the centre text — improves readability over the image */
#hero::after {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  transform: translateX(-50%);
  width: 38%;
  background: radial-gradient(ellipse 55% 70% at 50% 45%,
    rgba(5, 8, 32, 0.78) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Content sits inside the center gap (z-index above the overlay) */
.hero-banner-container {
  position: relative;
  z-index: 2;
  width: min(380px, 32vw);
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}

.hero-fifa-logo {
  width: 80px; height: 120px;
  object-fit: contain;
  margin: 0 auto 4px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.7));
}

.hero-title {
  font-size: clamp(13px, 1.6vw, 22px);
  font-weight: 600; line-height: 1.2;
  color: #fff; margin: 8px 0 0;
  text-shadow: 0 1px 6px rgba(0,0,0,.8);
}

/* "PREDICT & WIN MYR 4,600" — #b0ea00 */
.hero-highlight {
  font-size: clamp(20px, 2.8vw, 38px);
  font-weight: 700; line-height: 1.2;
  color: var(--lime);
  display: block; margin: 4px 0 0;
  text-shadow: 0 2px 10px rgba(0,0,0,.7);
}

/* Sub-description */
.hero-desc {
  font-size: clamp(11px, 1.3vw, 16px);
  font-weight: 600; color: #fff;
  margin: 6px 0 16px;
  text-shadow: 0 1px 6px rgba(0,0,0,.8);
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* CTA button — matches .Banner_bannerButton exactly */
.btn-main {
  display: inline-block;
  padding: 12px 32px;
  border-radius: var(--pill);
  background-color: var(--lime);
  font-size: 16px; font-weight: 500;
  color: #121311; border: none; cursor: pointer;
  font-family: var(--font);
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  white-space: nowrap;
  text-decoration: none;
}
.btn-main:hover {
  background: var(--lime-hover);
  transform: scale(1.04);
  box-shadow: 0 4px 24px rgba(176,234,0,.45);
}
/* xl inside hero center gap — slightly scaled down to fit */
.btn-main--xl { padding: 12px 28px; font-size: clamp(14px, 1.5vw, 18px); font-weight: 700; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(176,234,0,.4); }
  50%       { box-shadow: 0 0 0 12px rgba(176,234,0,0); }
}
.btn-main--pulse { animation: pulse 2.2s ease-in-out infinite; }

.hero-social-proof {
  margin-top: 10px; font-size: clamp(11px, 1.1vw, 13px);
  color: rgba(255,255,255,.55); font-weight: 500;
  text-shadow: 0 1px 4px rgba(0,0,0,.8);
}
.hero-social-proof strong { color: var(--lime); }

/* ═══════════════════════════════════════════════════════════
   5. PRIZE-BG SECTIONS (on BgPrizeSection lime-green)
   ═══════════════════════════════════════════════════════════ */
.prize-bg-section {
  background-image: var(--img-prize);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

/* ── Shared section container ───────────────────────────────── */
.section-wrap {
  margin: 0 auto;
  padding: 72px 24px;
  display: flex; flex-direction: column;
  align-items: center;
}

/* ── Section titles (matches .PredictionPrize_title / .BTILuckyDraw_title) ── */
.sec-title {
  display: flex; align-items: center; justify-content: center;
  gap: 28px;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--lime);
  text-transform: uppercase;
  margin: 0 0 32px;
  text-align: center;
}
/* Soccer ball icons (CSS custom property approach from reference) */
.sec-title::before, .sec-title::after {
  content: '';
  display: inline-block; width: 40px; height: 40px; flex-shrink: 0;
  background-image: var(--img-soccer);
  background-size: contain; background-repeat: no-repeat; background-position: center;
}
/* Dark variant for titles sitting on the lime/green background */
.sec-title--dark { color: #0d1f6e; }
.sec-title--dark::before, .sec-title--dark::after {
  background-image: var(--img-soccer);
}
/* Terms title on lime bg */
.terms-title { color: #0d1f6e !important; }

.sec-subtitle {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 600; color: var(--lime);
  text-transform: uppercase;
  margin-bottom: 40px; text-align: center;
}
/* Dark-bg subtitle */
.sec-subtitle--white { color: #fff; }

/* ═══════════════════════════════════════════════════════════
   6. PRIZE TABLE
   Exact match: .PredictionPrize_tableWrap + .PredictionPrize_prizeTable
   ═══════════════════════════════════════════════════════════ */
.prize-table-wrap {
  width: min(58vw, 960px);
  background-color: var(--red-card);
  border: 3px solid #fff;
  border-radius: var(--r32);
  overflow: hidden;
}

.prize-table {
  width: 100%; table-layout: fixed;
}

/* Header row */
.prize-table thead th {
  padding: 20px 16px;
  font-size: 16px; font-weight: 600; line-height: 1.4;
  color: var(--yellow-hd);
  text-transform: uppercase;
  text-align: center; vertical-align: middle;
}
.prize-table thead th:first-child {
  width: 40%; border-right: 3px solid #fff;
}
.prize-table thead th:last-child { width: 60%; }

/* Body rows */
.prize-table tbody tr {
  color: #fff; font-size: 16px; font-weight: 600;
  line-height: 1.4; text-transform: uppercase;
  border-top: 2px solid rgba(255,255,255,.15);
}
.prize-table tbody td:first-child {
  width: 40%; border-right: 3px solid #fff;
  padding: 18px 16px; text-align: center; vertical-align: middle;
}
.prize-table tbody td:last-child {
  width: 60%; padding: 18px 24px; text-align: center; vertical-align: middle;
}
.prize-table tbody tr:hover { background: rgba(255,255,255,.04); }

.prize-medal { margin-right: 6px; }
.prize-amount-big {
  font-size: 22px; font-weight: 800;
  background: var(--gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════════════════
   7. REGISTER CTA CARD (replaces prediction form)
   ═══════════════════════════════════════════════════════════ */
.register-cta-box {
  width: min(58vw, 960px);
  background: var(--grad-card);
  border: 3px solid #fff;
  border-radius: var(--r64);
  padding: 56px 40px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 20px;
  margin-top: 48px;
}
.register-cta-box h3 {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700; color: #fff;
  text-transform: uppercase; line-height: 1.3;
}
.register-cta-box p {
  font-size: 16px; font-weight: 500;
  color: rgba(255,255,255,.8); max-width: 560px;
}
.register-steps {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 32px;
  margin: 8px 0;
}
.register-step {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600; color: #fff;
}
.register-step .num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--lime); color: #121311;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   8. HOW TO PARTICIPATE — TIMELINE TABLE
   Exact match: .Rule_content + .Rule_timelineTable
   ═══════════════════════════════════════════════════════════ */
.timeline-wrap {
  width: min(58vw, 980px);
  background-color: var(--red-card);
  border: 3px solid #fff;
  border-radius: var(--r32);
  overflow: hidden;
}
.timeline-table {
  width: 100%; table-layout: fixed;
}
.timeline-table tr {
  color: #fff; font-size: 16px; font-weight: 600;
  line-height: 1.4; text-transform: uppercase;
}
.timeline-table tr:not(:first-child) { border-top: 2px solid rgba(255,255,255,.15); }
.timeline-table td { vertical-align: middle; }
.td-date {
  width: 33%; text-align: center; padding: 20px 16px;
  border-right: 3px solid #fff;
}
.td-desc {
  width: 67%; text-align: left; padding: 20px 32px;
  font-size: 15px; font-weight: 500; text-transform: none;
  line-height: 1.6;
}
.td-desc strong { color: var(--lime); font-weight: 700; }
.td-date .step-badge {
  display: inline-block;
  background: var(--lime); color: #121311;
  font-size: 11px; font-weight: 800;
  padding: 2px 10px; border-radius: var(--pill);
  letter-spacing: 1px; margin-bottom: 6px;
}
.td-date .date-text { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════════════════════
   9. BTI LUCKY DRAW TABLE
   Exact match: .BTILuckyDraw_tableWrap + .BTILuckyDraw_prizeTable
   ═══════════════════════════════════════════════════════════ */
.draw-description {
  max-width: 54vw;
  font-size: 24px; font-weight: 600;
  color: var(--lime); text-transform: uppercase;
  margin: 40px 0; text-align: center;
}

.draw-table-wrap {
  width: min(58vw, 960px);
  background-color: var(--red-card);
  border: 3px solid #fff;
  border-radius: var(--r32);
  overflow: hidden;
}
.draw-table { width: 100%; table-layout: fixed; }

.draw-table thead th {
  padding: 20px 16px;
  font-size: 16px; font-weight: 600;
  color: var(--yellow-hd); text-transform: uppercase;
  text-align: center; vertical-align: middle;
}
.draw-table thead th:first-child { width: 40%; border-right: 3px solid #fff; }
.draw-table thead th:last-child  { width: 60%; }

.draw-table tbody tr {
  color: #fff; font-size: 16px; font-weight: 600;
  line-height: 1.4; text-transform: uppercase;
  border-top: 2px solid rgba(255,255,255,.15);
}
.draw-table tbody td:first-child {
  width: 40%; border-right: 3px solid #fff;
  padding: 18px 16px; text-align: center; vertical-align: middle;
}
.draw-table tbody td:last-child {
  width: 60%; padding: 18px 24px; text-align: center; vertical-align: middle;
}
.draw-table tbody tr:hover { background: rgba(255,255,255,.04); }

/* ═══════════════════════════════════════════════════════════
   10. TERMS
   Exact match: .Terms_terms + .Terms_content
   ═══════════════════════════════════════════════════════════ */
#terms {
  margin: 0 auto;
  padding: 64px 24px;
  width: min(70%, var(--max-w));
}
.terms-title {
  font-size: 30px; text-align: center; font-weight: 600;
  text-transform: uppercase; color: var(--lime);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 8px;
}
.terms-content {
  padding: 48px 0; width: min(58vw, 960px); margin: 0 auto;
}
.terms-card {
  background: var(--red-card);
  border: 3px solid #fff;
  border-radius: var(--r64);
  padding: 40px 48px;
}
.terms-list { display: flex; flex-direction: column; gap: 14px; }
.terms-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,.9); line-height: 1.65;
}
.terms-item .tick {
  flex-shrink: 0; width: 22px; height: 22px;
  background: var(--lime); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; color: #121311; font-weight: 900;
  margin-top: 2px;
}
.terms-divider { border: none; border-top: 1px solid rgba(255,255,255,.12); margin: 20px 0; }
.terms-special {
  background: rgba(0,0,0,.2); border: 1px solid rgba(176,234,0,.3);
  border-radius: 12px; padding: 16px 20px;
}
.terms-special-title { font-size: 14px; font-weight: 700; color: var(--lime); margin-bottom: 8px; }
.terms-special p    { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.65; }

@media (max-width: 767px) {
  #terms { width: 100%; }
  .terms-content { width: 100%; }
  .terms-card { padding: 24px 20px; border-radius: 24px; }
}

/* ═══════════════════════════════════════════════════════════
   11. FAQ (same bg-bg approach)
   ═══════════════════════════════════════════════════════════ */
.faq-list { width: min(58vw, 800px); margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: rgba(143,0,0,.55);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px; overflow: hidden;
  transition: border-color var(--trans);
}
.faq-item--open { border-color: var(--lime); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px; background: transparent; border: none;
  color: #fff; font-family: var(--font); font-weight: 600; font-size: 15px;
  text-align: left; cursor: pointer; gap: 12px;
  transition: color var(--trans);
}
.faq-question:hover, .faq-item--open .faq-question { color: var(--lime); }
.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px;
  background: rgba(176,234,0,.1); border: 1px solid rgba(176,234,0,.35);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--lime);
  transition: transform var(--trans), background var(--trans);
}
.faq-item--open .faq-icon { background: rgba(176,234,0,.2); transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer-inner { padding: 0 24px 18px; font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.75; }
@media (max-width: 767px) { .faq-list { width: 100%; } }

/* ═══════════════════════════════════════════════════════════
   12. FINAL CTA SECTION
   ═══════════════════════════════════════════════════════════ */
#final-cta {
  background: var(--grad-card);
  padding: 80px 24px;
  text-align: center;
  position: relative; overflow: hidden;
}
#final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(176,234,0,.07), transparent 65%);
  pointer-events: none;
}
.final-content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.final-days {
  font-size: clamp(28px, 6vw, 56px);
  font-weight: 900; line-height: 1;
  background: var(--gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block; margin-bottom: 6px;
}
.final-label { font-size: clamp(18px, 3vw, 26px); font-weight: 700; margin-bottom: 16px; }
.final-sub   { font-size: 16px; color: rgba(255,255,255,.75); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.final-sub strong { color: var(--lime); }
.final-btns  { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 20px; }
.final-proof { font-size: 13px; color: rgba(255,255,255,.45); }
.final-proof strong { color: var(--lime); }

/* ═══════════════════════════════════════════════════════════
   13. FOOTER
   ═══════════════════════════════════════════════════════════ */
#footer { background: linear-gradient(180deg, #2a0808, #100000); border-top: 1px solid rgba(176,234,0,.1); padding: 40px 24px 20px; }
.footer-top {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 20px; margin-bottom: 24px;
}
.footer-logo {
  background: #000000;
  border-radius: 10px;
  padding: 6px 14px;
  display: inline-flex; align-items: center;
}
.footer-logo-img {
  height: 42px; width: auto;
  object-fit: contain;
}
.footer-tagline    { font-size: 11px; color: rgba(255,255,255,.35); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }
.footer-socials    { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,.5);
  transition: all var(--trans);
}
.social-link:hover { background: rgba(176,234,0,.15); border-color: var(--lime); color: var(--lime); transform: translateY(-3px); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.05); margin: 16px 0; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px; }
.footer-copy   { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-links  { display: flex; flex-wrap: wrap; gap: 4px 20px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,.3); transition: color var(--trans); }
.footer-links a:hover { color: var(--lime); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 767px) {
  #hero {
    background-size: contain;
    background-position: top center;
    background-color: #05071c;
    /* Hero height ≈ image height (no extra gap below) */
    min-height: 52vw;
    padding: 0;
    align-items: center;    /* text centred over the player image */
    justify-content: center;
  }
  #hero::after {
    display: block;
    width: 52%;
    background: radial-gradient(ellipse 75% 80% at 50% 50%,
      rgba(5, 8, 32, 0.72) 0%, transparent 100%);
  }
  .hero-banner-container {
    width: 48vw;    /* centre gap width between the two players */
    background: rgba(4, 6, 26, 0.55);
    border-radius: 14px;
    padding: 12px 10px;
    backdrop-filter: blur(6px);
    margin: 0;      /* no extra margin — centred by flexbox */
  }
  .hero-fifa-logo  { width: 44px; height: 66px; }
  .hero-title      { font-size: 11px; }
  .hero-highlight  { font-size: 19px; }
  .hero-desc       { font-size: 10px; margin-bottom: 10px; }

  .prize-table-wrap,
  .draw-table-wrap,
  .timeline-wrap    { width: 100%; }
  .register-cta-box { width: 100%; padding: 32px 20px; }
  .draw-description { font-size: 16px; max-width: 90vw; }
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section-wrap { padding: 48px 16px; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #hero {
    min-height: clamp(500px, 58vw, 700px);
    background-position: 50% 15%;
    padding-top: 32px;
  }
  .hero-banner-container { width: min(340px, 36vw); }
  .prize-table-wrap, .draw-table-wrap, .timeline-wrap { width: 90vw; }
}
