/* =============================================
   GIFTVAULT – Premium Gift Card Website CSS
   ============================================= */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;600;700;800;900&display=swap');

/* ---------- CSS Reset & Root Variables ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary:    #050812;
  --bg-secondary:  #090e1f;
  --bg-card:       #0d1530;
  --bg-card-hover: #111b3a;
  --accent-gold:   #f5c518;
  --accent-gold2:  #e8a500;
  --accent-purple: #7c3aed;
  --accent-blue:   #2563eb;
  --accent-cyan:   #06b6d4;
  --accent-green:  #10b981;
  --accent-pink:   #ec4899;
  --text-primary:  #ffffff;
  --text-secondary:#b0bec5;
  --text-muted:    #64748b;
  --border-color:  rgba(255,255,255,0.06);
  --shadow-glow:   0 0 40px rgba(124,58,237,0.3);
  --shadow-gold:   0 0 30px rgba(245,197,24,0.4);
  --radius-card:   20px;
  --radius-btn:    50px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-purple); border-radius: 3px; }

/* ---------- Particles ---------- */
.particles {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatUp linear infinite;
  opacity: 0;
}
@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* ---------- Disclosure Bar ---------- */
.disclosure-bar {
  background: rgba(245,197,24,0.1);
  border-bottom: 1px solid rgba(245,197,24,0.25);
  padding: 9px 20px;
  text-align: center;
  font-size: 13px;
  position: relative; z-index: 100;
  color: var(--text-secondary);
}
.disclosure-content {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  flex-wrap: wrap;
}
.disclosure-bar a { color: var(--accent-gold); text-decoration: underline; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0; } }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky; top: 0; z-index: 99;
  background: rgba(5, 8, 18, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 24px;
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-icon { font-size: 28px; }
.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 24px; font-weight: 800;
  color: #fff;
}
.logo-accent { color: var(--accent-gold); }
.nav-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 6px 14px; border-radius: 50px;
  font-size: 13px; font-weight: 600; color: #10b981;
}
.live-indicator {
  width: 8px; height: 8px;
  background: #10b981; border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: blink 1.2s ease-in-out infinite;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.sponsored-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(245,197,24,0.15), rgba(232,165,0,0.1));
  border: 1px solid rgba(245,197,24,0.4);
  padding: 8px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 700;
  color: var(--accent-gold); letter-spacing: 1px;
  margin-bottom: 20px;
}
.offer-types {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px;
}
.offer-chip {
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 50px; padding: 6px 14px;
  font-size: 13px; font-weight: 600; color: var(--text-secondary);
  transition: var(--transition);
}
.offer-chip:hover { background: rgba(124,58,237,0.25); color: #fff; }
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, #7c3aed, #06b6d4, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold-text {
  background: linear-gradient(135deg, #f5c518, #e8a500, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 17px; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 32px;
}

/* Countdown */
.countdown-wrapper { margin-bottom: 28px; }
.countdown-label {
  font-size: 13px; color: var(--text-muted);
  font-weight: 600; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px;
}
.countdown {
  display: flex; align-items: center; gap: 8px;
}
.time-block {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 12px; padding: 10px 18px;
  min-width: 70px;
}
.time-num {
  font-family: 'Outfit', sans-serif;
  font-size: 32px; font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}
.time-label {
  font-size: 11px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 4px;
}
.colon {
  font-size: 28px; font-weight: 800;
  color: var(--accent-gold);
  animation: blink 1s ease-in-out infinite;
}

/* Trust badges */
.trust-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.badge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; padding: 7px 14px;
  font-size: 13px; font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}
