/* =====================================================
   LUCKYLAND SLOTS — styles.css
   Fonts: Montserrat Bold (headings) | Open Sans (body)
   Theme: Dark luxury casino — deep navy, gold, electric
   ===================================================== */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #FFD700;
  --gold-light: #FFE44D;
  --gold-dark: #C9A800;
  --navy: #0a0a1a;
  --navy2: #0d0d2b;
  --navy3: #12122e;
  --electric: #6C63FF;
  --electric2: #9B93FF;
  --red: #FF3B5C;
  --red2: #FF6B82;
  --green: #00E676;
  --white: #FFFFFF;
  --gray: #A0A0C0;
  --gray2: #6B6B8A;
  --card-bg: rgba(255,255,255,0.04);
  --card-border: rgba(255,215,0,0.15);
  --shadow-gold: 0 0 30px rgba(255,215,0,0.25);
  --shadow-deep: 0 20px 60px rgba(0,0,0,0.6);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-sm); }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  min-height: 48px;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: inherit;
}

.btn:hover::after { opacity: 1; }
.btn:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover { background: var(--gold); color: var(--navy); }

.btn-hero {
  background: linear-gradient(135deg, #FF3B5C, #FF6B35);
  color: var(--white);
  font-size: 1.1rem;
  padding: 18px 40px;
  min-height: 56px;
}

.btn-glow {
  box-shadow: 0 0 25px rgba(255,59,92,0.5), 0 4px 20px rgba(0,0,0,0.3);
  animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 25px rgba(255,59,92,0.5), 0 4px 20px rgba(0,0,0,0.3); }
  50% { box-shadow: 0 0 45px rgba(255,59,92,0.8), 0 4px 30px rgba(0,0,0,0.4); }
}

.btn-slot {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: 0.85rem;
  padding: 10px 20px;
  min-height: 40px;
  border-radius: 50px;
}

.btn-vip {
  background: linear-gradient(135deg, var(--gold), #FF8C00);
  color: var(--navy);
  font-size: 1.1rem;
  padding: 18px 42px;
  min-height: 56px;
}

.btn-lg { font-size: 1.05rem; padding: 18px 40px; min-height: 56px; }

/* ---- SECTION COMMON ---- */
section { padding: 80px 0; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title.light { color: var(--white); }
.section-sub {
  text-align: center;
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 48px;
}
.section-sub.light { color: rgba(255,255,255,0.75); }
.text-center { text-align: center; }
.mt-4 { margin-top: 40px; }

/* ========================
   NAVIGATION
   ======================== */
#main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar {
  background: transparent;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10,10,26,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,215,0,0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon { font-size: 1.8rem; }

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo-text strong { color: var(--gold); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--transition);
}

.nav-link:hover { color: var(--gold); background: rgba(255,215,0,0.08); }

.nav-cta .btn { padding: 10px 22px; font-size: 0.9rem; min-height: 44px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #050510 0%, #0a0a2e 50%, #0f0520 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.hero-particle {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(108,99,255,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 30%, rgba(255,215,0,0.08) 0%, transparent 70%);
}

.hero-coins {
  position: absolute; inset: 0;
}

.coin {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.3;
  animation: floatCoin linear infinite;
}

.c1 { left: 5%; top: 20%; font-size: 2rem; animation-duration: 6s; animation-delay: 0s; }
.c2 { left: 15%; top: 70%; font-size: 1.8rem; animation-duration: 8s; animation-delay: -2s; }
.c3 { left: 80%; top: 15%; font-size: 2.5rem; animation-duration: 7s; animation-delay: -1s; }
.c4 { left: 90%; top: 60%; font-size: 1.6rem; animation-duration: 5s; animation-delay: -3s; }
.c5 { left: 50%; top: 10%; font-size: 2rem; animation-duration: 9s; animation-delay: -4s; }
.c6 { left: 70%; top: 80%; font-size: 1.5rem; animation-duration: 6.5s; animation-delay: -1.5s; }
.c7 { left: 30%; top: 85%; font-size: 2rem; animation-duration: 7.5s; animation-delay: -2.5s; }
.c8 { left: 60%; top: 90%; font-size: 1.8rem; animation-duration: 8.5s; animation-delay: -0.5s; }

@keyframes floatCoin {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.2; }
  50% { opacity: 0.5; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0.1; }
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255,59,92,0.2), rgba(255,107,53,0.2));
  border: 1px solid rgba(255,59,92,0.4);
  color: var(--red2);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.title-line1 { color: var(--white); }
