/* ============================================
   FIZZFOAM FLUSH — Prelander Fresh Theme
   ============================================ */

.prelander-hero {
  background: linear-gradient(135deg, #0A3D3D 0%, #0D5C52 40%, #10856F 100%);
  padding: 72px 0 90px;
  position: relative;
  overflow: hidden;
}
.prelander-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(20,201,172,0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(132,204,22,0.15) 0%, transparent 50%);
}
.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(20,201,172,0.2);
  border: 1px solid rgba(20,201,172,0.5);
  color: var(--teal-light);
  font-size: 11px;
  font-weight: 800;
  font-family: var(--font-display);
  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.80);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 28px;
  font-style: italic;
  border-left: 3px solid var(--teal-mid);
  padding-left: 16px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.article-meta .dot { opacity: 0.3; }
.article-meta strong { color: rgba(255,255,255,0.85); }

/* 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);
  position: relative;
  padding-bottom: 10px;
}
.article-wrap h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--lime));
  border-radius: 2px;
  margin-top: 10px;
}
.article-wrap p  { font-size: 16px; line-height: 1.8; margin-bottom: 18px; color: #2D4A47; }
.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: #2D4A47; }

.article-wrap blockquote {
  background: var(--teal-pale);
  border-left: 4px solid var(--teal);
  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);
}
.article-wrap blockquote.danger { border-left-color: var(--red); background: var(--red-light); }
.article-wrap blockquote .cite { font-style: normal; font-weight: 700; font-size: 13px; color: var(--teal-deep); margin-top: 12px; display: block; }

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

/* Stats box */
.stats-box {
  background: linear-gradient(135deg, var(--teal-pale), #F0FFF8);
  border: 2px solid var(--teal-light);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin: 32px 0;
}
.stats-box h3 { font-size: 18px; margin-bottom: 16px; color: var(--teal-deep); }
.stats-box ul { list-style: none; padding: 0; }
.stats-box ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--teal-light);
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--grey-800);
}
.stats-box ul li:last-child { border-bottom: none; }
.stats-box ul li::before { content: "✓"; color: var(--teal); font-weight: 900; flex-shrink: 0; margin-top: 2px; font-family: var(--font-display); }

/* Offer box */
.offer-box {
  background: linear-gradient(135deg, #0A3D3D, #0D5C52, #106655);
  border-radius: var(--r-xl);
  padding: 40px;
  text-align: center;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(20,201,172,0.3);
}
.offer-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(132,204,22,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(--teal-mid); flex-shrink: 0; }
.offer-list li.best { color: var(--yellow); font-weight: 700; }
.offer-list li.best .dot { background: var(--yellow); }
.offer-trust { font-size: 13px; color: rgba(255,255,255,0.9); margin-top: 14px; }

/* Warning box */
.warning-box {
  background: #FEFCE8;
  border: 2px solid #FDE047;
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 14px;
  color: #713F12;
}

/* Spin wheel */
.wheel-section {
  background: linear-gradient(135deg, var(--teal-pale), #F0FFF4);
  border: 2px solid var(--teal-light);
  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;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(16,181,154,0.15), transparent 70%);
  border-radius: 50%;
}
.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(--teal-light);
  border-radius: 50%;
  font-size: 11px; font-weight: 900;
  cursor: pointer;
  color: var(--teal-deep);
  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;
  font-family: var(--font-display);
}
.spin-btn:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

@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,61,61,0.88);
  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);
  border: 3px solid var(--teal-light);
}
@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: 900; color: var(--teal); font-family: var(--font-display); }

.promo-form {
  display: none;
  background: linear-gradient(135deg, #0A3D3D, #0D5C52);
  border-radius: var(--r-xl);
  padding: 32px;
  margin-top: 24px;
  text-align: center;
  animation: fadeIn 0.4s ease;
  border: 2px solid rgba(20,201,172,0.3);
}
@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: linear-gradient(135deg, var(--teal), var(--teal-mid));
  color: var(--white);
  font-size: 22px; font-weight: 900;
  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.65); margin-top: 12px; }

.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; }
}