.badge:hover {
  background: rgba(124,58,237,0.15);
  border-color: rgba(124,58,237,0.4);
  color: #fff;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.hero-img {
  width: 100%; max-width: 500px;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(124,58,237,0.4), 0 0 0 1px rgba(255,255,255,0.05);
  animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.floating-tag {
  position: absolute;
  background: rgba(5, 8, 18, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 14px; font-weight: 700;
  animation: tagFloat 3s ease-in-out infinite;
  white-space: nowrap;
}
.tag1 { top: 20px; left: -10px; color: var(--accent-green); border-color: rgba(16,185,129,0.4); animation-delay: 0s; }
.tag2 { bottom: 80px; right: -10px; color: var(--accent-gold); border-color: rgba(245,197,24,0.4); animation-delay: 1s; }
.tag3 { bottom: 20px; left: 20px; color: var(--accent-cyan); border-color: rgba(6,182,212,0.4); animation-delay: 2s; }
@keyframes tagFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  position: relative; z-index: 1;
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(37,99,235,0.12));
  border-top: 1px solid rgba(124,58,237,0.2);
  border-bottom: 1px solid rgba(37,99,235,0.2);
  padding: 24px;
}
.stats-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 28px; font-weight: 800;
  color: var(--accent-gold);
}
.stat-label {
  font-size: 13px; color: var(--text-muted);
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.1);
}

/* ---------- Section Common ---------- */
.cards-section, .winner-feed-section, .reviews-section, .faq-section {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 24px;
}
.section-header { text-align: center; margin-bottom: 50px; }
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(6,182,212,0.1));
  border: 1px solid rgba(124,58,237,0.35);
  padding: 6px 20px; border-radius: 50px;
  font-size: 12px; font-weight: 700;
  color: var(--accent-cyan); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 16px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; margin-bottom: 14px;
}
.section-subtitle {
  font-size: 16px; color: var(--text-secondary);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}

/* ---------- Gift Cards Grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.gift-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.gift-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(124,58,237,0.5);
  box-shadow: 0 20px 60px rgba(124,58,237,0.25);
}
.gift-card.featured {
  border: 2px solid rgba(245,197,24,0.5);
  box-shadow: 0 0 40px rgba(245,197,24,0.15);
}
.gift-card.featured:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 20px 60px rgba(245,197,24,0.3);
}

.card-ribbon {
  position: absolute; top: 16px; right: -30px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff; font-size: 11px; font-weight: 800;
  padding: 5px 40px; transform: rotate(45deg);
  letter-spacing: 0.5px; z-index: 2;
  white-space: nowrap;
}
.blue-ribbon { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.green-ribbon { background: linear-gradient(135deg, #10b981, #059669); }
.gold-ribbon { background: linear-gradient(135deg, #f5c518, #e8a500); color: #000; }

.card-glow {
  position: absolute; inset: -2px;
  background: linear-gradient(135deg, rgba(245,197,24,0.3), transparent, rgba(245,197,24,0.1));
  border-radius: var(--radius-card);
  z-index: 0; opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.gift-card.featured:hover .card-glow { opacity: 1; }

.card-inner { position: relative; z-index: 1; padding: 24px; }

.card-icon-wrap {
  width: 100%; height: 180px; overflow: hidden;
  border-radius: 14px; margin-bottom: 16px; position: relative;
}
.card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gift-card:hover .card-img { transform: scale(1.08); }

.mystery-wrap { position: relative; }
.mystery-overlay {
  position: absolute; inset: 0;
  background: rgba(5, 8, 18, 0.7);
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
}
.mystery-icon { font-size: 60px; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.1);} }

.card-badge-wrap {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.card-value {
  font-family: 'Outfit', sans-serif;
  font-size: 26px; font-weight: 800;
  background: linear-gradient(135deg, #f5c518, #e8a500);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.card-sponsored-tag {
  background: rgba(245,197,24,0.2);
  border: 1px solid rgba(245,197,24,0.4);
  color: var(--accent-gold); font-size: 10px; font-weight: 800;
  padding: 3px 10px; border-radius: 50px;
  letter-spacing: 1px;
}
/* AD Label */
.ad-label {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-muted); font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 4px;
  letter-spacing: 1px; z-index: 3;
}
/* Card disclaimer */
.card-disclaimer {
  font-size: 11px; color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px; padding: 8px 10px;
  margin-bottom: 14px; line-height: 1.5;
}
.card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 700;
  margin-bottom: 8px;
}
.card-desc {
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.6; margin-bottom: 14px;
}
.card-meta {
  display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap;
}
.meta-item {
  font-size: 12px; color: var(--text-muted);
  font-weight: 600;
}

