/* ============================================================
   MysteryDeals — Daily Mystery Deal Landing Page
   Dark luxury theme: black/gold/amber, mystery chest animation
   ============================================================ */

:root {
  --bg:       #0a0a0a;
  --bg-alt:   #0f0f0f;
  --bg-card:  #141414;
  --bg-card-hover: #1a1a1a;
  --surface:  #111111;
  --text:     #f5f5f5;
  --text-muted: #888;
  --gold:     #f5a623;
  --gold-light: #ffd475;
  --gold-dark:  #c4850a;
  --gold-glow:  rgba(245, 166, 35, .3);
  --amber:    #ff8c00;
  --red:      #ef4444;
  --red-glow: rgba(239, 68, 68, .2);
  --green:    #22c55e;
  --border:   #222;
  --radius:   12px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --shadow:   0 4px 24px rgba(0,0,0,.6);
  --shadow-lg: 0 8px 48px rgba(0,0,0,.7);
  --font:     'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container: 1140px;
  --gap:      1.5rem;
  --transition: .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Canvas for particles */
#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .4;
}

/* --- Utility --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; position: relative; z-index: 1; }
.container--narrow { max-width: 800px; }
.text-gold { color: var(--gold); }
.text-red { color: var(--red); }

/* --- Section --- */
.section { padding: 5rem 0; position: relative; z-index: 1; }
.section--alt { background: var(--bg-alt); }
.section__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: .75rem;
}
.section__subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   1. TRUST BAR
   ============================================================ */
.compliance-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: .4rem 0;
  font-size: .8rem;
  color: var(--text-muted);
  position: relative;
  z-index: 100;
}
.compliance-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
}
.compliance-bar__age {
  background: var(--gold-dark);
  color: #fff;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: .75rem;
  flex-shrink: 0;
}
.compliance-bar__text { text-align: center; overflow: hidden; text-overflow: ellipsis; }
.compliance-bar__link { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(245,166,35,.4); flex-shrink: 0; }
.compliance-bar__link:hover { text-decoration-color: var(--gold); }
@media (max-width: 600px) {
  .compliance-bar__text { display: none; }
  .compliance-bar__inner { justify-content: space-between; padding: 0 .5rem; gap: .5rem; }
}

/* ============================================================
   2. HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.6); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: .4rem; font-size: 1.35rem; font-weight: 800; }
.logo__mark { font-size: 1.5rem; }
.logo__accent { color: var(--gold); }
.logo--footer { font-size: 1.1rem; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__link { font-size: .9rem; font-weight: 500; color: var(--text-muted); transition: color var(--transition); }
.nav__link:hover { color: var(--text); }

.nav-toggle { display: none; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border); flex-direction: column; padding: 1.5rem; gap: 1.25rem; }
  .nav.open { display: flex; }
}
@media (max-width: 600px) {
  .header__inner { height: 52px; }
  .nav { top: 52px; }
  .logo { font-size: 1.1rem; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; border-radius: var(--radius-sm); padding: .7rem 1.5rem;
  transition: all var(--transition); white-space: nowrap; cursor: pointer; max-width: 100%;
}
.btn--cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  color: #0a0a0a;
  box-shadow: 0 0 20px var(--gold-glow);
}
.btn--cta:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 0 30px var(--gold-glow), 0 4px 20px rgba(0,0,0,.4);
  transform: translateY(-2px);
}
.btn--lg { padding: 1rem 2rem; font-size: 1.1rem; border-radius: var(--radius); }
.btn--xl { padding: 1.15rem 2.5rem; font-size: 1.2rem; border-radius: var(--radius); }
.btn--block, .btn--lg, .btn--xl { white-space: normal; word-break: break-word; }
.btn--glow {
  animation: goldPulse 2s ease-in-out infinite;
  font-size: 1.15rem;
  letter-spacing: .02em;
}
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 20px var(--gold-glow); }
  50% { box-shadow: 0 0 40px rgba(245,166,35,.5), 0 0 80px rgba(245,166,35,.15); }
}

/* ============================================================
   3. HERO
   ============================================================ */
