/* ============================================================
   Come Game — Global Stylesheet  v3.0 (Dark Navy + Gold + Red Neon)
   comegame.com.co | assets/css/main.css
   Premium Gaming & Sportsbook Platform
   ============================================================ */

/* ── 1. CSS CUSTOM PROPERTIES ── */
:root {
  /* Backgrounds — matte black to dark navy */
  --bg-primary:    #020810;
  --bg-secondary:  #060f22;
  --bg-card:       #0c1d3c;
  --bg-card2:      #091630;
  --bg-nav:        rgba(2,8,16,0.97);

  /* ✨ Premium Gold — CTA buttons, accents, highlights */
  --gold:          #f59e0b;
  --gold-dark:     #d97706;
  --gold-light:    #fcd34d;
  --gold-glow:     rgba(245,158,11,0.28);

  /* ⚡ Electric Cyan — secondary highlight */
  --cyan:          #06b6d4;
  --cyan-dark:     #0891b2;
  --cyan-glow:     rgba(6,182,212,0.22);

  /* 🔴 Red Neon — hover effects, urgency */
  --red-neon:      #ff2244;
  --red-glow:      rgba(255,34,68,0.35);

  /* 💜 Purple/Pink — subtle accent glows */
  --purple:        #a855f7;
  --purple-glow:   rgba(168,85,247,0.18);

  /* UI Colors */
  --white:         #f0f6ff;
  --gray:          #6b7fa0;
  --gray-light:    #9db0cc;
  --green:         #10b981;
  --red:           #ef4444;
  --blue:          #3b82f6;   /* Neon blue UI / borders */
  --amber:         #f59e0b;

  /* Borders — electric blue as primary, gold on hover */
  --border:        rgba(59,130,246,0.18);
  --border-soft:   rgba(255,255,255,0.05);
  --border-hover:  rgba(245,158,11,0.50);

  /* Shadows */
  --shadow:        0 4px 24px rgba(0,0,0,0.7);
  --shadow-lg:     0 12px 48px rgba(0,0,0,0.8);
  --shadow-gold:   0 8px 32px rgba(245,158,11,0.50);

  /* Radius */
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     28px;

  /* Typography */
  --font-sans:     'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --nav-height:    70px;
  --transition:    all 0.3s ease;
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg-primary);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── 3. LAYOUT UTILITIES ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-sm {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad    { padding: 80px 0; }
.section-pad-sm { padding: 60px 0; }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-gray   { color: var(--gray); }
.text-green  { color: var(--green); }
.text-red    { color: var(--red); }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.hidden { display: none !important; }

/* ── 4. TYPOGRAPHY ── */
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.section-title span { color: var(--gold); }

.section-sub {
  text-align: center;
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── 5. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
  border-radius: inherit;
}
.btn:hover::after { background: rgba(255,255,255,0.07); }

/* Primary CTA — premium gold gradient with glow */
.btn-gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0a0e1a;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(245,158,11,0.40), 0 0 0 0 rgba(245,158,11,0);
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,158,11,0.65), 0 0 60px rgba(245,158,11,0.15);
  background: linear-gradient(135deg, #fcd34d, #f59e0b);
}
.btn-gold:active { transform: translateY(0); }

/* Outlined / secondary */
.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #0a0e1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,158,11,0.40);
}

/* Ghost */
.btn-ghost {
  background: rgba(59,130,246,0.08);
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(59,130,246,0.15);
  border-color: var(--border-hover);
}

