/* ============================================
   PULSZ CASINO — styles.css
   Fonts: Montserrat (headings) | Open Sans (body)
   Theme: Dark luxury casino — gold & deep navy
   ============================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --gold:        #FFD700;
  --gold-light:  #FFE566;
  --gold-dark:   #B8960C;
  --navy:        #0A0E1A;
  --navy-2:      #0F1628;
  --navy-3:      #151D35;
  --navy-card:   #111827;
  --accent:      #E63946;
  --accent-2:    #FF6B35;
  --green:       #22C55E;
  --white:       #FFFFFF;
  --text-muted:  #9CA3AF;
  --text-body:   #D1D5DB;
  --border:      rgba(255,215,0,0.15);
  --radius:      14px;
  --radius-lg:   22px;
  --shadow-gold: 0 0 30px rgba(255,215,0,0.25);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --transition:  0.3s ease;
  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Open Sans', sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

/* ---- UTILITIES ---- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 80px 0; }
.highlight { color: var(--gold); }
.highlight-gold { color: var(--gold-light); }

/* ---- SCROLL ANIMATION ---- */
.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-in-section, .animate-fadeup { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ===== NAVBAR ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(10,14,26,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
}
.navbar { width: 100%; }
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo img { height: 40px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-body);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--gold); background: rgba(255,215,0,0.08); }
.btn-nav-cta {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 10px 20px;
  border-radius: 50px;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 48px;
  display: flex;
  align-items: center;
}
.btn-nav-cta:hover { transform: scale(1.05); box-shadow: var(--shadow-gold); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #03081A 0%, #0A0E1A 40%, #0D1530 70%, #0A0E1A 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 40px;
}
.hero-bg-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,215,0,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 1.05;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.hero-title-highlight {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  animation: shimmer 3s linear infinite;
  background-size: 200%;
}
@keyframes shimmer { 0%{background-position:0%} 100%{background-position:200%} }
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  color: var(--text-body);
  max-width: 620px;
  margin: 0 auto 30px;
  line-height: 1.7;
}
.hero-coins {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-coin-badge {
  background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,215,0,0.05));
  border: 1px solid rgba(255,215,0,0.4);
  border-radius: var(--radius);
  padding: 14px 24px;
  text-align: center;
}
.hero-coin-alt { border-color: rgba(230,57,70,0.5); background: linear-gradient(135deg, rgba(230,57,70,0.12), rgba(230,57,70,0.04)); }
.coin-amount { display: block; font-family: var(--font-head); font-weight: 900; font-size: 2rem; color: var(--gold); line-height: 1; }
.hero-coin-alt .coin-amount { color: var(--accent); }
.coin-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }
.hero-plus { font-family: var(--font-head); font-weight: 900; font-size: 2rem; color: var(--text-muted); }
.hero-cta { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 28px; }
.btn-hero-primary {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  background: linear-gradient(135deg, var(--gold), #FFB800, var(--gold-dark));
  color: var(--navy);
  padding: 18px 38px;
  border-radius: 50px;
  min-height: 58px;
  box-shadow: 0 6px 30px rgba(255,215,0,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-btn 2.5s ease-in-out infinite;
}
.btn-hero-primary:hover { transform: scale(1.05); box-shadow: 0 10px 40px rgba(255,215,0,0.6); }
@keyframes pulse-btn {
  0%,100% { box-shadow: 0 6px 30px rgba(255,215,0,0.4); }
  50% { box-shadow: 0 6px 40px rgba(255,215,0,0.7); }
}
.btn-hero-secondary {
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem;
  color: var(--text-muted); border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px; transition: color var(--transition);
}
.btn-hero-secondary:hover { color: var(--gold); }
.hero-timer {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 22px; flex-wrap: wrap;
}
.timer-label { font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; color: var(--accent); letter-spacing: 0.5px; }
.timer-display { display: flex; align-items: center; gap: 6px; }
.timer-unit { display: flex; flex-direction: column; align-items: center; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 6px 14px; }
.timer-num { font-family: var(--font-head); font-weight: 900; font-size: 1.5rem; color: var(--gold); line-height: 1; }
.timer-sub { font-size: 0.62rem; color: var(--text-muted); font-weight: 600; letter-spacing: 1px; }
.timer-colon { font-family: var(--font-head); font-weight: 900; font-size: 1.6rem; color: var(--gold); animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.hero-trust { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; font-size: 0.82rem; color: var(--text-muted); font-weight: 600; margin-bottom: 10px; }
.hero-slots-row {
  position: relative; z-index: 2;
  display: flex; align-items: flex-end; justify-content: center;
  gap: 20px; margin-top: 30px; width: 100%;
  max-width: 900px;
}
.hero-slot-img { width: clamp(100px, 18%, 160px); border-radius: var(--radius); box-shadow: var(--shadow-card); }
.hero-slot-center { width: clamp(200px, 45%, 420px); border-radius: var(--radius-lg); box-shadow: 0 12px 50px rgba(255,215,0,0.2); }
.float-anim { animation: floatY 4s ease-in-out infinite; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

/* ---- ANIMATE ON LOAD ---- */
.animate-fadeup {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpIn 0.7s ease forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes fadeUpIn { to { opacity:1; transform:translateY(0); } }

/* ===== STATS TICKER ===== */
.stats-ticker { background: linear-gradient(90deg, var(--gold-dark), #A07800, var(--gold-dark)); overflow: hidden; padding: 14px 0; }
.ticker-wrap { overflow: hidden; }
.ticker-track {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.ticker-track span { font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; color: var(--navy); letter-spacing: 0.5px; flex-shrink: 0; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== SECTION SHARED ===== */
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.25);
  padding: 6px 16px; border-radius: 50px; margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  color: var(--white); line-height: 1.2; margin-bottom: 16px;
}
.section-desc { color: var(--text-muted); font-size: 1rem; max-width: 580px; margin: 0 auto; }
.section-body { color: var(--text-body); margin-bottom: 16px; font-size: 0.97rem; }
.subsection-title { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: var(--white); margin-bottom: 28px; text-align: center; }

/* ===== SECTION GRID ===== */
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1rem;
  background: linear-gradient(135deg, var(--gold), #E6B800);
  color: var(--navy); padding: 16px 34px; border-radius: 50px;
  min-height: 54px; transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(255,215,0,0.3);
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(255,215,0,0.5); }
.btn-primary:active { transform: scale(0.98); }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--navy-2); }
.about-text .feature-list { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.about-text .feature-list li { font-size: 0.95rem; color: var(--text-body); }
.image-glow-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.image-glow-wrap::before {
  content: '';
  position: absolute; inset: -2px;
  background: linear-gradient(135deg, var(--gold), transparent, var(--gold-dark));
  border-radius: inherit; z-index: 0;
}
.section-img { position: relative; z-index: 1; border-radius: calc(var(--radius-lg) - 2px); width: 100%; }
.img-badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: var(--accent); color: white;
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  padding: 6px 14px; border-radius: 50px;
}
.gold-glow::before { background: linear-gradient(135deg, var(--gold-dark), rgba(255,215,0,0.3), transparent); }

/* ===== GAMES SECTION ===== */
.games-section { background: var(--navy); }
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.game-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; display: block;
  transition: transform var(--transition), box-shadow var(--transition);
  aspect-ratio: 1 / 1;
}
.game-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.game-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.game-card:hover img { transform: scale(1.08); }
.game-card:active { transform: scale(0.98); }
.game-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, transparent 60%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 16px;
  opacity: 0; transition: opacity var(--transition);
}
.game-card:hover .game-overlay { opacity: 1; }
.game-overlay span {
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  color: var(--white); background: var(--gold); color: var(--navy);
  padding: 6px 20px; border-radius: 50px;
}
.game-tag {
  position: absolute; top: 10px; left: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.68rem;
  padding: 4px 10px; border-radius: 50px; letter-spacing: 0.5px;
}
.game-tag.hot { background: var(--accent); color: white; }
.game-tag.new { background: var(--green); color: white; }
.game-tag.jackpot { background: linear-gradient(90deg, var(--gold-dark), var(--gold)); color: var(--navy); }
.games-cta { text-align: center; margin-bottom: 60px; }
.game-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.game-type-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.game-type-card:hover { transform: translateY(-4px); border-color: rgba(255,215,0,0.4); box-shadow: var(--shadow-gold); }
.game-type-icon { font-size: 2.2rem; margin-bottom: 14px; }
.game-type-card h4 { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 0.95rem; margin-bottom: 8px; }
.game-type-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ===== HOW IT WORKS ===== */
.how-section { background: var(--navy-2); }
.steps-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.step-card {
  flex: 1;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.step-num {
  font-family: var(--font-head); font-weight: 900;
  font-size: 3.5rem; color: rgba(255,215,0,0.1);
  position: absolute; top: 16px; right: 20px; line-height: 1;
}
.step-icon { font-size: 2.5rem; margin-bottom: 16px; }
.step-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--white); margin-bottom: 10px; }
.step-card p { font-size: 0.9rem; color: var(--text-muted); }
.step-connector {
  width: 50px; flex-shrink: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,215,0,0.3), rgba(255,215,0,0.6), rgba(255,215,0,0.3));
  position: relative;
}
.step-connector::after {
  content: '▶'; position: absolute; right: -10px; top: 50%;
  transform: translateY(-50%); color: rgba(255,215,0,0.5); font-size: 0.9rem;
}
.steps-cta { text-align: center; }