.hero {
  position: relative; padding: 5rem 0 4rem; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(245,166,35,.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 70% 80%, rgba(255,140,0,.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, #0d0a00 50%, var(--bg) 100%);
  z-index: 0;
}
.hero__inner { position: relative; z-index: 2; text-align: center; }
.hero__content { max-width: 700px; margin: 0 auto; }

.hero__badge {
  display: inline-block;
  background: rgba(239,68,68,.12); color: var(--red);
  font-size: .85rem; font-weight: 600; padding: .4rem 1rem;
  border-radius: var(--radius-pill); border: 1px solid rgba(239,68,68,.25);
  margin-bottom: 1.5rem;
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { border-color: rgba(239,68,68,.25); }
  50% { border-color: rgba(239,68,68,.6); }
}

.hero__title {
  font-size: clamp(2rem, 5.5vw, 3.5rem); font-weight: 900; line-height: 1.15; margin-bottom: 1.25rem;
}
.hero__subtitle {
  font-size: 1.15rem; color: var(--text-muted); max-width: 560px; margin: 0 auto 2rem;
}
.hero__microcopy { font-size: .8rem; color: var(--text-muted); margin-top: .75rem; opacity: .7; }

/* ============================================================
   MYSTERY BOX VISUAL
   ============================================================ */
.mystery-box-wrap {
  margin: 2.5rem auto 2rem;
  max-width: 280px;
  cursor: pointer;
  position: relative;
}
.mystery-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 300px; height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245,166,35,.2) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .6; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.mystery-box { position: relative; z-index: 1; }
.mystery-box__chest {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chest {
  position: relative;
  width: 160px;
  margin: 0 auto;
  animation: chestFloat 4s ease-in-out infinite;
}
@keyframes chestFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.mystery-box-wrap:hover .chest {
  animation: chestShake .5s ease-in-out infinite;
}
@keyframes chestShake {
  0%, 100% { transform: rotate(0deg) translateY(-4px); }
  20% { transform: rotate(-3deg); }
  40% { transform: rotate(3deg); }
  60% { transform: rotate(-2deg); }
  80% { transform: rotate(2deg); }
}

.chest__body {
  width: 140px; height: 100px;
  background: linear-gradient(135deg, #8B6914 0%, #D4A520 30%, #FFD700 50%, #D4A520 70%, #8B6914 100%);
  border-radius: 8px;
  position: relative;
  box-shadow:
    0 8px 32px rgba(245,166,35,.3),
    inset 0 2px 4px rgba(255,255,255,.2),
    inset 0 -2px 4px rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.chest__lock {
  font-size: 2.5rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
  z-index: 2;
}

.chest__shine {
  position: absolute;
  top: 10%; left: -20%;
  width: 40%; height: 30%;
  background: linear-gradient(135deg, rgba(255,255,255,.3) 0%, transparent 100%);
  border-radius: 50%;
  transform: rotate(-20deg);
}

.chest__lid {
  width: 150px; height: 30px;
  background: linear-gradient(135deg, #A67C00 0%, #E8C530 40%, #FFD700 60%, #E8C530 80%, #A67C00 100%);
  border-radius: 8px 8px 0 0;
  margin: 0 auto;
  position: relative;
  top: -2px;
  box-shadow: 0 -2px 8px rgba(245,166,35,.2);
}

.mystery-box__rays {
  position: absolute;
  top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  background:
    conic-gradient(from 0deg, transparent, rgba(245,166,35,.15), transparent, rgba(245,166,35,.1), transparent, rgba(245,166,35,.15), transparent);
  animation: raysSpin 10s linear infinite;
  border-radius: 50%;
  pointer-events: none;
}
@keyframes raysSpin { from { transform: translateX(-50%) rotate(0deg); } to { transform: translateX(-50%) rotate(360deg); } }

.mystery-box__label {
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--gold);
  font-weight: 600;
  animation: labelPulse 2s ease-in-out infinite;
}
@keyframes labelPulse {
  0%, 100% { opacity: .7; }
  50% { opacity: 1; }
}

/* Sparkles */
.sparkles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.sparkle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  animation: sparkleFloat linear infinite;
  opacity: 0;
}
@keyframes sparkleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* ============================================================
   COUNTDOWN TIMER
   ============================================================ */
.countdown {
  margin: 2rem auto;
  max-width: 400px;
}
.countdown__label {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
}
.countdown__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.countdown__unit { text-align: center; }
.countdown__num {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .5rem .75rem;
  min-width: 70px;
}
.countdown__txt {
  display: block;
  font-size: .7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .25rem;
}
.countdown__sep {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-dark);
  margin-bottom: 1.2rem;
}

.countdown__bar {
  height: 4px;
  background: var(--bg-card);
  border-radius: var(--radius-pill);
  margin-top: 1rem;
  overflow: hidden;
}
.countdown__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red) 0%, var(--amber) 30%, var(--gold) 100%);
  border-radius: var(--radius-pill);
  transition: width 1s linear;
  width: 100%;
}