.card-slots { margin-bottom: 18px; }
.slots-bar {
  height: 6px; background: rgba(255,255,255,0.08);
  border-radius: 3px; margin-bottom: 6px; overflow: hidden;
}
.slots-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  border-radius: 3px;
  animation: fillPulse 2s ease-in-out infinite;
}
@keyframes fillPulse { 0%,100%{opacity:1;} 50%{opacity:0.7;} }
.slots-text {
  font-size: 12px; color: var(--text-muted);
}
.slots-text strong { color: #ef4444; }

/* Claim Buttons */
.claim-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: #fff; border: none; border-radius: var(--radius-btn);
  padding: 14px 24px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  letter-spacing: 0.5px; position: relative; overflow: hidden;
}
.claim-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: var(--transition);
}
.claim-btn:hover::before { opacity: 1; }
.claim-btn:hover { transform: scale(1.03); box-shadow: 0 10px 30px rgba(124,58,237,0.5); }
.claim-btn:active { transform: scale(0.97); }
.green-btn { background: linear-gradient(135deg, #10b981, #059669); }
.green-btn:hover { box-shadow: 0 10px 30px rgba(16,185,129,0.5); }
.gold-btn { background: linear-gradient(135deg, #f5c518, #e8a500); color: #000; }
.gold-btn:hover { box-shadow: 0 10px 30px rgba(245,197,24,0.5); }

.pulse {
  animation: btnPulse 2.5s ease-in-out infinite;
}
@keyframes btnPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(124,58,237,0.5); }
  50% { box-shadow: 0 0 0 15px rgba(124,58,237,0); }
}
.btn-icon { font-size: 18px; }
.btn-arrow { margin-left: auto; font-size: 16px; transition: var(--transition); }
.claim-btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- How It Works ---------- */
.how-section {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 24px;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.how-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 32px 24px; text-align: center;
  transition: var(--transition);
}
.how-card:hover {
  border-color: rgba(124,58,237,0.3);
  transform: translateY(-4px);
}
.how-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800;
  margin: 0 auto 16px;
}
.how-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.how-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ---------- Disclaimer Section ---------- */
.disclaimer-section {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px 60px;
}
.disclaimer-box {
  background: rgba(245,197,24,0.05);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 16px; padding: 32px;
}
.disclaimer-box h3 {
  font-size: 18px; font-weight: 700;
  margin-bottom: 16px; color: var(--accent-gold);
}
.disclaimer-box p {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 12px;
}
.disclaimer-box p:last-child { margin-bottom: 0; }

/* ---------- Winner Feed ---------- */
.winner-feed-section { display: none; }
.winner-scroll-wrapper { overflow: hidden; position: relative; }
.winner-scroll-wrapper::before,
.winner-scroll-wrapper::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.winner-scroll-wrapper::before { left: 0; background: linear-gradient(to right, var(--bg-primary), transparent); }
.winner-scroll-wrapper::after { right: 0; background: linear-gradient(to left, var(--bg-primary), transparent); }
.winner-scroll {
  display: flex; gap: 16px;
  padding: 20px 40px;
  animation: scrollLeft 30s linear infinite;
  width: max-content;
}
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.winner-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px; padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  min-width: 260px; flex-shrink: 0;
  transition: var(--transition);
}
.winner-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.winner-info { flex: 1; min-width: 0; }
.winner-name { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
.winner-prize { font-size: 13px; color: var(--accent-gold); font-weight: 600; margin-bottom: 2px; }
.winner-time { font-size: 11px; color: var(--text-muted); }
.winner-flag { font-size: 20px; }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: var(--transition);
}
.review-card:hover {
  border-color: rgba(124,58,237,0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(124,58,237,0.15);
}
.review-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px; flex-wrap: wrap;
}
.review-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #ef4444, #ec4899);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-meta strong { display: block; font-size: 15px; font-weight: 700; }
.review-meta span { font-size: 13px; color: var(--text-muted); }
.review-stars { font-size: 15px; }
.review-card p {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 12px;
}
.review-date { font-size: 12px; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px; overflow: hidden;
  cursor: pointer; transition: var(--transition);
}
.faq-item:hover { border-color: rgba(124,58,237,0.3); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; font-weight: 600; font-size: 15px;
}
.faq-arrow { transition: transform 0.3s ease; color: var(--accent-purple); font-size: 12px; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  padding: 0 24px;
  max-height: 0; overflow: hidden;
  font-size: 14px; color: var(--text-secondary); line-height: 1.7;
  transition: all 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 200px; padding: 0 24px 20px;
}