.title-highlight {
  color: var(--gold);
  -webkit-text-stroke: 2px var(--gold-dark);
  text-shadow: 0 0 40px rgba(255,215,0,0.4);
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%, 100% { text-shadow: 0 0 40px rgba(255,215,0,0.4); }
  50% { text-shadow: 0 0 70px rgba(255,215,0,0.7), 0 0 100px rgba(255,215,0,0.3); }
}

.title-line3 { color: var(--white); }

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Countdown */
.countdown-box {
  background: rgba(255,215,0,0.07);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.countdown-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-block span {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  min-width: 2ch;
  text-align: center;
}

.time-block small {
  font-size: 0.65rem;
  color: var(--gray);
  font-weight: 600;
  letter-spacing: 1px;
}

.time-sep {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 12px;
  animation: blink 1s step-end infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-cta-group { margin-top: 10px; }
.hero-legal {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--gray);
}

/* Hero image */
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.hero-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep), 0 0 60px rgba(108,99,255,0.2);
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-badge-float {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: linear-gradient(135deg, var(--navy2), var(--navy3));
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-gold);
}

.hero-badge-float span { font-size: 1.8rem; }
.hero-badge-float div { display: flex; flex-direction: column; }
.hero-badge-float strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: var(--gold);
}
.hero-badge-float small { font-size: 0.75rem; color: var(--gray); }

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
}
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* ========================
   HOW IT WORKS
   ======================== */
.how-it-works {
  background: #0d0d1a;
  padding: 80px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--electric));
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}

.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold); border-color: rgba(255,215,0,0.35); }
.step-card:hover::before { transform: scaleX(1); }

.step-icon { font-size: 3rem; margin-bottom: 20px; }

.step-card h3 {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.step-card p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.7; }

/* ========================
   FEATURED SLOTS
   ======================== */
.featured-slots {
  background: linear-gradient(180deg, var(--navy2), var(--navy));
  padding: 80px 0;
}

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

.slot-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  transition: var(--transition);
  cursor: pointer;
}

.slot-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }

.slot-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
}

.slot-card:hover .slot-bg { transform: scale(1.08); }