/* ===== BONUSES ===== */
.bonuses-section { background: var(--navy-3); }
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bonus-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.bonus-featured {
  background: linear-gradient(145deg, #1A1200, #0F1628);
  border-color: rgba(255,215,0,0.5);
  box-shadow: 0 0 30px rgba(255,215,0,0.15);
}
.bonus-ribbon {
  position: absolute; top: 0; left: 0; right: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: var(--navy); font-family: var(--font-head); font-weight: 700;
  font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px; text-align: center;
}
.bonus-icon { font-size: 2.4rem; margin: 20px 0 14px; }
.bonus-card h3 { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.bonus-amount { font-family: var(--font-head); font-weight: 900; font-size: 2.2rem; color: var(--gold); line-height: 1; }
.bonus-unit { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; margin-bottom: 12px; }
.bonus-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.btn-bonus {
  display: block; font-family: var(--font-head); font-weight: 700; font-size: 0.88rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy); padding: 12px 20px; border-radius: 50px;
  min-height: 48px; display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-bonus:hover { transform: scale(1.04); box-shadow: 0 4px 20px rgba(255,215,0,0.4); }
.btn-bonus-outline {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  border: 1.5px solid rgba(255,215,0,0.4); color: var(--gold);
  padding: 12px 20px; border-radius: 50px; min-height: 48px;
  transition: background var(--transition), border-color var(--transition);
}
.btn-bonus-outline:hover { background: rgba(255,215,0,0.1); border-color: var(--gold); }

/* ===== LEGAL SECTION ===== */
.legal-section { background: var(--navy-2); }
.legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.legal-badges { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.legal-badge {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px;
}
.lbadge-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.legal-badge strong { display: block; font-family: var(--font-head); font-size: 0.9rem; color: var(--white); margin-bottom: 3px; }
.legal-badge p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ===== MOBILE SECTION ===== */
.mobile-section { background: var(--navy); }
.phone-mockup {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid var(--border);
}
.phone-mockup img { width: 100%; }
.mobile-features { display: flex; flex-direction: column; gap: 12px; margin: 20px 0 28px; }
.mobile-feat { font-size: 0.93rem; color: var(--text-body); padding: 12px 16px; background: rgba(255,255,255,0.03); border-radius: 10px; border-left: 3px solid var(--gold); }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--navy-3); }
.overall-rating {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 12px; flex-wrap: wrap;
}
.rating-stars { font-size: 1.3rem; }
.rating-number { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--gold); }
.rating-count { font-size: 0.85rem; color: var(--text-muted); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column; gap: 20px;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.review-card-featured { border-color: rgba(255,215,0,0.4); box-shadow: 0 0 20px rgba(255,215,0,0.1); }
.review-stars { font-size: 1.1rem; }
.review-text { font-size: 0.92rem; color: var(--text-body); font-style: italic; line-height: 1.7; flex: 1; }
.review-author { display: flex; gap: 14px; align-items: center; }
.review-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,215,0,0.3); }
.review-author strong { display: block; font-family: var(--font-head); font-size: 0.9rem; color: var(--white); }
.review-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ===== VIP SECTION ===== */
.vip-section { background: var(--navy); }
.vip-tiers { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-bottom: 40px; }
.vip-tier {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 12px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.vip-tier:hover { transform: translateY(-6px); }
.vip-tier.royal { border-color: rgba(255,215,0,0.5); box-shadow: 0 0 20px rgba(255,215,0,0.15); }
.tier-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.vip-tier h4 { font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; color: var(--white); margin-bottom: 6px; }
.vip-tier p { font-size: 0.74rem; color: var(--text-muted); }
.vip-cta { text-align: center; }

/* ===== FAQ ===== */
.faq-section { background: var(--navy-2); }
.faq-container { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--navy-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px; text-align: left; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  color: var(--white); min-height: 64px;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,215,0,0.05); }
.faq-icon { font-size: 1.4rem; color: var(--gold); font-weight: 700; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0 24px; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: 0.92rem; color: var(--text-body); line-height: 1.7; }

