/* ===========================
   CAFE CASINO — styles.css
   =========================== */

/* ---- CSS Variables ---- */
:root {
  --gold: #f5c518;
  --gold-dark: #d4a017;
  --red: #e8371b;
  --red-dark: #c0281b;
  --dark: #0a0a0f;
  --dark-2: #12121c;
  --dark-3: #1a1a2e;
  --dark-4: #16213e;
  --surface: #1e1e30;
  --surface-2: #262640;
  --text: #e8e8f0;
  --text-muted: #9090b0;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 30px rgba(245,197,24,0.3);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::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(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

.text-center { text-align: center; }
.mt-4 { margin-top: 2.5rem; }
.text-gold { color: var(--gold); }

/* ===========================
   NAVBAR
   =========================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}

#navbar.scrolled {
  background: rgba(10,10,15,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

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

.nav-logo img { height: 40px; width: auto; }

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

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--gold);
  background: rgba(245,197,24,0.08);
}

.nav-cta {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a0f;
  padding: 10px 20px;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}

.nav-toggle:hover { background: rgba(255,255,255,0.1); }

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

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  min-height: 48px;
  padding: 12px 28px;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0a0f;
  box-shadow: 0 4px 20px rgba(245,197,24,0.35);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 35px rgba(245,197,24,0.55);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,197,24,0.08);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-xl { padding: 20px 48px; font-size: 1.2rem; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(245,197,24,0.35); }
  50% { box-shadow: 0 8px 50px rgba(245,197,24,0.75), 0 0 80px rgba(245,197,24,0.3); }
}

.pulse-btn { animation: pulse-glow 2.5s ease-in-out infinite; }
.mega-pulse { animation: pulse-glow 2s ease-in-out infinite; }

/* ===========================
   SECTIONS
   =========================== */
.section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(245,197,24,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(232,55,27,0.12) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0f 0%, #12121c 100%);
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,197,24,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}

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

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.3);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-highlight {
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: clamp(1.4rem, 4vw, 2.8rem);
  color: rgba(255,255,255,0.9);
  display: block;
  font-style: normal;
}

.hero-sub em {
  color: var(--gold);
  font-style: normal;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

/* Timer */
.hero-timer {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: var(--radius);
  padding: 16px 28px;
  margin-bottom: 32px;
}

.timer-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

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

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(245,197,24,0.1);
  border-radius: 8px;
  padding: 8px 16px;
  min-width: 64px;
}

.timer-unit span {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.timer-unit small {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timer-sep {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  animation: blink 1s step-end infinite;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.trust-item img { width: 28px; height: 28px; object-fit: contain; filter: brightness(1.2); }

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 3px solid rgba(245,197,24,0.5);
  border-bottom: 3px solid rgba(245,197,24,0.5);
  transform: rotate(45deg);
  animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce { 0%, 100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(8px); } }

/* ===========================
   ANIMATIONS
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.75s; }

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* Particles */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
  background: var(--dark-2);
}

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

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

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

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,197,24,0.3);
}

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===========================
   GAMES SECTION
   =========================== */
.games-section {
  background: var(--dark-3);
}

.games-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.tab-btn {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  transition: all var(--transition);
  min-height: 44px;
}

.tab-btn:hover, .tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0f;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.game-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: block;
  text-decoration: none;
}

.game-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow);
  border-color: rgba(245,197,24,0.3);
}

.game-card-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-emoji {
  font-size: 3.5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.game-info {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.game-info strong {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.game-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  color: var(--text-muted);
  white-space: nowrap;
}

.game-tag.hot { background: rgba(232,55,27,0.15); color: #ff6b4a; }
.game-tag.jackpot { background: rgba(245,197,24,0.15); color: var(--gold); }
.game-tag.live { background: rgba(52,199,89,0.15); color: #4ade80; }

/* ===========================
   PERKS SECTION
   =========================== */
.perks-section {
  background: var(--dark-4);
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.perk-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.perk-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,197,24,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.perk-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
}

.perk-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

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

/* ===========================
   CRYPTO SECTION
   =========================== */
.crypto-section {
  background: var(--dark-2);
}

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

.crypto-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
}

.crypto-text > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.crypto-benefits { display: flex; flex-direction: column; gap: 20px; }

.crypto-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cb-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1.3;
}

.crypto-benefit strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.crypto-benefit p { font-size: 0.9rem; color: var(--text-muted); }

.crypto-payment-icons {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.crypto-payment-icons h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}

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

.payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.payment-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(1.1);
  transition: transform var(--transition);
}

.payment-item:hover img { transform: scale(1.15); }

.payment-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ===========================
   WHY SECTION
   =========================== */
.why-section {
  background: var(--dark-3);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition), border-color var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,197,24,0.3);
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

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