.btn-sm   { padding: 9px 18px; font-size: .85rem; }
.btn-lg   { padding: 17px 38px; font-size: 1.08rem; }
.btn-xl   { padding: 21px 50px; font-size: 1.18rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── 6. BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-gold  { background: rgba(245,158,11,0.12); color: var(--gold-light); border: 1px solid rgba(245,158,11,0.30); }
.badge-green { background: rgba(16,185,129,0.12); color: var(--green);      border: 1px solid rgba(16,185,129,0.25); }
.badge-red   { background: rgba(239,68,68,0.12);  color: var(--red);        border: 1px solid rgba(239,68,68,0.25); }
.badge-blue  { background: rgba(59,130,246,0.12); color: #93c5fd; border: 1px solid rgba(59,130,246,0.25); }

/* ── 7. CARDS ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(245,158,11,0.08);
  border-color: rgba(245,158,11,0.40);
}

/* ── 8. DIVIDER ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── 9. URGENCY BANNER ── */
.urgency-banner {
  background: linear-gradient(90deg, #7f1d1d, #dc2626, #991b1b, #dc2626, #7f1d1d);
  background-size: 200% 100%;
  animation: bannerSlide 6s linear infinite;
  color: #ffffff;
  text-align: center;
  padding: 10px 20px;
  font-weight: 700;
  font-size: .9rem;
  position: relative;
  z-index: 1001;
  letter-spacing: 0.2px;
  border-bottom: 1px solid rgba(220,38,38,0.4);
  text-shadow: 0 0 8px rgba(255,255,255,0.3);
}
.urgency-banner a { color: #ffffff; text-decoration: underline; }
.urgency-banner .pulse { animation: pulse 2s ease-in-out infinite; }

/* ── 10. NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s, background 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,0.8);
  border-bottom-color: rgba(59,130,246,0.30);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  height: var(--nav-height);
  gap: 12px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img.logo-img {
  height: 38px;
  width: auto;
}
.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(59,130,246,0.40);
}
.nav-logo .logo-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.nav-logo .logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.3px;
}
.nav-logo .logo-text span { color: var(--gold-light); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-light);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  background: rgba(245,158,11,0.08);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, #f59e0b, #fcd34d);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(245,158,11,0.6);
}

.nav-cta { padding: 10px 22px; font-size: .9rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  gap: 4px;
}
.mobile-menu.show { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--gray-light);
  display: block;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: var(--gold-light); background: rgba(245,158,11,0.08); }
.mobile-menu .btn { margin-top: 8px; }

/* ── 11. BREADCRUMB ── */
.breadcrumb-bar {
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}
.breadcrumb {
  font-size: .85rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold-light); transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.8; }
.breadcrumb .sep { opacity: 0.4; }

/* ── 12. PAGE HERO (inner pages) ── */
.page-hero {
  padding: 60px 0 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(59,130,246,0.10), transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}
.page-hero h1 span { color: var(--gold-light); }
.page-hero p {
  color: var(--gray-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ── 13. FAQ ACCORDION ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(245,158,11,0.30); }
.faq-item.open  { border-color: rgba(245,158,11,0.55); box-shadow: 0 0 20px rgba(245,158,11,0.06); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
  line-height: 1.4;
}
.faq-q:hover { color: var(--gold-light); }

.faq-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background: rgba(59,130,246,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.35s, background 0.3s, color 0.3s;
  color: var(--gold-light);
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: #0a0e1a;
}

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--gray-light);
  font-size: .9rem;
  line-height: 1.8;
  border-top: 1px solid var(--border);
}
.faq-a-inner a { color: var(--gold-light); text-decoration: underline; }

/* ── 14. TRUST BADGES ROW ── */
.trust-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--gray-light);
}
.trust-item .icon,
.trust-item .t-icon {
  width: 32px;
  height: 32px;
  background: rgba(59,130,246,0.10);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.trust-item img.t-icon { padding: 6px; object-fit: contain; }

/* ── 15. INTERNAL LINKS STRIP ── */
.internal-strip {
  padding: 44px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.internal-strip-inner {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.internal-strip-inner .label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  width: 100%;
  text-align: center;
  margin-bottom: 4px;
}
.internal-link-btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--gray-light);
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}
.internal-link-btn:hover {
  border-color: var(--border-hover);
  color: var(--gold-light);
  background: rgba(59,130,246,0.08);
  transform: translateY(-1px);
}

/* ── 16. SOCIAL PROOF POPUP ── */
.social-proof-popup {
  position: fixed;
  bottom: 90px;
  left: 16px;
  z-index: 998;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  max-width: 290px;
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: .82rem;
}
.social-proof-popup.show { transform: translateX(0); }

.sp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #0a0e1a;
  font-size: .9rem;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(245,158,11,0.35);
}
.sp-avatar img { width: 100%; height: 100%; object-fit: cover; }

.sp-text strong { display: block; font-weight: 700; color: var(--white); margin-bottom: 2px; font-size: .85rem; }
.sp-text span   { color: var(--gray); font-size: .75rem; }

