/* ====================================
   MONOPOLY CASINO — styles.css
   Dark luxury casino theme
   Fonts: Montserrat Bold (headings), Open Sans (body)
==================================== */

/* CSS Variables */
:root {
  --gold: #F5C842;
  --gold-dark: #C9971C;
  --gold-light: #FFE47A;
  --red: #E8292B;
  --red-dark: #B01E20;
  --green: #1DB954;
  --dark: #0A0A0F;
  --dark-2: #111118;
  --dark-3: #18181F;
  --dark-4: #222230;
  --dark-5: #2A2A3A;
  --text: #E8E8F0;
  --text-muted: #9090A8;
  --border: rgba(245,200,66,0.15);
  --shadow-gold: 0 0 30px rgba(245,200,66,0.25);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.5);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.gold-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* SECTION */
.section {
  padding: 80px 0;
  position: relative;
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-header p { color: var(--text-muted); font-size: 1.05rem; margin-top: 16px; }
.section-tag {
  display: inline-block;
  background: rgba(245,200,66,0.1);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

/* ====== BUTTONS ====== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 52px;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 0 40px rgba(245,200,66,0.5); }
.btn-primary:active { transform: scale(0.98); }
.btn-primary.btn-xl { font-size: 1.15rem; padding: 20px 48px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  min-height: 52px;
  text-decoration: none;
}
.btn-outline:hover { background: var(--gold); color: #000; transform: scale(1.05); }

.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
  text-decoration: none;
}
.btn-outline-sm:hover { background: var(--gold); color: #000; }

.btn-sm {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
  text-decoration: none;
}
.btn-sm:hover { transform: scale(1.05); box-shadow: var(--shadow-gold); }

.pulse-btn { animation: pulse 2.5s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,200,66,0.4); }
  50% { box-shadow: 0 0 0 16px rgba(245,200,66,0); }
}

/* ====== NAVBAR ====== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(10,10,15,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
}
.navbar { padding: 0; }
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav-brand span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--text-muted);
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.nav-link:hover { color: var(--gold); background: rgba(245,200,66,0.1); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 50px;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: var(--transition);
  margin-left: 8px;
}
.nav-cta:hover { transform: scale(1.05); box-shadow: var(--shadow-gold); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  min-width: 48px; min-height: 48px;
  align-items: center; justify-content: center;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ====== HERO ====== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 20px 60px;
  background: var(--dark);
}
.hero-bg-anim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245,200,66,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(232,41,43,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 80%, rgba(29,185,84,0.04) 0%, transparent 50%);
  animation: heroBgShift 8s ease-in-out infinite alternate;
}
@keyframes heroBgShift {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-particles::before, .hero-particles::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,200,66,0.05) 0%, transparent 70%);
  animation: float1 6s ease-in-out infinite;
}
.hero-particles::before { top: 10%; left: 10%; }
.hero-particles::after { bottom: 20%; right: 15%; animation-duration: 8s; animation-delay: -3s; }
@keyframes float1 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.1); }
}

.hero-content {
  max-width: 620px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,200,66,0.12);
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-subtitle strong { color: var(--text); }

/* Countdown */
.countdown-wrapper {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.countdown-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.countdown-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 16px;
}
.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
}
.time-block span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.time-block small {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  font-weight: 700;
}
.time-sep {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  padding-bottom: 6px;
}

/* Bonus card */
.hero-bonus-card {
  background: linear-gradient(135deg, rgba(245,200,66,0.08), rgba(245,200,66,0.03));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
}
.bonus-highlight {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gold);
}
.bonus-sub { color: var(--text-muted); font-size: 0.9rem; margin-top: 4px; }

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }

/* Floating cards */
.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  z-index: 1;
}
.floating-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  font-size: 2rem;
  width: 110px;
  animation: floatCard 3s ease-in-out infinite;
  transition: var(--transition);
  color: var(--text);
}
.floating-card small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: 'Open Sans', sans-serif;
  margin-top: 6px;
  font-weight: 600;
}
.floating-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.card-1 { animation-delay: 0s; }
.card-2 { animation-delay: 0.5s; }
.card-3 { animation-delay: 1s; }
.card-4 { animation-delay: 1.5s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ====== TRUST BAR ====== */
.trust-bar {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 20px;
}
.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 40px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-item img { width: 32px; height: 32px; object-fit: contain; }
.trust-icon { font-size: 1.5rem; }

/* ====== GAMES SECTION ====== */
.games-section { background: var(--dark-2); }
.game-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.tab-btn {
  background: var(--dark-4);
  border: 1.5px solid transparent;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  min-height: 48px;
}
.tab-btn:hover { border-color: var(--border); color: var(--text); }
.tab-btn.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
  border-color: transparent;
}
.game-tab-panel { display: none; }
.game-tab-panel.active { display: block; }
.games-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.game-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.game-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}
.game-card-img {
  background: linear-gradient(135deg, var(--dark-4), var(--dark-5));
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  border-bottom: 1px solid var(--border);
}
.game-card-body { padding: 20px; }
.game-card-body h3 { font-size: 1rem; margin-bottom: 8px; }
.game-card-body p { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 16px; }
.section-cta { text-align: center; margin-top: 48px; }

