/* ============================================================
   PAGE PARTICIPATION — CSS spécifique
   ============================================================ */

/* ── HERO VISUEL ── */
.hero {
  background: var(--bg);
  overflow: hidden;
}

.hero-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 0;
  min-height: 300px;
  position: relative;
}



/* Badge Pack Pâques */
.promo-badge {
  display: inline-block;
  position: relative;
  margin-bottom: 14px;
}

.promo-badge-inner {
  background: var(--yellow);
  padding: 10px 20px 10px 16px;
  border-radius: 0 4px 4px 0;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.15);
  position: relative;
}

.promo-badge-inner::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  border-right: 12px solid var(--yellow);
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
}

.promo-badge-line1 {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1;
}

.promo-badge-line2 {
  font-family: 'IvyMode', 'Ivy Mode', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
}

.promo-badge-sub {
  display: inline-block;
  margin-top: 5px;
  background: var(--red);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
}

/* 2 = 1 formula */
.formula {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 20px;
}

.formula-num {
  font-family: 'IvyMode', 'Ivy Mode', serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
}

.formula-num--red  { color: var(--red); }
.formula-num--gold { color: var(--gold); }

.formula-eq {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--red);
}

.formula-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--txt-mid);
  line-height: 1.35;
}

/* Bottles */

.hero-bottles {
  position: relative;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
 
}

/* ── CONDITIONS CARD ── */
.conditions-card {}

.step-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 11px;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--txt-mid);
  line-height: 1.55;
}

.step-arrow {
  color: var(--red);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}

.step-row .hi  { color: var(--red);  font-weight: 700; }
.step-row .gd  { color: var(--gold); font-weight: 700; }

.prize-strip {
  background: var(--red);
  border-radius: var(--radius);
  padding: 13px 16px;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.prize-strip-icon { font-size: 1.3rem; }

.prize-strip-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

.prize-strip-text strong {
  display: block;
  font-family: 'IvyMode', 'Ivy Mode', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--yellow);
}

/* ── FORM CARD ── */
.form-card { }

/* ── SUCCESS SCREEN ── */
.success-screen {
  display: none;
  text-align: center;
  padding: 8px 0;
}

.success-screen.show {
  display: block;
  animation: fadeUp 0.5s ease both;
}

.success-ring {
  width: 68px;
  height: 68px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 16px;
  animation: pulseRing 2.5s ease infinite;
}

.success-head {
  font-family: 'IvyMode', 'Ivy Mode', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black2);
  margin-bottom: 16px;
}

.code-box {
  background: var(--black);
  border-radius: var(--radius);
  padding: 20px 16px;
  margin-bottom: 16px;
}

.code-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}

.code-value {
  font-family: 'IvyMode', 'Ivy Mode', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.12em;
}

.code-hint {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
  line-height: 1.6;
}

.success-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--txt-mid);
  line-height: 1.8;
}

.success-body strong { color: var(--red); font-weight: 700; }

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
  .hero-inner      { min-height: 240px; }
  .formula-num     { font-size: 2.4rem; }
  .promo-badge-line2 { font-size: 0.95rem; }
  .hero-bottles    { height: 95%; }
}