.sp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--green);
  animation: blink 1.5s infinite;
}

.sp-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 2px 4px;
  transition: color 0.2s;
}
.sp-close:hover { color: var(--white); }

/* ── 17. EXIT INTENT POPUP ── */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
}
.exit-overlay.show { display: flex; }

.exit-popup {
  background: var(--bg-card);
  border: 1px solid rgba(245,158,11,0.40);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.9), 0 0 60px rgba(245,158,11,0.12);
  animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
  backdrop-filter: blur(8px);
}
.exit-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255,255,255,0.07);
  border: none;
  color: var(--gray-light);
  font-size: 1.3rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.exit-popup-close:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.exit-popup h2 { font-size: 1.75rem; font-weight: 900; margin-bottom: 10px; }
.exit-popup h2 span { color: var(--gold-light); }
.exit-popup p  { color: var(--gray-light); font-size: .95rem; margin-bottom: 28px; line-height: 1.7; }

/* ── 18. MOBILE STICKY CTA BAR ── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(2,8,16,0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  flex-direction: column;
  gap: 8px;
}

/* ── 19. FOOTER ── */
footer {
  background: #010710;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

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

.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 16px;
  text-decoration: none;
  color: var(--white);
}
.footer-brand .logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: #ffffff;
  font-weight: 900;
}
.footer-brand .logo-icon img { width: 22px; height: 22px; object-fit: contain; }
.footer-brand .logo-text span { color: var(--gold-light); }

