/* ============================================================
   InteractiveWish — Sexy Scratch Card Landing CSS
   Landing #102 | Prefix: ssc-
   Extends universal-landing.css
   ============================================================ */

/* ── PARTICLES (hero) ──────────────────────────────────────── */
.ssc-particles-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.ssc-particle {
  position: absolute;
  animation: ssc-drift linear infinite;
  opacity: 0;
  user-select: none;
  font-style: normal;
}
@keyframes ssc-drift {
  0%   { opacity: 0; transform: translateY(0) scale(0.8) rotate(0deg); }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-110vh) scale(1.1) rotate(20deg); }
}

/* ── HERO title em ──────────────────────────────────────────── */
.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 borders ──────────────────────────────────────── */
.ulp-idea-card {
  border-left-color: #6a1b9a;
}
.ulp-idea-card:nth-child(2n) {
  border-left-color: #ffd600;
}

/* ── Emotional close block ──────────────────────────────────── */
.ssc-emotional-close {
  background: linear-gradient(135deg, rgba(106,27,154,0.20) 0%, rgba(255,214,0,0.10) 100%);
  border-color: rgba(255,214,0,0.20);
}

/* ── CTA primary ────────────────────────────────────────────── */
.ulp-cta--primary {
  background: linear-gradient(135deg, #6a1b9a 0%, #ffd600 100%);
  color: #0d001a;
  box-shadow: 0 4px 20px rgba(106,27,154,0.45);
}
.ulp-cta--primary:hover {
  background: linear-gradient(135deg, #4a148c 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: #0d001a;
}

/* ── Nav CTA ────────────────────────────────────────────────── */
.ulp-nav-cta--primary {
  background: linear-gradient(135deg, #6a1b9a 0%, #ffd600 100%);
  color: #0d001a;
  box-shadow: 0 2px 10px rgba(106,27,154,0.40);
}

/* ── Eyebrow gradient ───────────────────────────────────────── */
.ulp-eyebrow {
  background: linear-gradient(135deg, #6a1b9a 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%, #6a1b9a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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