/* ============================================
   MOUSSEFIZZ — Premium Prelander Styles
   ============================================ */

.prelander-hero {
  background: linear-gradient(160deg, var(--navy) 0%, #1A3A6B 60%, #0F2D5C 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.prelander-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,86,219,0.25) 0%, transparent 60%);
}
.prelander-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
}
.prelander-hero h1 {
  font-size: clamp(26px, 4.5vw, 48px);
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
  max-width: 720px;
}
.prelander-hero .deck {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 28px;
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.article-meta .dot { opacity: 0.3; }
.article-meta strong { color: rgba(255,255,255,0.8); }

/* Article body */
.article-wrap {
  max-width: 740px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.article-wrap h2 {
  font-size: clamp(20px, 3vw, 28px);
  margin: 48px 0 14px;
  color: var(--navy);
  padding-top: 8px;
  position: relative;
}
.article-wrap h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 8px;
}
.article-wrap p  { font-size: 16px; line-height: 1.8; margin-bottom: 18px; color: var(--grey-800); }
.article-wrap ul, .article-wrap ol { padding-left: 20px; margin-bottom: 20px; }
.article-wrap li { font-size: 15px; line-height: 1.7; margin-bottom: 10px; color: var(--grey-800); }

.article-wrap blockquote {
  background: var(--off-white);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 20px 24px;
  margin: 28px 0;
  font-style: italic;
  font-size: 15px;
  color: var(--grey-800);
  position: relative;
}
.article-wrap blockquote.danger { border-left-color: var(--red); }
.article-wrap blockquote .cite { font-style: normal; font-weight: 700; font-size: 13px; color: var(--navy); margin-top: 12px; display: block; }

.article-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: 28px 0;
  box-shadow: var(--shadow-md);
}
.article-img img { width: 100%; height: auto; }

/* Stats box */
.stats-box {
  background: var(--blue-pale);
  border: 1px solid #BFDBFE;
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin: 32px 0;
}
.stats-box h3 { font-size: 18px; margin-bottom: 16px; color: var(--navy); }
.stats-box ul { list-style: none; padding: 0; }
.stats-box ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(26,86,219,0.1);
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.stats-box ul li:last-child { border-bottom: none; }
.stats-box ul li::before { content: "✓"; color: var(--green); font-weight: 800; flex-shrink: 0; margin-top: 2px; }

/* Offer box */
.offer-box {
  background: linear-gradient(135deg, var(--navy), #1A3A6B);
  border-radius: var(--r-xl);
  padding: 40px;
  text-align: center;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.offer-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212,175,55,0.2), transparent 70%);
  border-radius: 50%;
}
.offer-box h3 { font-size: 26px; color: var(--white); margin-bottom: 8px; }
.offer-box .subtitle { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.offer-list { list-style: none; padding: 0; margin: 0 auto 28px; text-align: left; display: inline-block; }
.offer-list li {
  padding: 10px 0;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}
.offer-list li:last-child { border-bottom: none; }
.offer-list li .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.offer-list li.best { color: var(--gold-light); font-weight: 600; }
.offer-trust { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 14px; }

/* Warning box */
.warning-box {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 14px;
  color: #78350F;
}

/* Spin wheel */
.wheel-section {
  background: var(--white);
  border: 2px solid var(--grey-200);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  text-align: center;
  margin: 40px 0;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.wheel-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-pale) 0%, transparent 60%);
  pointer-events: none;
}
.wheel-section h3 { font-size: 26px; color: var(--navy); margin-bottom: 8px; }
.wheel-section > p { font-size: 15px; color: var(--grey-600); margin-bottom: 32px; }
.wheel-wrapper {
  position: relative;
  width: 260px;
  margin: 0 auto 28px;
}
.wheel-img {
  width: 100%;
  border-radius: 50%;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}
.wheel-cursor-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px;
}
.spin-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: var(--white);
  border: 3px solid var(--grey-200);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  color: var(--navy);
  box-shadow: var(--shadow-md);
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  user-select: none;
}
.spin-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

@keyframes super-rotation {
  70%  { transform: rotate(1783deg); }
  100% { transform: rotate(1774deg); }
}
.spinning { animation: super-rotation 7s ease-in-out forwards; }

.spin-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(4px);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.spin-overlay.show { display: flex; }
.spin-popup {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 48px 36px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popIn { from { transform: scale(0.7); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.spin-popup .emoji { font-size: 56px; margin-bottom: 16px; display: block; }
.spin-popup h3 { font-size: 30px; color: var(--navy); margin-bottom: 10px; }
.spin-popup p { font-size: 16px; color: var(--grey-600); margin-bottom: 24px; }
.spin-popup .discount-won { font-size: 48px; font-weight: 800; color: var(--gold); font-family: var(--font-display); }

.promo-form {
  display: none;
  background: linear-gradient(135deg, var(--navy), #1A3A6B);
  border-radius: var(--r-xl);
  padding: 32px;
  margin-top: 24px;
  text-align: center;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.promo-form.visible { display: block; }
.discount-won-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 22px;
  font-weight: 800;
  padding: 8px 28px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
  font-family: var(--font-display);
}
.promo-form h4 { font-size: 22px; color: var(--white); margin-bottom: 8px; }
.promo-form p  { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.stock-alert { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 12px; }

/* Comparison table wrapper */
.table-wrap { overflow-x: auto; margin: 28px 0; -webkit-overflow-scrolling: touch; }

@media (max-width: 640px) {
  .prelander-hero { padding: 48px 0 64px; }
  .prelander-hero h1 { font-size: 26px; }
  .article-wrap { padding: 40px 16px 60px; }
  .offer-box { padding: 28px 20px; }
  .wheel-section { padding: 28px 20px; }
  .spin-popup { padding: 36px 24px 28px; }
}