/* ====== ABOUT SECTION ====== */
.about-section { background: var(--dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-content .section-tag { margin-bottom: 16px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--text-muted); margin-bottom: 16px; }
.about-content p strong { color: var(--text); }
.about-features { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.about-features li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-muted); font-size: 0.95rem; }
.about-features li strong { color: var(--text); }
.about-visual { position: relative; }
.about-img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
}
.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  line-height: 1.4;
}
.about-badge small { display: block; font-size: 0.75rem; font-weight: 600; opacity: 0.8; }

/* ====== HOW IT WORKS ====== */
.how-section { background: var(--dark-2); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.1em;
}
.step-icon { font-size: 2.8rem; margin-bottom: 16px; }
.step-card h3 { margin-bottom: 12px; }
.step-card p { color: var(--text-muted); font-size: 0.95rem; }
.step-card p strong { color: var(--text); }

/* ====== REVIEWS ====== */
.reviews-section { background: var(--dark); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s, border-color 0.3s;
}
.review-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.review-stars { font-size: 1.2rem; margin-bottom: 16px; }
.review-text {
  color: var(--text-muted);
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.review-text strong { color: var(--text); }
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.9rem; }
.review-author small { color: var(--text-muted); font-size: 0.8rem; }
.rating-summary {
  text-align: center;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.rating-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
}
.rating-stars { font-size: 1.5rem; margin: 8px 0; }
.rating-label { color: var(--text-muted); }
.rating-label strong { color: var(--text); }

/* ====== BONUSES ====== */
.bonuses-section { background: var(--dark-2); }
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.bonus-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.bonus-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(245,200,66,0.06), var(--dark-3));
}
.bonus-card-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.bonus-icon { font-size: 2.5rem; margin-bottom: 14px; }
.bonus-card h3 { margin-bottom: 8px; }
.bonus-amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.bonus-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.bonus-card p strong { color: var(--text); }

/* ====== REWARDS ====== */
.rewards-section { background: var(--dark); }
.rewards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.rewards-content .section-tag { margin-bottom: 16px; }
.rewards-content h2 { margin-bottom: 20px; }
.rewards-content p { color: var(--text-muted); margin-bottom: 24px; }
.rewards-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.rewards-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-muted); }
.rewards-list li strong { color: var(--text); }
.rewards-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.rewards-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
}
.rewards-card-top {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.rewards-balance { margin-bottom: 20px; }
.balance-label { display: block; color: var(--text-muted); font-size: 0.8rem; font-weight: 600; margin-bottom: 6px; }
.balance-amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--gold);
}
.rewards-progress { margin-bottom: 20px; }
.progress-label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 8px; font-weight: 600; }
.progress-bar {
  background: var(--dark-5);
  border-radius: 50px;
  height: 8px;
  overflow: hidden;
  margin-bottom: 6px;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 50px;
  transition: width 1s ease;
}
.progress-sub { font-size: 0.75rem; color: var(--text-muted); }
.rewards-tiers { display: flex; gap: 10px; flex-wrap: wrap; }
.tier {
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid var(--dark-5);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.tier.active { border-color: var(--gold); color: var(--gold); background: rgba(245,200,66,0.08); }

/* ====== FAQS ====== */
.faqs-section { background: var(--dark-2); }
.faqs-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--gold); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  min-height: 64px;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.faq-answer p strong { color: var(--text); }
.faq-item.open .faq-answer { max-height: 500px; }

/* ====== FINAL CTA SECTION ====== */
.final-cta-section {
  padding: 100px 0;
  background: var(--dark);
  overflow: hidden;
  position: relative;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(245,200,66,0.07) 0%, transparent 70%),
    radial-gradient(ellipse at 0% 100%, rgba(232,41,43,0.05) 0%, transparent 50%);
}
.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.final-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.final-cta-content h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 20px; }
.final-cta-content > p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 36px; }
.final-cta-content > p strong { color: var(--text); }

.final-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.final-cd-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
  text-transform: uppercase;
}
.final-cd-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 20px;
}
.fcd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}
.fcd-block span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.fcd-block small {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  font-weight: 700;
}
.fcd-sep {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--gold);
  padding-bottom: 6px;
}

