@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Lao:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --font-main: 'Plus Jakarta Sans', 'Noto Sans Lao', system-ui, -apple-system, sans-serif;
}

body {
  font-family: var(--font-main);
  background-color: #0b0f19;
  color: #e2e8f0;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #0f172a;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

/* Glow effects */
.glow-cyan {
  box-shadow: 0 0 25px -5px rgba(6, 182, 212, 0.3);
}

.glow-amber {
  box-shadow: 0 0 25px -5px rgba(245, 158, 11, 0.4);
}

/* Ad Badges */
.ad-badge {
  font-size: 9px;
  letter-spacing: 0.05em;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.6);
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Native Ad Card Distinction / High Conversion */
.card-native-ad {
  position: relative;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.card-native-ad:hover {
  border-color: rgba(245, 158, 11, 0.7);
  box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.15);
}

/* Countdown Pulse Box */
.timer-circle {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: conic-gradient(#f59e0b var(--progress, 100%), #1e293b 0);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.35);
}

.timer-inner {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #0f172a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Animated high-CTR button */
@keyframes pulse-subtle {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.025);
  }
}

.animate-btn-pulse {
  animation: pulse-subtle 2s infinite ease-in-out;
}

/* ==========================================================================
   NEW: SOCIAL BAR / IN-PAGE PUSH NOTIFICATION
   ========================================================================== */
@keyframes slideUpRight {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.social-bar-widget {
  animation: slideUpRight 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(245, 158, 11, 0.3);
}

/* ==========================================================================
   NEW: FULLSCREEN INTERSTITIAL / VIGNETTE AD MODAL
   ========================================================================== */
@keyframes fadeInVignette {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.vignette-modal-overlay {
  animation: fadeInVignette 0.25s ease-out forwards;
}

/* ==========================================================================
   NEW: ANTI-ADBLOCK MODAL / BANNER
   ========================================================================== */
.anti-adblock-banner {
  background: linear-gradient(90deg, #991b1b, #7f1d1d);
  border-bottom: 2px solid #ef4444;
}