/* Slot backgrounds - stylized gradients */
.galactic { background: linear-gradient(135deg, #0a0028 0%, #1a0050 40%, #3d00a0 70%, #6c00ff 100%); }
.galactic::after { content: '🚀✨'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 3rem; text-align: center; }

.neon { background: linear-gradient(135deg, #001020 0%, #002040 40%, #004080 70%, #00aaff 100%); }
.neon::after { content: '💠⚡'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 3rem; text-align: center; }

.dragon { background: linear-gradient(135deg, #200000 0%, #500000 40%, #990000 70%, #ff2200 100%); }
.dragon::after { content: '🐉🔥'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 3rem; text-align: center; }

.mayan { background: linear-gradient(135deg, #0a1a00 0%, #1a3d00 40%, #3d7000 70%, #85c600 100%); }
.mayan::after { content: '🏺⭐'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 3rem; text-align: center; }

.lucky7 { background: linear-gradient(135deg, #1a0a00 0%, #3d2000 40%, #804000 70%, #ffa000 100%); }
.lucky7::after { content: '7️⃣🎰'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 3rem; text-align: center; }

.olympus { background: linear-gradient(135deg, #000a2a 0%, #001050 40%, #002090 70%, #0040e0 100%); }
.olympus::after { content: '⚡🏛️'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 3rem; text-align: center; }

.wolf { background: linear-gradient(135deg, #050010 0%, #100025 40%, #200050 70%, #4400aa 100%); }
.wolf::after { content: '🐺🌙'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 3rem; text-align: center; }

.stampede { background: linear-gradient(135deg, #0a0500 0%, #251000 40%, #502800 70%, #a05000 100%); }
.stampede::after { content: '🦬💥'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 3rem; text-align: center; }

.slot-bg::after { line-height: 1; }

.slot-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.slot-info h3 {
  font-size: 0.95rem;
  color: var(--white);
  margin: 0;
}

.slot-tag {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
}

/* ========================
   CASCADING WINS
   ======================== */
.cascading {
  background: linear-gradient(135deg, #080818, #0f0f30);
  padding: 80px 0;
}

.cascading-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cascading-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep), 0 0 40px rgba(108,99,255,0.2);
}

.cascading-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--gold);
  margin-bottom: 20px;
}

.cascading-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.feature-list { margin-bottom: 30px; display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  padding-left: 8px;
}

/* ========================
   EXCLUSIVES
   ======================== */
.exclusives {
  background: var(--navy2);
  padding: 80px 0;
}

.excl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.excl-card {
  background: linear-gradient(135deg, rgba(108,99,255,0.1), rgba(255,215,0,0.05));
  border: 1px solid rgba(108,99,255,0.25);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}

.excl-card:hover { transform: translateY(-8px); border-color: var(--electric); box-shadow: 0 20px 50px rgba(108,99,255,0.2); }

.excl-icon { font-size: 3rem; margin-bottom: 20px; }
.excl-card h3 { font-size: 1.25rem; color: var(--electric2); margin-bottom: 12px; }
.excl-card p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.7; }

/* ========================
   SECURE
   ======================== */
.secure {
  background: linear-gradient(135deg, #050010, #0a001a, #050010);
  padding: 80px 0;
}

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

.secure-item {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}

.secure-item:hover { transform: translateY(-6px); background: rgba(255,255,255,0.06); border-color: rgba(0,230,118,0.3); }

.secure-icon { font-size: 2.5rem; margin-bottom: 16px; }
.secure-item h3 { font-size: 1rem; color: var(--green); margin-bottom: 10px; }
.secure-item p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ========================
   WINNERS
   ======================== */
.winners {
  background: var(--navy);
  padding: 80px 0;
}

.winners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.winner-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.winner-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold); border-color: rgba(255,215,0,0.35); }

.winner-avatar { font-size: 3.5rem; margin-bottom: 12px; }
.winner-stars { font-size: 1rem; color: var(--gold); margin-bottom: 16px; letter-spacing: 2px; }

.winner-card blockquote p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.winner-card footer {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
}

/* ========================
   STRATEGY
   ======================== */
.strategy {
  background: linear-gradient(180deg, var(--navy2), #0a0a20);
  padding: 80px 0;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.strategy-card {
  background: linear-gradient(135deg, rgba(255,215,0,0.05), rgba(255,215,0,0.02));
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}

.strategy-card:hover { transform: translateY(-8px); border-color: rgba(255,215,0,0.4); box-shadow: var(--shadow-gold); }

.strategy-card h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.strategy-card p { font-size: 0.95rem; color: rgba(255,255,255,0.78); line-height: 1.7; }

/* ========================
   VIP
   ======================== */
.vip {
  background: linear-gradient(135deg, #1a0d00, #2d1800, #1a0d00);
  padding: 80px 0;
}

.vip-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.vip-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #FF8C00);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.vip-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  margin-bottom: 20px;
}

.vip-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ========================
   FAQS
   ======================== */
.faqs {
  background: #0d0d1a;
  padding: 80px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item:hover { border-color: rgba(255,215,0,0.3); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  min-height: 56px;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.faq-question:hover { color: var(--gold); }
.faq-question[aria-expanded="true"] { color: var(--gold); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}

.faq-answer.open { max-height: 400px; }

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* ========================
   FINAL CTA
   ======================== */
.final-cta {
  position: relative;
  background: linear-gradient(135deg, #0a001f 0%, #100028 50%, #0a001f 100%);
  padding: 100px 0;
  overflow: hidden;
}

.final-cta-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.fp {
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  animation: floatFP linear infinite;
}

.fp1 { left: 5%; top: 20%; animation-duration: 7s; animation-delay: 0s; }
.fp2 { left: 92%; top: 30%; animation-duration: 9s; animation-delay: -2s; }
.fp3 { left: 15%; top: 80%; animation-duration: 8s; animation-delay: -4s; }
.fp4 { left: 85%; top: 70%; animation-duration: 6s; animation-delay: -1s; }
.fp5 { left: 45%; top: 10%; animation-duration: 10s; animation-delay: -3s; }
.fp6 { left: 60%; top: 85%; animation-duration: 7.5s; animation-delay: -5s; }
.fp7 { left: 30%; top: 50%; animation-duration: 8.5s; animation-delay: -1.5s; }
.fp8 { left: 75%; top: 15%; animation-duration: 6.5s; animation-delay: -2.5s; }

@keyframes floatFP {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.1); opacity: 0.25; }
  100% { transform: translateY(0) scale(1); }
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.final-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(108,99,255,0.3), rgba(255,215,0,0.15));
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.final-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.final-title .highlight {
  color: var(--gold);
  display: inline;
}

.final-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}

.final-cta-btns { margin-bottom: 30px; }
.final-legal { margin-top: 12px; font-size: 0.8rem; color: var(--gray); }

.final-trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  padding: 6px 14px;
  background: rgba(255,255,255,0.05);
  border-radius: 50px;
  letter-spacing: 0.5px;
}

/* ========================
   SITEMAP LINKS
   ======================== */
.sitemap-links {
  background: var(--navy2);
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.sitemap-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.sitemap-list li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.sitemap-list li a:hover { color: var(--gold); }

/* ========================
   FOOTER
   ======================== */
.site-footer {
  background: #050510;
  padding: 50px 0 30px;
  border-top: 1px solid rgba(255,215,0,0.1);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 500px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-disclaimer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-disclaimer a { color: rgba(255,215,0,0.5); transition: color 0.2s; }
.footer-disclaimer a:hover { color: var(--gold); }

/* ========================
   SCROLL TO TOP
   ======================== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
  box-shadow: 0 4px 20px rgba(255,215,0,0.3);
  -webkit-tap-highlight-color: transparent;
}

.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(255,215,0,0.5); }

/* ========================
   PURCHASE NOTIFICATION
   ======================== */
.notif-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 950;
  transform: translateX(-150%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  max-width: 320px;
  width: calc(100vw - 48px);
}

.notif-popup.show { transform: translateX(0); }

.notif-inner {
  background: rgba(13,13,30,0.97);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

.notif-icon { font-size: 2rem; flex-shrink: 0; }

.notif-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.notif-text strong { font-size: 0.9rem; color: var(--gold); }
.notif-text span { font-size: 0.82rem; color: rgba(255,255,255,0.75); }
.notif-text small { font-size: 0.72rem; color: var(--gray); }

.notif-close {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 4px;
  min-width: 28px;
  min-height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.notif-close:hover { background: rgba(255,255,255,0.1); color: var(--white); }

/* ========================
   EXIT INTENT POPUP
   ======================== */
.exit-overlay, .delay-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
}

.exit-overlay[hidden], .delay-overlay[hidden] { display: none; }

.exit-popup, .delay-popup {
  background: linear-gradient(135deg, #0f0f2a, #1a1a3d);
  border: 2px solid rgba(255,215,0,0.4);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: popupIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 60px rgba(255,215,0,0.1);
}

@keyframes popupIn {
  from { transform: scale(0.8) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.exit-close, .delay-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.exit-close:hover, .delay-close:hover { background: rgba(255,255,255,0.2); }

.exit-icon, .delay-badge {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.delay-badge {
  display: inline-block;
  font-size: 0.8rem;
  background: var(--red);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.exit-popup h2, .delay-popup h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--white);
  margin-bottom: 16px;
}

.exit-popup p, .delay-popup p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 24px;
}

.exit-countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 28px;
}

#exitTimer {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
}

.exit-countdown small { font-size: 0.8rem; color: var(--gray); }

.exit-btn { width: 100%; }

.exit-decline, .delay-dismiss {
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  cursor: pointer;
  margin-top: 16px;
  text-decoration: underline;
  transition: color 0.2s;
  padding: 8px;
  min-height: 44px;
  width: 100%;
}

.exit-decline:hover, .delay-dismiss:hover { color: rgba(255,255,255,0.6); }

.delay-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.05), transparent);
  animation: shine 3s linear infinite;
}

@keyframes shine { 100% { left: 200%; } }

/* ========================
   SCROLL ANIMATIONS
   ======================== */
.fade-in, .fade-in-up, .fade-in-left, .fade-in-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in { transform: translateY(20px); }
.fade-in-up { transform: translateY(40px); }
.fade-in-left { transform: translateX(-50px); }
.fade-in-right { transform: translateX(50px); }

.fade-in.visible, .fade-in-up.visible, .fade-in-left.visible, .fade-in-right.visible {
  opacity: 1;
  transform: translate(0);
}

.delay-1 { transition-delay: 0.15s !important; }
.delay-2 { transition-delay: 0.3s !important; }
.delay-3 { transition-delay: 0.45s !important; }

/* ========================
   REDUCED MOTION
   ======================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .fade-in, .fade-in-up, .fade-in-left, .fade-in-right { opacity: 1; transform: none; }
}

/* ========================
   RESPONSIVE — TABLET
   ======================== */
@media (max-width: 1024px) {
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .secure-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========================
   RESPONSIVE — MOBILE
   ======================== */
@media (max-width: 768px) {
  section { padding: 60px 0; }

  /* Nav mobile */
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10,10,26,0.99);
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
    padding: 40px 20px;
  }

  .nav-menu.open { transform: translateX(0); }

  .nav-link { font-size: 1.3rem; padding: 14px 24px; }

  .nav-cta { display: none; }

  /* Hero mobile */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content { order: 1; }
  .hero-image { order: 2; }

  .hero-badge { font-size: 0.8rem; }

  .countdown-box {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    width: 100%;
  }

  .time-block span { font-size: 2.5rem; }

  .hero-cta-group { text-align: center; }
  .btn-hero { width: 100%; max-width: 360px; }

  .hero-badge-float {
    bottom: -12px;
    right: 12px;
  }

  /* Grids mobile */
  .steps-grid,
  .excl-grid,
  .winners-grid,
  .strategy-grid { grid-template-columns: 1fr; }

  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .secure-grid { grid-template-columns: 1fr 1fr; }

  .cascading-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cascading-image { order: 2; }
  .cascading-text { order: 1; }

  /* Footer mobile */
  .footer-top { flex-direction: column; gap: 16px; }

  /* Popups mobile */
  .exit-popup, .delay-popup {
    padding: 40px 24px 30px;
  }

  .notif-popup { max-width: calc(100vw - 32px); left: 16px; right: 16px; width: auto; }

  /* Final trust row */
  .final-trust-row { gap: 8px; }
  .trust-item { font-size: 0.72rem; }
}

@media (max-width: 480px) {
  .slots-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .secure-grid { grid-template-columns: 1fr; }

  .hero-title { font-size: 2.5rem; }

  .exit-popup, .delay-popup { padding: 40px 20px 28px; }
  .exit-popup h2, .delay-popup h2 { font-size: 1.4rem; }

  .footer-links { gap: 6px 12px; }
}

/* Touch feedback for mobile */
@media (hover: none) {
  .btn:active { transform: scale(0.97); }
  .step-card:active, .slot-card:active, .winner-card:active { transform: scale(0.98); }
}
