@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&family=Tajawal:wght@400;700;900&display=swap');

:root {
  --bg-dark: #080417;
  --bg-card: rgba(22, 12, 46, 0.72);
  --bg-card-hover: rgba(33, 19, 66, 0.85);
  
  --gold-primary: #FFD700;
  --gold-light: #FFE57F;
  --gold-dark: #C59B27;
  --gold-gradient: linear-gradient(135deg, #FFF176 0%, #FFD700 40%, #FFA000 100%);
  --gold-glow: 0 0 25px rgba(255, 215, 0, 0.4);

  --orange-cta: #FF5722;
  --orange-cta-hover: #FF7043;
  --orange-gradient: linear-gradient(135deg, #FF6F00 0%, #FF3D00 50%, #DD2C00 100%);
  --orange-glow: 0 8px 30px rgba(255, 61, 0, 0.5);

  --purple-accent: #7C4DFF;
  --purple-glow: 0 0 35px rgba(124, 77, 255, 0.35);

  --text-white: #FFFFFF;
  --text-muted: #B3B0CD;
  --text-gold: #FFE082;
  
  --border-gold: rgba(255, 215, 0, 0.28);
  --border-glass: rgba(255, 255, 255, 0.12);

  --font-primary: 'Cairo', 'Tajawal', sans-serif;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-primary);
  background-color: var(--bg-dark);
  color: var(--text-white);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}

body {
  background: radial-gradient(circle at 50% 0%, #200e4c 0%, #0c0621 40%, var(--bg-dark) 100%);
  min-height: 100vh;
  position: relative;
  line-height: 1.6;
  padding-bottom: 80px; /* Space for mobile sticky CTA */
}

/* Particle Canvas Background */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* Main Container Layout */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Typography Utilities */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.25;
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center {
  text-align: center;
}

/* Section Wrapper */
.section {
  padding: 60px 0;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 40px;
}

/* Glassmorphism Card Utility */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--purple-glow);
}

/* Header & Live Status Bar */
.top-header {
  padding: 20px 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.3rem;
}

.brand-icon {
  font-size: 1.8rem;
  filter: drop-shadow(var(--gold-glow));
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.4);
  color: #00E676;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #00E676;
  border-radius: 50%;
  animation: pulseGreen 1.6s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(0, 230, 118, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

/* ==================================================
   1. HERO SECTION
   ================================================== */
.hero-section {
  padding: 40px 0 20px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 111, 0, 0.2) 100%);
  border: 1px solid rgba(255, 215, 0, 0.5);
  color: var(--gold-primary);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: var(--gold-glow);
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 30px;
  font-weight: 600;
}

/* Prize Box Container */
.prize-display-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px auto 40px;
}

.prize-image-box {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto;
  filter: drop-shadow(0 15px 35px rgba(255, 215, 0, 0.4));
  animation: floatTrophy 4s ease-in-out infinite;
}

.prize-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes floatTrophy {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1.5deg); }
}

.prize-amount-badge {
  background: var(--gold-gradient);
  color: #0b051b;
  font-size: 3.2rem;
  font-weight: 900;
  padding: 10px 45px;
  border-radius: 60px;
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5), inset 0 2px 2px rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  margin-top: -30px;
  position: relative;
  z-index: 2;
  border: 3px solid #FFF8E1;
}

.prize-subtext {
  margin-top: 10px;
  font-size: 1rem;
  color: var(--text-gold);
  font-weight: 700;
}

/* ==================================================
   2. COUNTDOWN TIMER
   ================================================== */
.countdown-container {
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 24px 30px;
  text-align: center;
  background: rgba(22, 12, 46, 0.85);
  border: 1px solid rgba(255, 215, 0, 0.35);
  box-shadow: 0 0 35px rgba(124, 77, 255, 0.25);
  border-radius: var(--radius-lg);
}

.countdown-header {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.timer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.timer-block {
  background: rgba(10, 5, 25, 0.85);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
}

.timer-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

.timer-num {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: 'Cairo', monospace;
  color: var(--text-white);
  line-height: 1;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.timer-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: 6px;
}

/* ==================================================
   3. SOCIAL PROOF & LIVE TICKER
   ================================================== */
.social-proof-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.proof-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.98rem;
  font-weight: 700;
}

.proof-icon {
  font-size: 1.2rem;
}

.counter-highlight {
  color: var(--gold-primary);
  font-weight: 900;
}

/* SmartLink Action Box (Reference Image Style) */
.smartlink-notice-box {
  background: rgba(19, 28, 80, 0.85);
  border: 1px solid rgba(124, 77, 255, 0.5);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: #E0E0FF;
  margin-bottom: 24px;
  line-height: 1.6;
  box-shadow: inset 0 0 20px rgba(124, 77, 255, 0.2);
}

.smartlink-steps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.smartlink-step-item {
  background: rgba(12, 6, 32, 0.9);
  border: 1px solid var(--gold-primary);
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition-smooth);
}