/* ============================================================
   4. OFFER CARDS
   ============================================================ */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--gap); }
.cards-grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.offer-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem 1.5rem; text-align: center; position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.offer-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 30px var(--gold-glow);
}
.offer-card__icon { font-size: 2.5rem; margin-bottom: .75rem; }
.offer-card__title { font-size: 1.15rem; font-weight: 700; margin-bottom: .75rem; }
.offer-card__desc { color: var(--text-muted); font-size: .9rem; margin-bottom: 1rem; }

.tag-bar { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; }
.tag {
  font-size: .7rem; font-weight: 600; padding: 3px 8px; border-radius: 4px;
  background: var(--surface); border: 1px solid var(--border); color: var(--text-muted);
}
.tag--hot { background: rgba(239,68,68,.12); color: #ef4444; border-color: rgba(239,68,68,.25); }
.tag--gold { background: rgba(245,166,35,.12); color: var(--gold); border-color: rgba(245,166,35,.25); }
.tag--green { background: rgba(34,197,94,.12); color: var(--green); border-color: rgba(34,197,94,.25); }

/* ============================================================
   5. TESTIMONIALS
   ============================================================ */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--gap); }
.testimonial {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem;
}
.testimonial__stars { font-size: .85rem; margin-bottom: .5rem; }
.testimonial blockquote {
  font-size: .9rem; font-style: italic; color: var(--text); margin-bottom: .75rem; line-height: 1.5;
}
.testimonial cite { font-size: .8rem; color: var(--text-muted); font-style: normal; }

