/* ============================================================
   InteractiveWish — Birthday Scratch Card Landing CSS
   Landing #106 | Prefix: bsc-
   Extends universal-landing.css
   ============================================================ */

/* ── CONFETTI PIECES (hero) ────────────────────────────────── */
.bsc-confetti-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.bsc-confetti-piece {
  position: absolute;
  animation: bsc-rise linear infinite;
  opacity: 0;
  user-select: none;
  font-style: normal;
}
@keyframes bsc-rise {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg); }
  8%   { opacity: 0.8; }
  92%  { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-110vh) rotate(480deg); }
}

/* ── HERO title em — orange/gold ────────────────────────────── */
.ulp-hero-title em {
  background: linear-gradient(135deg, #ffd600 0%, #ff6d00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Idea card — alternating orange/gold borders ─────────────── */
.ulp-idea-card {
  border-left-color: #e65100;
}
.ulp-idea-card:nth-child(2n) {
  border-left-color: #ffd600;
}

/* ── Emotional close block ──────────────────────────────────── */
.bsc-emotional-close {
  background: linear-gradient(135deg, rgba(230,81,0,0.18) 0%, rgba(255,214,0,0.12) 100%);
  border-color: rgba(255,214,0,0.25);
}

/* ── CTA primary — orange to gold ───────────────────────────── */
.ulp-cta--primary {
  background: linear-gradient(135deg, #e65100 0%, #ffd600 100%);
  color: #2e1200;
  box-shadow: 0 4px 20px rgba(230,81,0,0.40);
}
.ulp-cta--primary:hover {
  background: linear-gradient(135deg, #bf360c 0%, #f9a825 100%);
}

/* ── Step number — gold for even ────────────────────────────── */
.ulp-how-step:nth-child(2n) .ulp-how-step-num {
  background: linear-gradient(135deg, #ffd600 0%, #ff6d00 100%);
  color: #2e1200;
}

/* ── Nav CTA ────────────────────────────────────────────────── */
.ulp-nav-cta--primary {
  background: linear-gradient(135deg, #e65100 0%, #ffd600 100%);
  color: #2e1200;
  box-shadow: 0 2px 10px rgba(230,81,0,0.35);
}

/* ── Eyebrow gradient ───────────────────────────────────────── */
.ulp-eyebrow {
  background: linear-gradient(135deg, #e65100 0%, #ffd600 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Logo gradient ──────────────────────────────────────────── */
.ulp-logo-text {
  background: linear-gradient(135deg, #ffd600 0%, #ff6d00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Section alt background ─────────────────────────────────── */
.ulp-section--alt {
  background: #fffdf5;
}

/* ── Section light ──────────────────────────────────────────── */
.ulp-section--light {
  background: #fff8e1;
}