/* ===== FINAL CTA ===== */
.cta-final {
  background: linear-gradient(160deg, #03081A 0%, #0D1530 50%, #03081A 100%);
  position: relative; overflow: hidden; text-align: center;
}
.cta-particles { position: absolute; inset: 0; pointer-events: none; }
.cta-content { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.cta-coins-anim { margin-bottom: 20px; display: flex; justify-content: center; gap: 24px; }
.coin-float {
  font-size: 2rem; display: inline-block;
  animation: floatY 3s ease-in-out infinite;
}
.c1{animation-delay:0s} .c2{animation-delay:0.4s} .c3{animation-delay:0.8s} .c4{animation-delay:1.2s} .c5{animation-delay:1.6s}
.cta-title { font-family: var(--font-head); font-weight: 900; font-size: clamp(1.9rem, 5vw, 3rem); color: var(--white); margin-bottom: 18px; line-height: 1.2; }
.cta-subtitle { font-size: 1.05rem; color: var(--text-body); margin-bottom: 28px; }
.cta-bonus-box {
  background: rgba(255,215,0,0.08); border: 1px solid rgba(255,215,0,0.3);
  border-radius: var(--radius); padding: 16px 24px; margin-bottom: 32px;
  font-size: 0.92rem; color: var(--gold-light);
}
.btn-cta-mega {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  background: linear-gradient(135deg, var(--gold), #E6B800, var(--gold-dark));
  color: var(--navy); padding: 20px 44px; border-radius: 50px;
  min-height: 64px; box-shadow: 0 8px 40px rgba(255,215,0,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  margin-bottom: 24px;
  animation: pulse-btn 2.5s ease-in-out infinite;
}
.btn-cta-mega:hover { transform: scale(1.04); box-shadow: 0 12px 50px rgba(255,215,0,0.6); }
.cta-trust { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; font-size: 0.82rem; color: var(--text-muted); font-weight: 600; margin-bottom: 36px; }
.internal-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; padding-top: 24px; border-top: 1px solid var(--border); }
.internal-links a { font-size: 0.82rem; color: var(--gold); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; transition: color var(--transition); }
.internal-links a:hover { color: var(--white); }

/* ===== FOOTER ===== */
.site-footer { background: #050810; padding: 60px 0 30px; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-links h4 { font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact h4 { font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; color: var(--white); margin-bottom: 16px; text-transform: uppercase; }
.footer-contact p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; }
.footer-contact a { color: var(--gold); }
.btn-footer-cta {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy); padding: 12px 24px; border-radius: 50px;
  min-height: 48px; margin-top: 16px;
  transition: transform var(--transition);
}
.btn-footer-cta:hover { transform: scale(1.04); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; }
.footer-disclaimer { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }
.footer-copy a { color: var(--gold); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed; bottom: 90px; right: 20px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy); font-size: 1.3rem; font-weight: 900;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  cursor: pointer;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }

/* ===== SALES NOTIFICATION POPUP ===== */
.sales-popup {
  position: fixed; bottom: 20px; left: 20px; z-index: 900;
  background: var(--navy-card);
  border: 1px solid rgba(255,215,0,0.3);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 36px 14px 14px;
  display: flex; gap: 12px; align-items: center;
  max-width: 320px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  transform: translateX(-400px);
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
}
.sales-popup.show { transform: translateX(0); }
.sales-popup img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.sales-popup-text { flex: 1; }
.sales-popup-text strong { display: block; font-family: var(--font-head); font-size: 0.85rem; color: var(--white); }
.sales-popup-text span { font-size: 0.8rem; color: var(--text-muted); }
.sales-popup-close {
  position: absolute; top: 8px; right: 8px;
  font-size: 0.75rem; color: var(--text-muted); cursor: pointer;
  padding: 4px 6px;
  transition: color var(--transition);
}
.sales-popup-close:hover { color: var(--white); }

/* ===== EXIT INTENT POPUP ===== */
.exit-overlay, .delay-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.exit-overlay.show, .delay-overlay.show { opacity: 1; pointer-events: all; }
.exit-popup {
  background: linear-gradient(145deg, #0D1530, #050810);
  border: 1px solid rgba(255,215,0,0.4);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 520px; width: 100%;
  position: relative; text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 40px rgba(255,215,0,0.1);
  animation: popIn 0.4s cubic-bezier(.22,1,.36,1);
}
@keyframes popIn { from{transform:scale(0.85);opacity:0} to{transform:scale(1);opacity:1} }
.exit-close {
  position: absolute; top: 14px; right: 16px;
  font-size: 1.1rem; color: var(--text-muted); cursor: pointer;
  padding: 6px; transition: color var(--transition);
  min-width: 36px; min-height: 36px; display: flex; align-items: center; justify-content: center;
}
.exit-close:hover { color: var(--white); }
.exit-badge {
  display: inline-block;
  background: var(--accent); color: white;
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 20px; letter-spacing: 0.5px;
}
.exit-title { font-family: var(--font-head); font-weight: 900; font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--white); margin-bottom: 14px; line-height: 1.2; }
.exit-title span { color: var(--gold); }
.exit-body { font-size: 0.95rem; color: var(--text-body); margin-bottom: 24px; }
.exit-offer { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.exit-offer-item { background: rgba(255,215,0,0.08); border: 1px solid rgba(255,215,0,0.25); border-radius: var(--radius); padding: 10px 16px; font-size: 0.85rem; color: var(--gold-light); }
.btn-exit-cta {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy); padding: 16px 32px; border-radius: 50px;
  min-height: 56px; margin-bottom: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 24px rgba(255,215,0,0.35);
}
.btn-exit-cta:hover { transform: scale(1.04); box-shadow: 0 8px 34px rgba(255,215,0,0.55); }
.exit-decline { font-size: 0.78rem; color: var(--text-muted); cursor: pointer; text-decoration: underline; background: none; border: none; padding: 6px; min-height: 36px; }
.exit-decline:hover { color: var(--white); }
.delay-popup {
  background: var(--navy-card);
  border: 1px solid rgba(255,215,0,0.35);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  max-width: 380px; width: 100%;
  position: relative; text-align: center;
  animation: popIn 0.4s cubic-bezier(.22,1,.36,1);
}
.delay-tag { display: inline-block; background: rgba(255,215,0,0.1); color: var(--gold); font-family: var(--font-head); font-weight: 700; font-size: 0.78rem; padding: 6px 14px; border-radius: 50px; margin-bottom: 16px; }
.delay-popup h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--white); margin-bottom: 10px; }
.delay-popup p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 22px; }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bonuses-grid { grid-template-columns: repeat(2, 1fr); }
  .game-type-grid { grid-template-columns: repeat(2, 1fr); }
  .vip-tiers { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-grid { grid-template-columns: 1fr; gap: 36px; }
  .reverse-mobile { direction: ltr; }
  .reverse-mobile > *:first-child { order: 2; }
  .reverse-mobile > *:last-child { order: 1; }
  .nav-links { display: none; flex-direction: column; gap: 4px; position: absolute; top: 70px; left: 0; right: 0; background: rgba(10,14,26,0.99); padding: 16px 20px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .btn-nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-container { position: relative; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .game-type-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { flex-direction: column; gap: 20px; }
  .step-connector { width: 2px; height: 30px; }
  .step-connector::after { content: '▼'; right: 50%; top: unset; bottom: -12px; transform: translateX(50%); }
  .bonuses-grid { grid-template-columns: 1fr; }
  .legal-grid { grid-template-columns: 1fr; gap: 36px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .vip-tiers { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .sales-popup { max-width: calc(100vw - 40px); left: 20px; right: 20px; }
  .hero-slots-row { gap: 10px; }
  .hero-slot-img { width: 80px; }
  .hero-slot-center { width: 55%; }
  .timer-num { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .hero { padding: 90px 16px 30px; }
  .hero-title { font-size: 2.4rem; }
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .game-type-grid { grid-template-columns: 1fr; }
  .vip-tiers { grid-template-columns: repeat(3, 1fr); }
  .exit-popup { padding: 30px 20px; }
  .exit-offer { flex-direction: column; gap: 10px; }
  .cta-trust { flex-direction: column; gap: 8px; align-items: center; }
  .hero-trust { flex-direction: column; gap: 6px; align-items: center; }
  .hero-coins { flex-direction: column; gap: 12px; }
  .overall-rating { flex-direction: column; }
}