.smartlink-step-item:hover {
  background: rgba(26, 14, 60, 0.95);
  transform: translateX(-4px);
  box-shadow: var(--gold-glow);
}

.smartlink-step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #080417;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.smartlink-step-text {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  text-align: right;
}

/* Live Approved Comments Card Box (Reference Image Style) */
.comments-section-card {
  max-width: 680px;
  margin: 30px auto 40px;
  padding: 28px 24px;
  background: rgba(18, 9, 44, 0.9);
  border: 1.5px solid rgba(124, 77, 255, 0.45);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(124, 77, 255, 0.2);
}

.comments-header-title {
  color: var(--gold-primary);
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

.comments-list-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comment-card-item {
  background: rgba(26, 15, 60, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  text-align: right;
  transition: var(--transition-smooth);
}

.comment-card-item:hover {
  border-color: rgba(255, 215, 0, 0.4);
  background: rgba(36, 20, 80, 0.95);
  transform: translateY(-2px);
}

.comment-top-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.comment-author-name {
  color: #38BDF8;
  font-size: 1.1rem;
  font-weight: 800;
}

.comment-verified-icon {
  width: 18px;
  height: 18px;
  background: #00E676;
  color: #000;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
}

.comment-stars-row {
  color: #FFD700;
  font-size: 1.05rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.comment-body-text {
  color: #E2E8F0;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 600;
}

/* Button pulse animation for SmartLink CTAs */
.btn-cta.btn-smartlink {
  animation: pulseCtaGlow 2.5s infinite ease-in-out;
  text-decoration: none;
}

@keyframes pulseCtaGlow {
  0%, 100% {
    box-shadow: var(--orange-glow);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 12px 45px rgba(255, 87, 34, 0.85);
    transform: scale(1.02);
  }
}

/* Main CTA Card & Phone Form */
.main-cta-card {
  max-width: 680px;
  margin: 0 auto 60px;
  padding: 40px 35px;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(45, 24, 90, 0.95) 0%, rgba(20, 10, 42, 0.95) 100%);
  border: 2px solid var(--gold-primary);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), var(--gold-glow);
}

.cta-headline {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-subtext {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.phone-form-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.input-flex-row {
  display: flex;
  gap: 10px;
  direction: ltr; /* Input numbers read LTR smoothly */
}

.country-select {
  background: rgba(10, 5, 26, 0.9);
  border: 1px solid var(--border-gold);
  color: var(--text-white);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 12px;
  border-radius: var(--radius-md);
  outline: none;
  cursor: pointer;
  min-width: 120px;
  transition: var(--transition-smooth);
}

.country-select:focus {
  border-color: var(--gold-primary);
  box-shadow: var(--gold-glow);
}

.phone-input {
  flex: 1;
  background: rgba(10, 5, 26, 0.9);
  border: 1px solid var(--border-gold);
  color: var(--text-white);
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  outline: none;
  direction: ltr;
  text-align: left;
  transition: var(--transition-smooth);
}

.phone-input::placeholder {
  color: #716C97;
  font-size: 1.05rem;
  text-align: right;
  direction: rtl;
}

.phone-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.btn-cta {
  width: 100%;
  background: var(--orange-gradient);
  color: #FFFFFF;
  border: 2px solid #FFAB91;
  font-family: var(--font-primary);
  font-size: 1.45rem;
  font-weight: 900;
  padding: 18px 30px;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: var(--orange-glow);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 14px 40px rgba(255, 61, 0, 0.7);
  background: linear-gradient(135deg, #FF7D00 0%, #FF5252 100%);
}

.btn-cta:active {
  transform: translateY(1px) scale(0.99);
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.3) 50%, transparent 55%);
  transform: rotate(30deg);
  animation: shineBtn 3.5s infinite;
}

@keyframes shineBtn {
  0% { transform: translateX(-100%) rotate(30deg); }
  20%, 100% { transform: translateX(100%) rotate(30deg); }
}

.form-reassurance-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Validation Feedback Message */
.form-feedback-msg {
  display: none;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.form-feedback-msg.error {
  display: block;
  background: rgba(244, 67, 54, 0.15);
  border: 1px solid #EF5350;
  color: #FF8A80;
}
.form-feedback-msg.success {
  display: block;
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid #66BB6A;
  color: #B9F6CA;
}

/* ==================================================
   5. CURIOSITY / REWARD SECTION
   ================================================== */
.curiosity-card {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 35px 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, rgba(38, 19, 78, 0.8) 0%, rgba(18, 9, 41, 0.9) 100%);
  border: 1px solid var(--border-gold);
}

.curiosity-img {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  animation: pulseGift 3s infinite ease-in-out;
}

.curiosity-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(255,215,0,0.5));
}