/* ===========================
   REVIEWS SECTION
   =========================== */
.reviews-section {
  background: var(--dark-4);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition), border-color var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,197,24,0.25);
}

.review-stars {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 900;
  color: #0a0a0f;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.reviewer span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq-section {
  background: var(--dark-2);
}

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

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

.faq-item:hover { border-color: rgba(245,197,24,0.2); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
  min-height: 60px;
}

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

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

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

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-a.open {
  max-height: 400px;
  padding: 0 24px 24px;
}

.faq-a p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }

/* ===========================
   FINAL CTA SECTION
   =========================== */
.final-cta-section {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  padding: 120px 0;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(245,197,24,0.08) 0%, transparent 70%);
}

.cta-particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,0.15) 0%, transparent 70%);
  animation: float-cta 6s ease-in-out infinite;
  animation-delay: var(--d);
}

@keyframes float-cta {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.1); }
}

.final-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  background: rgba(232,55,27,0.15);
  border: 1px solid rgba(232,55,27,0.3);
  color: #ff6b4a;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 50px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.8;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.cta-features span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 50px;
}

.exit-cta { margin-bottom: 16px; }

.cta-disclaimer {
  font-size: 0.8rem;
  color: rgba(144,144,176,0.6);
  margin-top: 16px;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: #06060c;
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand img { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-links-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom p, .footer-bottom a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.footer-disclaimer {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===========================
   SCROLL TO TOP
   =========================== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a0f;
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(245,197,24,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(245,197,24,0.6);
}

/* ===========================
   SALES NOTIFICATION POPUP
   =========================== */
.sales-popup {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(30,30,48,0.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: var(--radius);
  padding: 14px 18px;
  max-width: 300px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.sales-popup-close {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 0.7rem;
  color: var(--text-muted);
  padding: 4px;
  line-height: 1;
}

.sales-popup-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 900;
  color: #0a0a0f;
  flex-shrink: 0;
}

.sales-popup-text {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.4;
}

/* ===========================
   EXIT / SCROLL POPUP
   =========================== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,5,10,0.85);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

.exit-popup, .scroll-popup {
  background: linear-gradient(160deg, var(--dark-3), var(--dark-4));
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--text-muted);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.exit-popup-close:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.exit-popup-badge {
  display: inline-block;
  background: rgba(232,55,27,0.15);
  border: 1px solid rgba(232,55,27,0.3);
  color: #ff6b4a;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 7px 18px;
  border-radius: 50px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.exit-popup-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.exit-popup-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.exit-popup-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.exit-popup-features span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 50px;
}

.exit-no-thanks {
  margin-top: 14px;
  font-size: 0.82rem;
  color: rgba(144,144,176,0.5);
  cursor: pointer;
  text-decoration: underline;
  transition: color var(--transition);
}

.exit-no-thanks:hover { color: var(--text-muted); }

/* ===========================
   MOBILE RESPONSIVE
   =========================== */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 768px) {
  .section { padding: 64px 0; }

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

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: rgba(10,10,15,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link, .nav-cta {
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 1rem;
    text-align: center;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-cta { margin-top: 8px; }

  /* Hero Mobile */
  .hero { padding: 90px 0 60px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }

  .hero-timer {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
    width: 100%;
  }

  .timer-unit { min-width: 72px; }
  .timer-unit span { font-size: 2.2rem; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn { width: 100%; max-width: 360px; }

  .hero-trust { gap: 20px; }
  .trust-item { font-size: 0.75rem; }

  /* Stats */
  .about-cards { grid-template-columns: 1fr 1fr; }

  /* Games */
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* Perks */
  .perks-grid { grid-template-columns: 1fr; }

  /* Payment */
  .payment-grid { grid-template-columns: repeat(3, 1fr); }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Sales popup — bottom, doesn't block content */
  .sales-popup {
    bottom: 80px;
    left: 10px;
    right: 10px;
    max-width: none;
  }

  /* Exit popup */
  .exit-popup, .scroll-popup {
    padding: 36px 24px;
    margin: 10px;
  }

  /* Scroll-top */
  .scroll-top {
    bottom: 16px;
    right: 16px;
  }

  .cta-features {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr 1fr; }
  .hero-timer { padding: 14px 16px; }
  .btn-xl { padding: 16px 28px; font-size: 1.05rem; }
  .exit-popup-title { font-size: 1.3rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