.trust-row {
  display: flex; align-items: center; justify-content: center; gap: 1.25rem;
  flex-wrap: wrap; padding: 1.5rem 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); margin-top: 3rem;
}
.trust-row__label { font-size: .8rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.trust-row__item {
  font-size: .9rem; color: var(--text); font-weight: 500;
  background: var(--surface); padding: .35rem .75rem; border-radius: var(--radius-sm); border: 1px solid var(--border);
}

/* ============================================================
   6. HOW IT WORKS
   ============================================================ */
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.step { flex: 1; min-width: 200px; max-width: 280px; text-align: center; padding: 1rem; }
.step__num {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  color: #0a0a0a; font-size: 1.25rem; font-weight: 800; border-radius: 50%;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.step p { font-size: .85rem; color: var(--text-muted); }
.step__arrow { font-size: 1.5rem; color: var(--text-muted); align-self: center; padding-top: 1.5rem; }
.steps__cta { text-align: center; }
@media (max-width: 600px) { .step__arrow { display: none; } }

/* ============================================================
   7. URGENCY BANNER
   ============================================================ */
.urgency-banner {
  background: linear-gradient(90deg, rgba(239,68,68,.1) 0%, rgba(245,166,35,.12) 50%, rgba(239,68,68,.1) 100%);
  border-top: 1px solid rgba(239,68,68,.2);
  border-bottom: 1px solid rgba(245,166,35,.2);
  padding: 1.25rem 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.urgency-banner::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 200%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(239,68,68,.06), transparent);
  animation: urgencyShimmer 3s ease-in-out infinite;
}
@keyframes urgencyShimmer {
  0%, 100% { transform: translateX(-50%); }
  50% { transform: translateX(50%); }
}
.urgency-banner__inner {
  display: flex; align-items: center; justify-content: center; gap: 1.25rem; flex-wrap: wrap;
}
.urgency-banner__icon {
  font-size: 1.8rem;
  animation: urgencyPulse 1.5s ease-in-out infinite;
}
@keyframes urgencyPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15) rotate(-5deg); }
}
.urgency-banner__text { text-align: center; font-size: .95rem; line-height: 1.5; }
.urgency-banner__text strong {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .01em;
}
.urgency-banner__text strong .count {
  display: inline-block;
  background: linear-gradient(135deg, #ef4444, #f5a623);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  padding: .1em .45em;
  border-radius: 6px;
  margin: 0 .15em;
  min-width: 1.6em;
  text-align: center;
}
.urgency-banner__text .urgency-sub {
  display: block;
  color: var(--text-muted);
  font-size: .8rem;
  margin-top: .25rem;
  opacity: .85;
}

/* ============================================================
   8. FINAL CTA
   ============================================================ */
.final-cta {
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(245,166,35,.06) 0%, transparent 60%), var(--bg);
  padding: 5rem 0; text-align: center; position: relative; overflow: hidden;
}
.final-cta__inner { position: relative; z-index: 1; }
.final-cta__title { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 900; margin-bottom: .75rem; }
.final-cta__subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.final-cta__micro { font-size: .75rem; color: var(--text-muted); opacity: .6; margin-top: 1rem; }

/* ============================================================
   9. FAQ
   ============================================================ */
.faq { display: flex; flex-direction: column; gap: .5rem; }
.faq__item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: border-color var(--transition); }
.faq__item[open] { border-color: var(--gold); }
.faq__q {
  padding: 1.1rem 1.25rem; font-size: .95rem; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none; transition: background var(--transition);
}
.faq__q:hover { background: var(--bg-card-hover); }
.faq__q::marker { display: none; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: '+'; font-size: 1.2rem; color: var(--gold); }
.faq__item[open] .faq__q::after { content: '−'; }
.faq__a { padding: 0 1.25rem 1.25rem; }
.faq__a p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   10. FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(180deg, var(--surface) 0%, rgba(10,10,10,.98) 100%);
  border-top: 1px solid rgba(245,166,35,.12);
  padding: 3.5rem 0 2rem;
  font-size: .85rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.footer__glow {
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 120px;
  background: radial-gradient(ellipse, rgba(245,166,35,.08) 0%, transparent 70%);
  pointer-events: none;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer__tagline {
  color: var(--text-muted);
  margin: .75rem 0 1rem;
  max-width: 400px;
  line-height: 1.6;
  font-size: .82rem;
}
.footer__badges {
  display: flex; gap: .5rem; flex-wrap: wrap;
}
.badge {
  border: 1px solid rgba(245,166,35,.15);
  padding: .3rem .65rem;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(245,166,35,.04);
  transition: border-color .3s, color .3s;
}
.badge:hover {
  border-color: rgba(245,166,35,.35);
  color: var(--gold);
}
.footer__cols {
  display: flex; gap: 2.5rem;
}
.footer__links {
  display: flex; flex-direction: column; gap: .55rem;
}
.footer__col-title {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  opacity: .5;
  margin-bottom: .25rem;
}
.footer__links a {
  color: var(--text-muted);
  transition: color var(--transition), padding-left .3s;
  font-size: .82rem;
}
.footer__links a:hover {
  color: var(--gold);
  padding-left: .25rem;
}
.footer__divider {
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,.15), rgba(239,68,68,.1), transparent);
  margin-bottom: 1.25rem;
}
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem;
}
.footer__disclosure {
  color: var(--text-muted);
  font-size: .75rem;
  line-height: 1.5;
  opacity: .7;
  max-width: 500px;
}
.footer__copy {
  color: var(--text-muted);
  font-size: .72rem;
  opacity: .45;
}
@media (max-width: 600px) {
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__cols { gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   MODAL — Privacy / Terms / Disclaimer
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 640px; width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 16px 64px rgba(0,0,0,.6);
  transform: translateY(20px) scale(.97);
  transition: transform .25s ease;
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); }