.final-offer-cards {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.offer-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  min-width: 130px;
  transition: border-color 0.3s;
}
.offer-card:hover { border-color: var(--gold); }
.offer-icon { font-size: 2rem; margin-bottom: 8px; }
.offer-card strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.95rem; margin-bottom: 4px; }
.offer-card small { color: var(--text-muted); font-size: 0.8rem; }
.final-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.final-disclaimer {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Animated chips */
.casino-chips-animation {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.chip {
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  animation: chipFloat 6s ease-in-out infinite;
}
.chip-1 { top: 10%; left: 5%; animation-delay: 0s; }
.chip-2 { top: 30%; right: 8%; animation-delay: 1s; }
.chip-3 { bottom: 20%; left: 12%; animation-delay: 2s; }
.chip-4 { top: 60%; right: 5%; animation-delay: 3s; }
.chip-5 { bottom: 10%; right: 15%; animation-delay: 0.5s; }
.chip-6 { top: 15%; right: 20%; animation-delay: 1.5s; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(10deg); }
  66% { transform: translateY(10px) rotate(-5deg); }
}

/* ====== FOOTER ====== */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-logo span { color: var(--gold); }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social { display: flex; flex-direction: column; gap: 8px; }
.footer-social a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold); }
.footer-links h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 8px; }
.footer-disclaimer { color: #666; font-size: 0.78rem !important; margin-top: 12px !important; }

/* ====== SCROLL TOP ====== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  z-index: 900;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}
.scroll-top.visible { transform: translateY(0); opacity: 1; }
.scroll-top:hover { transform: scale(1.1); box-shadow: var(--shadow-gold); }

/* ====== SALES POPUP ====== */
.sales-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 340px;
  box-shadow: var(--shadow-card);
  z-index: 800;
  transform: translateX(-400px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.sales-popup.show { transform: translateX(0); opacity: 1; }
.sales-popup-content { display: flex; align-items: center; gap: 12px; flex: 1; }
.sales-popup-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--dark-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.sales-popup-text { font-size: 0.82rem; color: var(--text-muted); flex: 1; }
.sales-popup-text strong { color: var(--text); display: block; }
.sales-popup-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
  transition: color 0.2s;
  align-self: flex-start;
}
.sales-popup-close:hover { color: var(--text); }

/* ====== EXIT INTENT POPUP ====== */
.exit-popup-overlay, .delay-popup-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;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.exit-popup-overlay.show, .delay-popup-overlay.show {
  opacity: 1;
  pointer-events: all;
}
.exit-popup, .delay-popup {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 0 60px rgba(245,200,66,0.15);
  transform: scale(0.9);
  transition: transform 0.3s;
}
.exit-popup-overlay.show .exit-popup,
.delay-popup-overlay.show .delay-popup { transform: scale(1); }
.exit-popup-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.exit-popup h2 { font-size: 1.8rem; margin-bottom: 14px; }
.exit-popup p, .delay-popup p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem; }
.exit-popup p strong, .delay-popup p strong { color: var(--text); }
.exit-popup-offer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.exit-offer-item {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: left;
}
.exit-decline, .delay-decline {
  display: block;
  margin: 16px auto 0;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}
.exit-decline:hover, .delay-decline:hover { color: var(--text); }
.exit-popup-close, .delay-popup-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1rem;
  transition: color 0.2s, background 0.2s;
}
.exit-popup-close:hover, .delay-popup-close:hover { color: #fff; background: var(--dark-5); }

.delay-popup-icon { font-size: 3rem; margin-bottom: 16px; }
.delay-popup h3 { font-size: 1.5rem; margin-bottom: 12px; }

/* ====== ANIMATIONS ====== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
.delay-5 { animation-delay: 0.7s; }
.delay-6 { animation-delay: 0.85s; }
.delay-7 { animation-delay: 1s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====== RESPONSIVE ====== */

/* Tablet */
@media (max-width: 992px) {
  .hero { flex-direction: column; text-align: center; padding: 120px 20px 60px; }
  .hero-content { max-width: 100%; }
  .hero-cta-group { justify-content: center; }
  .hero-trust { justify-content: center; }
  .countdown-wrapper { justify-content: center; }
  .hero-visual { display: none; }

  .about-grid, .rewards-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--dark-2);
    flex-direction: column;
    padding: 20px;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 14px 16px; border-radius: var(--radius-sm); }
  .nav-cta { margin: 8px 0 0; justify-content: center; }

  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }

  .games-cards { grid-template-columns: 1fr; }
  .game-tabs { gap: 6px; }
  .tab-btn { font-size: 0.78rem; padding: 10px 14px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  .final-offer-cards { gap: 10px; }
  .offer-card { min-width: 100px; padding: 14px; }

  .exit-popup, .delay-popup { padding: 32px 24px; }
  .exit-popup h2 { font-size: 1.4rem; }

  .sales-popup { left: 12px; right: 12px; bottom: 80px; max-width: none; }

  .scroll-top { bottom: 16px; right: 16px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group a { text-align: center; justify-content: center; }
  .btn-primary.btn-xl { padding: 16px 28px; font-size: 1rem; }
  .final-cta-buttons { flex-direction: column; align-items: stretch; }
  .final-cta-buttons a { text-align: center; }
  .countdown-wrapper { flex-direction: column; gap: 10px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .pulse-btn { animation: none; }
  .floating-card { animation: none; }
}
