/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0A0A0F;
  color: #FFFFFF;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }

/* ===== PARTICLES CANVAS ===== */
#particles {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

/* ===== BACKGROUND OVERLAY ===== */
.bg-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, #0A0A0F 0%, #1A0A2E 50%, #0A0A0F 100%);
  z-index: 0; pointer-events: none;
}

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding: 12px 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-icon { font-size: 28px; color: #D4AF37; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 800; color: #fff; }
.logo-accent { color: #D4AF37; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cta {
  padding: 10px 24px; border-radius: 12px;
  background: linear-gradient(135deg, #D4AF37, #F5D061);
  color: #0A0A0F; font-weight: 600; font-size: 14px;
  transition: all 0.3s ease;
}
.nav-cta:hover { box-shadow: 0 0 30px rgba(212, 175, 55, 0.5); transform: translateY(-1px); }

/* ===== LANGUAGE SELECTOR ===== */
.lang-selector { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: #B8B8C8; cursor: pointer; font-size: 13px;
  transition: all 0.3s ease;
}
.lang-btn:hover { border-color: rgba(212, 175, 55, 0.3); color: #D4AF37; }
.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: rgba(20, 15, 35, 0.98); backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 12px;
  padding: 8px; min-width: 180px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.25s ease; z-index: 200;
}
.lang-dropdown.show { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 10px 14px; border-radius: 8px; border: none;
  background: transparent; color: #B8B8C8; cursor: pointer;
  font-size: 14px; text-align: left; transition: all 0.2s ease;
}
.lang-option:hover { background: rgba(212, 175, 55, 0.1); color: #D4AF37; }
.lang-option.active { color: #D4AF37; background: rgba(212, 175, 55, 0.08); }
.lang-flag { font-size: 18px; }

/* ===== HERO SECTION ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.4;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,15,0.3) 0%, rgba(10,10,15,0.6) 50%, rgba(10,10,15,0.95) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 120px 24px 80px; max-width: 900px;
}
.hero-badge {
  display: inline-block; padding: 8px 20px; border-radius: 100px;
  background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.3);
  color: #D4AF37; font-size: 12px; font-weight: 600; letter-spacing: 2px;
  margin-bottom: 24px; text-transform: uppercase;
}
.hero-title {
  font-size: clamp(36px, 6vw, 72px); font-weight: 900;
  background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 50%, #F5D061 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 20px;
  line-height: 1.1;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px); color: #B8B8C8;
  margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 12px; font-weight: 600;
  font-size: 16px; transition: all 0.3s ease; cursor: pointer; border: none;
}
.btn-primary {
  background: linear-gradient(135deg, #D4AF37, #F5D061);
  color: #0A0A0F;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4); }
.btn-outline {
  background: transparent; border: 1px solid rgba(212, 175, 55, 0.4);
  color: #D4AF37;
}
.btn-outline:hover { background: rgba(212, 175, 55, 0.1); border-color: #D4AF37; }
.btn-glow { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
.btn-xl { padding: 20px 48px; font-size: 20px; border-radius: 16px; letter-spacing: 2px; }
.btn-sm { padding: 10px 20px; font-size: 14px; border-radius: 10px; }
.btn-breathe { animation: breathe 3s ease-in-out infinite; }
@keyframes breathe {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); transform: scale(1); }
  50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.5); transform: scale(1.02); }
}

/* ===== COUNTDOWN TIMER ===== */
.countdown-timer {
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
}
.countdown-timer [data-i18n="countdown_label"] {
  display: block;
  font-size: 13px;
  color: #B8B8C8;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.countdown-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}
.countdown-item span:first-child {
  font-family: 'Space Grotesk', monospace;
  font-size: 32px;
  font-weight: 700;
  color: #D4AF37;
  line-height: 1;
  display: inline-block;
  min-width: 48px;
  text-align: center;
}
.countdown-item span:first-child.tick {
  animation: tickBounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes tickBounce {
  0% { transform: scale(1) translateY(0); opacity: 1; }
  30% { transform: scale(1.2) translateY(-4px); opacity: 0.8; }
  60% { transform: scale(0.95) translateY(2px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.countdown-item span:last-child {
  font-size: 11px;
  color: #B8B8C8;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.countdown-separator {
  font-family: 'Space Grotesk', monospace;
  font-size: 28px;
  color: #D4AF37;
  opacity: 0.5;
  margin-top: -16px;
}

/* ===== HERO STATS ===== */
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Space Grotesk', monospace; font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; color: #D4AF37; display: block;
}
.hero-stat-suffix { font-family: 'Space Grotesk', monospace; font-size: clamp(20px, 3vw, 30px); font-weight: 700; color: #D4AF37; }
.hero-stat-label { font-size: 14px; color: #B8B8C8; margin-top: 4px; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(212, 175, 55, 0.2); }

/* ===== HERO REWARD BANNER ===== */
.hero-reward-banner {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 32px; padding: 14px 28px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(123, 47, 190, 0.12));
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(10px);
  animation: rewardPulse 3s ease-in-out infinite;
}
@keyframes rewardPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.15); }
  50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.3); }
}
.hero-reward-icon { font-size: 22px; }
.hero-reward-text { color: #F5D061; font-size: 15px; font-weight: 500; }
.hero-reward-text strong { color: #fff; font-weight: 700; font-size: 17px; }
.hero-reward-btn {
  padding: 8px 20px; border-radius: 8px;
  background: linear-gradient(135deg, #D4AF37, #F5D061);
  color: #0A0A0F; font-weight: 700; font-size: 14px;
  transition: all 0.3s ease; white-space: nowrap;
  border: none; cursor: pointer; position: relative; overflow: hidden;
}
.hero-reward-btn:hover { box-shadow: 0 0 20px rgba(212, 175, 55, 0.5); transform: translateY(-1px); }
.hero-reward-btn:active { transform: scale(0.96); box-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
.hero-reward-btn.clicked { animation: rewardBtnPop 0.5s ease; }
@keyframes rewardBtnPop {
  0% { transform: scale(1); }
  30% { transform: scale(1.08); box-shadow: 0 0 30px rgba(212, 175, 55, 0.6); }
  60% { transform: scale(0.97); }
  100% { transform: scale(1); }
}
.hero-reward-btn .ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0); animation: rippleEffect 0.6s ease-out;
  pointer-events: none;
}
@keyframes rippleEffect {
  to { transform: scale(4); opacity: 0; }
}

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-title {
  font-size: clamp(28px, 4vw, 48px); margin-bottom: 16px;
  background: linear-gradient(135deg, #FFFFFF, #D4AF37);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-subtitle { font-size: 18px; color: #B8B8C8; max-width: 600px; margin: 0 auto; }

/* ===== BONUS SECTION ===== */
.bonus { padding: 80px 0; position: relative; z-index: 2; }
.bonus-card {
  position: relative; border-radius: 24px; overflow: hidden;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(20px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  opacity: 0; transform: translateY(30px); transition: all 0.6s ease;
}
.bonus-card.visible { opacity: 1; transform: translateY(0); }
.bonus-glow {
  position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  animation: glowRotate 10s linear infinite;
}
@keyframes glowRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.bonus-card.highlight { animation: bonusHighlight 1.5s ease; }
@keyframes bonusHighlight {
  0% { box-shadow: 0 0 0 rgba(212, 175, 55, 0); }
  50% { box-shadow: 0 0 60px rgba(212, 175, 55, 0.4), 0 0 120px rgba(212, 175, 55, 0.15); border-color: rgba(212, 175, 55, 0.6); }
  100% { box-shadow: 0 0 0 rgba(212, 175, 55, 0); }
}
.bonus-content { padding: 48px; position: relative; z-index: 1; }
.bonus-badge {
  display: inline-block; padding: 6px 16px; border-radius: 100px;
  background: rgba(212, 175, 55, 0.15); color: #D4AF37;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; margin-bottom: 16px;
}
.bonus-title { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 16px; color: #fff; }
.bonus-desc { color: #B8B8C8; margin-bottom: 24px; font-size: 16px; line-height: 1.7; }
.bonus-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.bonus-feature { display: flex; align-items: center; gap: 12px; color: #fff; font-size: 15px; }
.bonus-image { position: relative; overflow: hidden; }
.bonus-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===== GAMES SECTION ===== */
.games { padding: 80px 0; position: relative; z-index: 2; }
.games-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.game-card {
  border-radius: 16px; overflow: hidden;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s ease;
  opacity: 0; transform: translateY(30px);
}
.game-card.visible { opacity: 1; transform: translateY(0); }
.game-card:hover {
  transform: translateY(-4px); border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(212, 175, 55, 0.1);
}
.game-card-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.game-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.game-card:hover .game-card-img img { transform: scale(1.05); }
.game-card-overlay {
  position: absolute; top: 12px; left: 12px;
}
.game-tag {
  padding: 4px 12px; border-radius: 6px; font-size: 11px; font-weight: 700;
  background: linear-gradient(135deg, #D4AF37, #F5D061); color: #0A0A0F;
  letter-spacing: 1px;
}
.game-tag-live { background: linear-gradient(135deg, #00C853, #69F0AE); }
.game-tag-new { background: linear-gradient(135deg, #7B2FBE, #B388FF); color: #fff; }
.game-card-body { padding: 20px; }
.game-card-body h3 { font-size: 20px; margin-bottom: 8px; color: #fff; }
.game-card-body p { font-size: 14px; color: #B8B8C8; margin-bottom: 16px; line-height: 1.5; }
.game-card-body .btn-sm {
  background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.3);
  color: #D4AF37;
}
.game-card-body .btn-sm:hover { background: linear-gradient(135deg, #D4AF37, #F5D061); color: #0A0A0F; }

/* ===== TRUST SECTION ===== */
.trust { padding: 80px 0; position: relative; z-index: 2; }
.trust-header { text-align: center; margin-bottom: 60px; }
.trust-stars { font-size: 32px; color: #D4AF37; margin-bottom: 16px; letter-spacing: 4px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.trust-card {
  text-align: center; padding: 40px 24px; border-radius: 16px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  opacity: 0; transform: translateY(20px); transition: all 0.5s ease;
}
.trust-card.visible { opacity: 1; transform: translateY(0); }
.trust-card:hover { border-color: rgba(212, 175, 55, 0.2); }
.trust-icon { margin-bottom: 16px; }
.trust-num {
  font-family: 'Space Grotesk', monospace; font-size: 42px; font-weight: 700;
  color: #D4AF37; margin-bottom: 8px;
}
.trust-label { font-size: 16px; color: #B8B8C8; }

/* ===== TESTIMONIALS ===== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  padding: 32px; border-radius: 16px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  opacity: 0; transform: translateY(20px); transition: all 0.5s ease;
}
.testimonial-card.visible { opacity: 1; transform: translateY(0); }
.testimonial-stars { color: #D4AF37; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { color: #B8B8C8; font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37, #7B2FBE);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff;
}
.testimonial-name { font-weight: 600; font-size: 15px; }
.testimonial-loc { font-size: 13px; color: #B8B8C8; }

/* ===== FEATURES SECTION ===== */
.features { padding: 80px 0; position: relative; z-index: 2; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
  text-align: center; padding: 40px 24px; border-radius: 16px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  opacity: 0; transform: translateY(20px);
}
.feature-card.visible { opacity: 1; transform: translateY(0); }
.feature-card:hover { border-color: rgba(212, 175, 55, 0.3); transform: translateY(-4px); }
.feature-icon { margin-bottom: 20px; }
.feature-card h3 { font-size: 20px; margin-bottom: 12px; color: #fff; }
.feature-card p { font-size: 14px; color: #B8B8C8; line-height: 1.6; }

/* ===== PAYMENT SECTION ===== */
.payment { padding: 40px 0 80px; position: relative; z-index: 2; }
.payment-header { text-align: center; margin-bottom: 32px; }
.payment-header p { color: #B8B8C8; font-size: 16px; }
.payment-grid {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.payment-item {
  padding: 12px 20px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}
.payment-item:hover { border-color: rgba(212, 175, 55, 0.2); }

/* ===== CTA SECTION ===== */
.cta {
  position: relative; padding: 120px 0; text-align: center;
  overflow: hidden; z-index: 2;
}
.cta-bg {
  position: absolute; inset: 0; z-index: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.2; }
.cta-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, #0A0A0F 0%, rgba(10,10,15,0.7) 50%, #0A0A0F 100%);
}
.cta-content { position: relative; z-index: 2; }
.cta-title {
  font-size: clamp(32px, 5vw, 56px); margin-bottom: 20px;
  background: linear-gradient(135deg, #FFFFFF, #D4AF37);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-desc { font-size: 18px; color: #B8B8C8; margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-badges { display: flex; justify-content: center; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.cta-badge { display: flex; align-items: center; gap: 8px; color: #B8B8C8; font-size: 14px; }

/* ===== FOOTER ===== */
.footer {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 30px;
  background: rgba(10, 10, 15, 0.8);
}
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-desc { color: #B8B8C8; font-size: 14px; line-height: 1.6; max-width: 300px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 { font-size: 16px; margin-bottom: 16px; color: #D4AF37; font-family: 'Inter', sans-serif; font-weight: 600; }
.footer-col a { display: block; color: #B8B8C8; font-size: 14px; margin-bottom: 10px; transition: color 0.2s ease; }
.footer-col a:hover { color: #D4AF37; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom p { color: #666; font-size: 13px; margin-bottom: 8px; }
.footer-copy { color: #444 !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials { grid-template-columns: repeat(2, 1fr); }
  .bonus-card { grid-template-columns: 1fr; }
  .bonus-image { max-height: 300px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .hero-content { padding: 100px 16px 60px; }
  .hero-stats { gap: 20px; }
  .hero-stat-divider { display: none; }
  .hero-reward-banner { flex-direction: column; gap: 8px; padding: 12px 20px; text-align: center; }
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonials { grid-template-columns: 1fr; }
  .bonus-content { padding: 32px 24px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .nav-cta { display: none; }
  .cta-badges { flex-direction: column; align-items: center; gap: 12px; }
  .container { padding: 0 16px; }
  .btn-xl { padding: 16px 36px; font-size: 18px; }
}

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
}
.loading-overlay.show {
  opacity: 1; visibility: visible;
}
.loading-spinner {
  width: 60px; height: 60px;
  border: 3px solid rgba(212, 175, 55, 0.2);
  border-top-color: #D4AF37;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 24px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.loading-text {
  font-size: 18px;
  color: #D4AF37;
  font-weight: 500;
  letter-spacing: 1px;
}
.loading-subtext {
  font-size: 14px;
  color: #B8B8C8;
  margin-top: 8px;
}

/* ===== LIVE CASINO CAROUSEL ===== */
.live-casino-carousel {
  margin-top: 40px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(20px);
}
.carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 59, 48, 0.15);
  border: 1px solid rgba(255, 59, 48, 0.3);
  color: #FF3B30;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF3B30;
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}
.online-count {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #B8B8C8;
  font-size: 14px;
}
.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00C853;
  animation: onlinePulse 2s ease-in-out infinite;
}
@keyframes onlinePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.online-count strong {
  color: #D4AF37;
  font-family: 'Space Grotesk', monospace;
}
.carousel-container {
  overflow: hidden;
  border-radius: 16px;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.carousel-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.host-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: all 0.3s ease;
}
.host-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.4);
}
.host-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.host-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 12px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
}
.host-game {
  font-size: 14px;
  font-weight: 500;
  color: #D4AF37;
  margin-bottom: 4px;
}
.host-viewers {
  font-size: 12px;
  color: #B8B8C8;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.carousel-dot.active {
  background: #D4AF37;
  width: 24px;
  border-radius: 4px;
}

/* ===== NAV DOWNLOAD BUTTON ===== */
.nav-download-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}
.nav-download-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
  color: #D4AF37;
}
.nav-download-btn svg {
  transition: transform 0.3s ease;
}
.nav-download-btn:hover svg {
  transform: translateY(2px);
}

/* ===== DOWNLOAD PLATFORM POPUP ===== */
.download-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.download-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}
.download-popup {
  position: relative;
  background: linear-gradient(135deg, #1A0A2E 0%, #0A0A0F 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.2), 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.8) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.download-popup-overlay.show .download-popup {
  transform: scale(1) translateY(0);
}
.download-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #B8B8C8;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.download-popup-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: rotate(90deg);
}
.download-popup-icon {
  margin-bottom: 20px;
  animation: iconFloat 3s ease-in-out infinite;
}
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.download-popup-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: #D4AF37;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}
.download-popup-desc {
  font-size: 16px;
  color: #B8B8C8;
  margin-bottom: 32px;
}
.download-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.download-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  width: 100%;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
}
.download-option:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}
.download-option-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.download-option-label {
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
}
.download-option-sub {
  font-size: 13px;
  color: #B8B8C8;
}
.download-popup-note {
  font-size: 13px;
  color: #B8B8C8;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.download-popup-note::before {
  content: "🔒";
  font-size: 14px;
}

@media (max-width: 480px) {
  .nav-download-btn span {
    display: none;
  }
  .nav-download-btn {
    padding: 10px 12px;
  }
  .download-popup {
    padding: 36px 24px;
  }
  .download-popup-title {
    font-size: 26px;
  }
  .download-option {
    padding: 16px 20px;
  }
}

/* ===== EXIT INTENT POPUP ===== */
.exit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.exit-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}
.exit-popup {
  position: relative;
  background: linear-gradient(135deg, #1A0A2E 0%, #0A0A0F 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.2), 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.8) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.exit-popup-overlay.show .exit-popup {
  transform: scale(1) translateY(0);
}
.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #B8B8C8;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.exit-popup-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: rotate(90deg);
}
.exit-popup-icon {
  margin-bottom: 20px;
  animation: iconPulse 2s ease-in-out infinite;
}
@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.exit-popup-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: #D4AF37;
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}
.exit-popup-desc {
  font-size: 18px;
  color: #B8B8C8;
  margin-bottom: 28px;
  line-height: 1.6;
}
.exit-popup-desc strong {
  color: #D4AF37;
  font-weight: 700;
}
.exit-popup-features {
  text-align: left;
  margin-bottom: 32px;
  padding: 0 8px;
}
.exit-popup-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 15px;
  color: #FFFFFF;
}
.exit-popup-feature:last-child {
  border-bottom: none;
}
.exit-popup-cta {
  width: 100%;
  padding: 18px 32px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  animation: ctaPulse 2s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.5); }
  50% { box-shadow: 0 0 50px rgba(212, 175, 55, 0.8); }
}
.exit-popup-timer {
  font-size: 14px;
  color: #B8B8C8;
  margin: 0;
}
.exit-popup-timer span {
  font-family: 'Space Grotesk', monospace;
  font-weight: 700;
  color: #D4AF37;
  font-size: 16px;
}

@media (max-width: 480px) {
  .exit-popup {
    padding: 36px 24px;
  }
  .exit-popup-title {
    font-size: 26px;
  }
  .exit-popup-desc {
    font-size: 16px;
  }
  .exit-popup-cta {
    font-size: 16px;
    padding: 16px 24px;
  }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; }
  .footer-links { grid-template-columns: 1fr; }
  .payment-grid { gap: 10px; }
  .live-casino-carousel { padding: 16px; margin-top: 24px; }
  .carousel-slide { grid-template-columns: 1fr; gap: 12px; }
  .carousel-header { flex-direction: column; align-items: flex-start; }
}