.modal__close {
  position: sticky; top: 0; float: right;
  width: 40px; height: 40px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 50%; font-size: 1.4rem; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  margin: .75rem .75rem 0 0;
  z-index: 2; transition: all var(--transition);
}
.modal__close:hover { background: var(--bg-card-hover); color: var(--text); border-color: var(--gold); }

.modal__title {
  font-size: 1.3rem; font-weight: 800; padding: 1rem 1.5rem 0; color: var(--text);
}
.modal__body {
  padding: 1rem 1.5rem 1.5rem;
  font-size: .88rem; color: var(--text-muted); line-height: 1.7;
}
.modal__body h3 {
  font-size: .95rem; font-weight: 700; color: var(--text);
  margin: 1.25rem 0 .5rem;
}
.modal__body p { margin-bottom: .75rem; }
.modal__body ul { list-style: none; padding: 0; margin-bottom: .75rem; }
.modal__body ul li { margin-bottom: .35rem; }
.modal__body a { color: var(--gold); text-decoration: underline; }
.modal__body a:hover { color: var(--gold-light); }
.modal__body em { color: var(--text-muted); opacity: .7; font-size: .8rem; }

/* Scrollbar inside modal */
.modal::-webkit-scrollbar { width: 6px; }
.modal::-webkit-scrollbar-track { background: transparent; }
.modal::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.modal::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

@media (max-width: 600px) {
  .modal { max-height: 90vh; border-radius: var(--radius-sm); }
  .modal__title { font-size: 1.15rem; padding: .75rem 1rem 0; }
  .modal__body { padding: .75rem 1rem 1.25rem; font-size: .82rem; }
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  color: #0a0a0a; text-align: center; font-weight: 800; font-size: 1.05rem;
  padding: .9rem 1rem; border-top: 2px solid var(--gold-dark);
  animation: goldPulse 2s ease-in-out infinite;
}
@media (max-width: 768px) { .mobile-cta { display: block; } body { padding-bottom: 56px; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 600px) {
  .hero { padding: 2.5rem 0 2rem; }
  .section { padding: 3rem 0; }
  .hero__badge { margin-bottom: 1rem; padding: .3rem .75rem; font-size: .75rem; }
  .hero__title { margin-bottom: .75rem; }
  .hero__subtitle { margin-bottom: 1.5rem; font-size: 1rem; }
  .countdown__num { font-size: 1.75rem; min-width: 55px; padding: .4rem .5rem; }
  .countdown__sep { font-size: 1.5rem; margin-bottom: .8rem; }
  .btn--xl { padding: 1rem 1.5rem; font-size: 1.05rem; }
  .mystery-box-wrap { max-width: 220px; }
  .chest { width: 130px; }
  .chest__body { width: 115px; height: 80px; }
  .chest__lid { width: 125px; height: 25px; }
  .chest__lock { font-size: 2rem; }
}