/* ---------- Footer ---------- */
.footer {
  position: relative; z-index: 1;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 40px 24px;
}
.footer-content { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 14px; }
.footer-text { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent-purple); }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--bg-card);
  border: 1px solid rgba(124,58,237,0.4);
  border-radius: 28px; padding: 48px 36px;
  max-width: 480px; width: 100%;
  text-align: center; position: relative; overflow: hidden;
  animation: modalIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 60px rgba(124,58,237,0.3);
}
@keyframes modalIn {
  from { opacity:0; transform: scale(0.7) translateY(40px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}
.modal-confetti {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.confetti-piece {
  position: absolute; width: 8px; height: 8px;
  animation: confettiFall linear infinite;
}
@keyframes confettiFall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(500px) rotate(720deg); opacity: 0; }
}
.modal-ad-label {
  display: inline-block;
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.3);
  color: var(--accent-gold); font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: 50px;
  letter-spacing: 1.5px; margin-bottom: 16px;
}
.modal-icon { font-size: 56px; margin-bottom: 12px; }
.modal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 28px; font-weight: 800; margin-bottom: 8px;
}
.modal-subtitle { font-size: 15px; color: var(--text-secondary); margin-bottom: 12px; }
.modal-prize {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 800;
  background: linear-gradient(135deg, #f5c518, #e8a500);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}
.modal-disclaimer {
  font-size: 12px; color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 10px 14px;
  margin-bottom: 20px; line-height: 1.6; text-align: left;
}
.modal-note {
  font-size: 14px; color: var(--text-muted); margin-bottom: 24px;
}
.modal-timer { color: #ef4444; font-weight: 700; }
.modal-claim-btn {
  width: 100%;
  background: linear-gradient(135deg, #f5c518, #e8a500);
  color: #000; border: none;
  border-radius: var(--radius-btn);
  padding: 18px 32px;
  font-size: 17px; font-weight: 800;
  cursor: pointer; transition: var(--transition);
  letter-spacing: 0.5px; margin-bottom: 14px;
  animation: goldPulse 2s ease-in-out infinite;
}
@keyframes goldPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(245,197,24,0.5); }
  50% { box-shadow: 0 0 0 15px rgba(245,197,24,0); }
}
.modal-claim-btn:hover { transform: scale(1.04); box-shadow: 0 15px 40px rgba(245,197,24,0.4); }
.modal-close {
  background: none; border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted); border-radius: var(--radius-btn);
  padding: 10px 24px; font-size: 14px; cursor: pointer;
  transition: var(--transition); width: 100%;
}
.modal-close:hover { border-color: rgba(255,255,255,0.3); color: #fff; }

/* ---------- Toast Notifications ---------- */
.toast-container {
  position: fixed; bottom: 24px; left: 24px; z-index: 9999;
  display: flex; flex-direction: column-reverse; gap: 10px;
  pointer-events: none;
}
.toast {
  background: var(--bg-card);
  border: 1px solid rgba(124,58,237,0.35);
  border-radius: 12px; padding: 12px 18px;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  animation: toastIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-width: 320px;
}
@keyframes toastIn {
  from { opacity:0; transform:translateX(-30px); }
  to { opacity:1; transform:translateX(0); }
}
.toast-out {
  animation: toastOut 0.3s ease forwards;
}
@keyframes toastOut {
  to { opacity:0; transform:translateX(-30px); }
}

/* ---------- Responsive Design ---------- */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 50px 20px 40px;
    gap: 40px;
  }
  .hero-visual { order: -1; }
  .hero-img { max-width: 100%; }
  .floating-tag { display: none; }
  .stats-container { gap: 14px; }
  .stat-divider { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .trust-badges { gap: 8px; }
  .badge { font-size: 12px; padding: 6px 12px; }
  .top-banner { font-size: 12px; }
  .modal-box { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .section-title { font-size: 24px; }
  .time-num { font-size: 26px; }
  .time-block { min-width: 55px; padding: 8px 12px; }
  .countdown { gap: 6px; }
}