@keyframes pulseGift {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.curiosity-content h3 {
  font-size: 1.6rem;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.curiosity-content p {
  font-size: 1.1rem;
  color: var(--text-white);
  line-height: 1.6;
}

/* ==================================================
   6. TRUST & REASSURANCE
   ================================================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.trust-card {
  padding: 28px 24px;
  text-align: center;
}

.trust-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: inline-block;
  background: rgba(255, 215, 0, 0.1);
  width: 64px;
  height: 64px;
  line-height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.trust-card h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--gold-primary);
}

.trust-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==================================================
   7. HOW IT WORKS
   ================================================== */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  margin-bottom: 60px;
}

.step-card {
  padding: 30px 24px;
  text-align: center;
  position: relative;
}

.step-number-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0b051b;
  font-size: 1.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--gold-glow);
  border: 3px solid #FFF8E1;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.step-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;

}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==================================================
   8. PARTICIPATION MOMENTUM
   ================================================== */
.momentum-box {
  background: linear-gradient(90deg, rgba(33, 16, 68, 0.9) 0%, rgba(19, 8, 44, 0.9) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 35px;
  text-align: center;
  margin-bottom: 60px;
}

.stats-flex-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 25px;
}

.stat-item {
  flex: 1;
  min-width: 180px;
}

.stat-val {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-primary);
  font-family: 'Cairo', sans-serif;
}

.stat-lbl {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 700;
}

/* ==================================================
   9. WINNERS / SUCCESS STORIES
   ================================================== */
.winners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.winner-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.winner-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.winner-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
  box-shadow: var(--gold-glow);
}

.winner-info h5 {
  font-size: 1.15rem;
  font-weight: 800;
}

.winner-prize-tag {
  color: #00E676;
  font-size: 0.95rem;
  font-weight: 800;
}

.winner-text {
  font-size: 0.95rem;
  color: #D1CDE5;
  line-height: 1.6;
  font-style: italic;

}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: #4FC3F7;
  font-weight: 700;
  margin-top: 12px;
}

/* ==================================================
   10. BIG CTA SECTION
   ================================================== */
.big-cta-section {
  background: radial-gradient(circle at 50% 50%, rgba(124, 77, 255, 0.25) 0%, rgba(11, 7, 30, 0.9) 70%);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 50px 30px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.25);
}

.big-cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.big-cta-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* ==================================================
   11. FAQ ACCORDION
   ================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--gold-primary);
  box-shadow: var(--gold-glow);
}

.faq-question {
  padding: 18px 24px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--gold-primary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ==================================================
   12. FINAL CONVERSION BLOCK
   ================================================== */
.final-conversion-card {
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 40px 30px;
  text-align: center;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5), var(--gold-glow);
}

/* ==================================================
   13. FOOTER & DISCLAIMS
   ================================================== */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-gold);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-white);
  text-decoration: underline;
}

.disclaimer-text {
  font-size: 0.8rem;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 20px;
  opacity: 0.7;
}

/* Sticky Mobile CTA Bar */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(12, 6, 33, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--gold-primary);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -8px 25px rgba(0,0,0,0.6);
  transform: translateY(120%);
  transition: transform 0.4s ease;
}

.sticky-mobile-bar.visible {
  transform: translateY(0);
}

.sticky-info {
  display: flex;
  flex-direction: column;
}

.sticky-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.sticky-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.btn-sticky {
  background: var(--orange-gradient);
  color: #fff;
  border: 1px solid #FFAB91;
  font-weight: 900;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--orange-glow);
}

/* Admin Toggle Trigger & Modal */
.admin-trigger-btn {
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: var(--transition-smooth);
}

.admin-trigger-btn:hover {
  background: var(--gold-primary);
  color: #000;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #130a2e;
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 30px;
  width: 90%;
  max-width: 600px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), var(--gold-glow);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  left: 15px;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
}

.admin-form-group {
  margin-bottom: 16px;
  text-align: right;
}

.admin-form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--gold-primary);
}

.admin-form-group input, .admin-form-group textarea, .admin-form-group select {
  width: 100%;
  background: #09041a;
  border: 1px solid var(--border-gold);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.95rem;
}

/* Confirmation Success Modal */
.success-popup {
  text-align: center;
}

.success-popup-icon {
  font-size: 4rem;
  margin-bottom: 15px;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

/* ==================================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ================================================== */
@media (max-width: 900px) {
  .trust-grid, .how-it-works-grid, .winners-grid {
    grid-template-columns: 1fr;
  }

  .curiosity-card {
    flex-direction: column;
    text-align: center;
  }

  .curiosity-img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .prize-amount-badge {
    font-size: 2.3rem;
    padding: 8px 30px;
  }

  .prize-image-box {
    width: 200px;
    height: 200px;
  }

  .timer-num {
    font-size: 1.8rem;
  }

  .main-cta-card {
    padding: 28px 20px;
  }

  .btn-cta {
    font-size: 1.25rem;
    padding: 16px 20px;
  }

  .big-cta-title {
    font-size: 1.9rem;
  }
}