.footer-tagline {
  color: var(--gray);
  font-size: .85rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-disclosure {
  background: rgba(59,130,246,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: .78rem;
  color: var(--gray);
  line-height: 1.65;
}
.footer-disclosure strong { color: var(--gold-light); }

.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a {
  font-size: .85rem;
  color: var(--gray);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--gray);
  margin-bottom: 10px;
}
.footer-contact-item a { color: var(--gray); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-contact-item img { width: 18px; height: 18px; object-fit: contain; opacity: 0.6; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 700;
}
.age-badge-18 {
  background: rgba(239,68,68,0.10);
  border: 1px solid rgba(239,68,68,0.30);
  color: var(--red);
}
.age-badge-safe {
  background: rgba(16,185,129,0.10);
  border: 1px solid rgba(16,185,129,0.30);
  color: var(--green);
}
.age-badge-ssl {
  background: rgba(59,130,246,0.08);
  border: 1px solid var(--border);
  color: var(--gray-light);
}

.restricted-note  { font-size: .75rem; color: var(--gray); max-width: 720px; line-height: 1.65; }
.restricted-note .states { color: var(--red); font-weight: 600; }
.footer-disclaimer { font-size: .75rem; color: var(--gray); max-width: 720px; line-height: 1.65; }
.copyright { font-size: .8rem; color: var(--gray); }
.copyright a { color: var(--gold-light); transition: opacity 0.2s; }
.copyright a:hover { opacity: 0.8; }

/* ── 20. NOTICE / ALERT BOXES ── */
.notice-box {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: .875rem;
  line-height: 1.65;
}
.notice-box .notice-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.notice-gold  { background: rgba(245,158,11,0.07); border: 1px solid rgba(245,158,11,0.25); color: var(--gray-light); }
.notice-green { background: rgba(16,185,129,0.07); border: 1px solid rgba(16,185,129,0.20); color: var(--gray-light); }
.notice-red   { background: rgba(239,68,68,0.07);  border: 1px solid rgba(239,68,68,0.20);  color: var(--gray-light); }

/* ── 21. SEO CONTENT BLOCK ── */
.seo-block { padding: 60px 0; background: var(--bg-secondary); }
.seo-inner { max-width: 900px; margin: 0 auto; }
.seo-inner h2 { font-size: clamp(1.3rem,3vw,1.9rem); font-weight: 800; margin-bottom: 16px; }
.seo-inner h2 span { color: var(--gold-light); }
.seo-inner h3 { font-size: 1.15rem; font-weight: 700; margin: 28px 0 10px; color: var(--gold-light); }
.seo-inner p  { color: var(--gray-light); line-height: 1.85; margin-bottom: 16px; font-size: .95rem; }
.seo-inner ul { padding-left: 0; margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.seo-inner ul li {
  color: var(--gray-light);
  font-size: .95rem;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}
.seo-inner ul li::before { content: '›'; position: absolute; left: 0; color: var(--gold-light); font-weight: 700; }
.seo-inner a { color: var(--gold-light); text-decoration: underline; }

/* ── 22. RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger            { display: flex; }
  .mobile-cta-bar       { display: flex; }
  .footer-grid          { grid-template-columns: 1fr; }
  .section-pad          { padding: 56px 0; }
  .section-pad-sm       { padding: 40px 0; }
  .exit-popup           { padding: 36px 24px; }
  .social-proof-popup   { max-width: 260px; font-size: .78rem; }
}

@media (max-width: 480px) {
  .btn-lg { padding: 15px 26px; font-size: .98rem; }
  .btn-xl { padding: 15px 30px; font-size: 1.05rem; }
  .nav-inner { padding: 0 16px; }
}

/* ── 23. COME GAME PREMIUM EFFECTS ── */

/* Banner slide animation */
@keyframes bannerSlide {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Ghost button updated */
.btn-ghost {
  background: rgba(245,158,11,0.06);
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(245,158,11,0.12);
  border-color: rgba(245,158,11,0.35);
}

/* Glassmorphism cards */
.feature-card,
.testi-card,
.trust-card {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Red neon hover on feature/trust cards */
.feature-card:hover {
  border-color: rgba(255,34,68,0.35) !important;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(255,34,68,0.08) !important;
}
.trust-card:hover {
  border-color: rgba(245,158,11,0.35);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(245,158,11,0.08);
}

/* Gold glowing countdown / CTA boxes */
.countdown-box {
  border-color: rgba(245,158,11,0.35) !important;
  box-shadow: 0 0 60px rgba(245,158,11,0.06);
}
.download-cta-box {
  border-color: rgba(245,158,11,0.40) !important;
  box-shadow: 0 0 40px rgba(245,158,11,0.08);
}

/* Social proof popup gold border */
.social-proof-popup {
  border-color: rgba(245,158,11,0.25);
}

/* Internal link buttons hover */
.internal-link-btn:hover {
  border-color: rgba(245,158,11,0.45);
  color: var(--gold-light);
  background: rgba(245,158,11,0.06);
}

/* Page hero enhanced glow */
.page-hero::before {
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(245,158,11,0.06), transparent 70%) !important;
}

/* Active filter tab pulse */
.filter-tab.active {
  box-shadow: 0 4px 16px rgba(245,158,11,0.35);
}

/* Gold gradient text utility */
.text-gold-gradient {
  background: linear-gradient(135deg, #f59e0b, #fcd34d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 24. AFFILIATE / REFERRAL DISCLAIMER BANNER ── */
.affiliate-disclaimer {
  background: #0a0e1a;
  border-top: 1px solid rgba(245,158,11,0.22);
  border-bottom: 1px solid rgba(245,158,11,0.10);
  padding: 14px 0;
  text-align: center;
  position: relative;
  z-index: 10;
}
.affiliate-disclaimer .ad-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.affiliate-disclaimer .ad-icon {
  flex-shrink: 0;
  font-size: 1.05rem;
  margin-top: 1px;
  color: var(--gold);
}
.affiliate-disclaimer .ad-text {
  font-size: .78rem;
  color: #8899b4;
  line-height: 1.7;
  text-align: left;
}
.affiliate-disclaimer .ad-text strong {
  color: #c0a060;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
  font-size: .8rem;
  letter-spacing: .02em;
}
.affiliate-disclaimer .ad-text a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 2px;
}
.affiliate-disclaimer .ad-text a:hover {
  color: var(--gold-light);
}

/* Compact inline variant (footer use) */
.affiliate-disclaimer.ad-compact {
  padding: 10px 0;
  border-top: 1px solid rgba(245,158,11,0.15);
  border-bottom: none;
}
.affiliate-disclaimer.ad-compact .ad-inner {
  align-items: center;
}
.affiliate-disclaimer.ad-compact .ad-text {
  font-size: .74rem;
}

@media (max-width: 600px) {
  .affiliate-disclaimer .ad-inner {
    align-items: flex-start;
  }
  .affiliate-disclaimer .ad-text {
    font-size: .73rem;
  }
}
