/* ============================================================
   BatWinPlay — Main Stylesheet v3
   Premium Dark Gaming Design | Inter Font
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ════════════════════════════════════════
   1. DESIGN TOKENS
   ════════════════════════════════════════ */
:root {
  /* Backgrounds */
  --bg-primary:   #05080f;
  --bg-secondary: #090e1c;
  --bg-card:      #0d1627;
  --bg-card2:     #0b1322;

  /* Brand Gold */
  --gold:         #f5a623;
  --gold-dark:    #c8841a;
  --gold-light:   #ffd166;
  --gold-dim:     rgba(245,166,35,0.18);
  --gold-glow:    rgba(245,166,35,0.26);

  /* Neutrals */
  --white:        #edf2ff;
  --gray:         #6a7889;
  --gray-light:   #9db0c2;
  --green:        #10c97a;
  --red:          #f04545;
  --blue:         #4e8ef6;

  /* Borders */
  --border:       rgba(245,166,35,0.12);
  --border-soft:  rgba(255,255,255,0.055);

  /* Shadows */
  --shadow:       0 4px 22px rgba(0,0,0,0.52);
  --shadow-lg:    0 14px 46px rgba(0,0,0,0.68);
  --shadow-gold:  0 6px 30px rgba(245,166,35,0.28);

  /* Shape */
  --radius:       10px;
  --radius-lg:    16px;
  --radius-xl:    22px;

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

  /* Easing */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);
  --transition:  all 0.26s cubic-bezier(0.4, 0, 0.2, 1);

  /* Nav */
  --nav-height: 64px;
}

/* ════════════════════════════════════════
   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%;
  text-size-adjust: 100%;
}

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

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

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

/* Custom scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(245,166,35,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(245,166,35,0.52); }

/* ════════════════════════════════════════
   3. LAYOUT UTILITIES
   ════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-sm {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-pad    { padding: 88px 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.65rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.18;
  letter-spacing: -0.5px;
  color: var(--white);
}
.section-title span {
  background: linear-gradient(135deg, #f5a623, #ffd166 55%, #c8841a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  text-align: center;
  color: var(--gray-light);
  font-size: .96rem;
  margin-bottom: 52px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  font-weight: 400;
}

/* Paragraphs */
p { color: var(--gray-light); line-height: 1.75; }
strong { color: var(--white); font-weight: 700; }
h1, h2, h3, h4, h5 { font-family: var(--font-sans); font-weight: 800; line-height: 1.2; color: var(--white); }

/* ════════════════════════════════════════
   5. BUTTONS
   ════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
/* Shine sweep on hover */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 48%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}
.btn:hover::before { left: 150%; }

.btn-gold {
  background: linear-gradient(135deg, #f5a623 0%, #ffd166 50%, #c8841a 100%);
  color: #06080e;
  box-shadow: 0 4px 22px rgba(245,166,35,0.32);
  font-weight: 800;
}
.btn-gold:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 10px 36px rgba(245,166,35,0.48);
  color: #06080e;
}
.btn-gold:active { transform: translateY(-1px) scale(0.99); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid rgba(245,166,35,0.42);
}
.btn-outline:hover {
  background: rgba(245,166,35,0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(245,166,35,0.16);
  color: var(--gold);
}
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border: 1px solid var(--border-soft);
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); border-color: rgba(245,166,35,0.22); }

.btn-sm  { padding: 8px 18px; font-size: .82rem; border-radius: 50px; }
.btn-lg  { padding: 16px 40px; font-size: 1.05rem; }
.btn-xl  { padding: 20px 52px; font-size: 1.15rem; }
.btn-full { width: 100%; justify-content: center; }

/* ════════════════════════════════════════
   6. BADGES
   ════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: 50px;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-family: var(--font-sans);
}
.badge-gold  { background: rgba(245,166,35,0.1); color: var(--gold); border: 1px solid var(--border); }
.badge-green { background: rgba(16,201,122,0.1); color: var(--green); border: 1px solid rgba(16,201,122,0.22); }
.badge-red   { background: rgba(240,69,69,0.1);  color: var(--red);   border: 1px solid rgba(240,69,69,0.22); }
.badge-blue  { background: rgba(78,142,246,0.1); color: var(--blue);  border: 1px solid rgba(78,142,246,0.22); }

/* ════════════════════════════════════════
   7. CARDS
   ════════════════════════════════════════ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,166,35,0.28);
}

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

/* ════════════════════════════════════════
   9. URGENCY BANNER (Ad Banner)
   ════════════════════════════════════════ */
.urgency-banner {
  background: linear-gradient(90deg, #9a5c00, #f5a623, #ffd166, #f5a623, #9a5c00);
  background-size: 300% 100%;
  animation: bannerGrad 7s linear infinite;
  color: #06080e;
  padding: 10px 0;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: .84rem;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1001;
  overflow: hidden;
}
@keyframes bannerGrad {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}
.urgency-banner .pulse {
  display: inline-block;
  animation: pulse 1.8s ease-in-out infinite;
}
/* Ticker wrapper inside banner */
.urgency-ticker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ════════════════════════════════════════
   10. NAVBAR
   ════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 20px;
  background: transparent;
  border: none;
  transition: padding 0.3s var(--ease), background 0.3s var(--ease);
}
.navbar.scrolled {
  padding: 7px 20px;
  background: rgba(5,8,15,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  height: 54px;
  padding: 0 22px;
  background: rgba(10,15,32,0.86);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(245,166,35,0.14);
  border-radius: 15px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.42), 0 1px 0 rgba(255,255,255,0.04) inset;
  gap: 0;
  transition: all 0.3s var(--ease);
}
.navbar.scrolled .nav-inner {
  background: rgba(5,8,15,0.97);
  border-color: rgba(245,166,35,0.2);
  box-shadow: 0 10px 44px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.04) inset;
}
.nav-center { flex: 1; display: flex; justify-content: center; }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img.logo-img { height: 33px; width: auto; }
.nav-logo .logo-icon {
  width: 35px; height: 35px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: #06080e; flex-shrink: 0;
}
.nav-logo .logo-text { font-size: 1.28rem; font-weight: 900; color: var(--white); letter-spacing: -0.4px; }
.nav-logo .logo-text span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 15px;
  border-radius: 10px;
  font-size: .86rem;
  font-weight: 500;
  color: rgba(157,176,194,0.85);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
  position: relative;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 15px; right: 15px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.28s var(--ease-spring);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-links a:hover::after { transform: scaleX(0.65); }
.nav-links a.active { color: var(--gold); background: rgba(245,166,35,0.08); font-weight: 600; }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  padding: 8px 20px;
  font-size: .84rem;
  font-weight: 800;
  border-radius: 11px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5a623, #c8841a);
  color: #06080e !important;
  box-shadow: 0 3px 16px rgba(245,166,35,0.3);
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease-spring);
  border: none;
}
.nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 48%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
}
.nav-cta:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 8px 28px rgba(245,166,35,0.44); }
.nav-cta:hover::before { left: 150%; }
.nav-cta:hover::after { background: transparent; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  border-radius: 9px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gray-light);
  border-radius: 2px;
  transition: transform 0.28s var(--ease), opacity 0.28s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); background: var(--gold); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); background: var(--gold); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10,15,32,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 18px 20px;
  gap: 2px;
  margin: 4px 20px 0;
  border-radius: 0 0 15px 15px;
  border: 1px solid rgba(245,166,35,0.14);
  border-top: none;
  box-shadow: 0 16px 40px rgba(0,0,0,0.55);
}
.mobile-menu.show { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: 9px;
  font-weight: 500;
  font-size: .9rem;
  color: var(--gray-light);
  display: block;
  transition: color 0.2s, background 0.2s;
  border-bottom: 1px solid transparent;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); background: rgba(245,166,35,0.07); }
.mobile-menu a.active { color: var(--gold); }
.mobile-menu .btn { margin-top: 10px; }

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

/* ════════════════════════════════════════
   12. PAGE HERO (inner pages)
   ════════════════════════════════════════ */
.page-hero {
  padding: 64px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(245,166,35,0.08), transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(78,142,246,0.04), transparent 60%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  position: relative;
}
.page-hero h1 span {
  background: linear-gradient(135deg, #f5a623, #ffd166 55%, #c8841a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  color: var(--gray-light);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.78;
  position: relative;
}

/* ════════════════════════════════════════
   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.22s;
}
.faq-item:hover { border-color: rgba(245,166,35,0.22); }
.faq-item.open  { border-color: rgba(245,166,35,0.32); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .96rem;
  font-weight: 600;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: color 0.2s;
  line-height: 1.45;
  letter-spacing: -0.1px;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  background: rgba(245,166,35,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.32s var(--ease-spring), background 0.25s, color 0.25s;
  color: var(--gold);
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: #06080e;
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 440px; }
.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--gray-light);
  font-size: .9rem;
  line-height: 1.82;
  border-top: 1px solid var(--border);
}
.faq-a-inner a { color: var(--gold); 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: .84rem; color: var(--gray-light); }
.trust-item .t-icon {
  width: 32px; height: 32px;
  background: rgba(245,166,35,0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; flex-shrink: 0;
}

/* ════════════════════════════════════════
   15. INTERNAL LINKS STRIP
   ════════════════════════════════════════ */
.internal-strip {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.internal-strip-inner {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.internal-strip-inner .label { font-size: .98rem; font-weight: 700; color: var(--white); width: 100%; text-align: center; margin-bottom: 6px; }
.internal-link-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--bg-primary);
  color: var(--gray-light);
  font-size: .86rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}
.internal-link-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,166,35,0.05);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════
   16. SOCIAL PROOF POPUP (Widget)
   ════════════════════════════════════════ */
.social-proof-popup {
  position: fixed;
  bottom: 94px;
  left: 16px;
  z-index: 998;
  background: linear-gradient(135deg, rgba(13,22,39,0.98), rgba(11,19,34,0.98));
  border: 1px solid rgba(245,166,35,0.18);
  border-radius: 16px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  max-width: 295px;
  transform: translateX(-130%);
  transition: transform 0.5s var(--ease-spring);
  font-size: .82rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.social-proof-popup.show { transform: translateX(0); }
.sp-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  color: #06080e;
  font-size: .88rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(245,166,35,0.3);
}
.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: .86rem; }
.sp-text span   { color: var(--gray); font-size: .74rem; }
.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: 7px; right: 9px;
  background: none; border: none;
  color: var(--gray); cursor: pointer;
  font-size: .96rem; line-height: 1;
  padding: 2px 4px;
  transition: color 0.2s;
}
.sp-close:hover { color: var(--white); }

/* ════════════════════════════════════════
   17. EXIT INTENT POPUP (Widget)
   ════════════════════════════════════════ */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(5px);
}
.exit-overlay.show { display: flex; }
.exit-popup {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-card2));
  border: 1px solid rgba(245,166,35,0.32);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 28px 88px rgba(0,0,0,0.9);
  animation: popIn 0.4s var(--ease-spring);
}
.exit-popup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.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.25rem;
  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.14); color: var(--white); }
.exit-popup h2 { font-size: 1.75rem; font-weight: 900; margin-bottom: 10px; letter-spacing: -0.5px; }
.exit-popup h2 span {
  background: linear-gradient(135deg, #f5a623, #ffd166 55%, #c8841a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.exit-popup p { color: var(--gray-light); font-size: .94rem; margin-bottom: 28px; line-height: 1.72; }

/* ════════════════════════════════════════
   18. MOBILE STICKY CTA BAR (Widget)
   ════════════════════════════════════════ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(9,14,28,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(245,166,35,0.18);
  padding: 11px 16px;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 -8px 28px rgba(0,0,0,0.5);
}

/* ════════════════════════════════════════
   19. FOOTER
   ════════════════════════════════════════ */
footer { background: #030610; border-top: none; padding: 0; }

/* Footer CTA strip */
.footer-cta-strip {
  background: linear-gradient(135deg, rgba(14,24,44,0.99), rgba(8,13,28,0.99));
  border-top: 1px solid rgba(245,166,35,0.1);
  border-bottom: 1px solid rgba(245,166,35,0.07);
  padding: 62px 0;
  position: relative;
  overflow: hidden;
}
.footer-cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 52% 78% at 50% 50%, rgba(245,166,35,0.038), transparent 64%);
  pointer-events: none;
}
.footer-cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  flex-wrap: wrap;
}
.fcta-text h3 {
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.fcta-text h3 span {
  background: linear-gradient(135deg, #f5a623, #ffd166 55%, #c8841a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fcta-text p { color: var(--gray); font-size: .9rem; max-width: 400px; line-height: 1.72; }
.fcta-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; flex-shrink: 0; }

/* APK mini-card */
.apk-mini-card {
  background: rgba(7,11,24,0.92);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 14px;
  padding: 15px 20px;
  display: flex; align-items: center; gap: 13px;
  text-decoration: none;
  transition: var(--transition);
  min-width: 195px;
}
.apk-mini-card:hover { border-color: rgba(245,166,35,0.38); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.44); }
.apk-card-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(245,166,35,0.28);
}
.apk-card-label { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--gray); display: block; margin-bottom: 2px; }
.apk-card-title { font-size: .88rem; font-weight: 800; color: var(--white); display: block; }

/* Footer main grid */
.footer-main-wrap { padding: 62px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 54px;
}
.footer-brand .logo-wrap {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.2rem; font-weight: 900;
  margin-bottom: 16px; text-decoration: none; color: var(--white);
}
.footer-brand .logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(245,166,35,0.24);
}
.footer-brand .logo-icon img { width: 22px; height: 22px; object-fit: contain; }
.footer-brand .logo-text span { color: var(--gold); }
.footer-tagline { color: var(--gray); font-size: .82rem; line-height: 1.84; margin-bottom: 18px; }
.footer-disclosure {
  background: rgba(245,166,35,0.03);
  border: 1px solid rgba(245,166,35,0.09);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: .76rem;
  color: var(--gray);
  line-height: 1.78;
  margin-bottom: 22px;
}
.footer-disclosure strong { color: var(--gold); }

/* Social icons */
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--gray);
  transition: all 0.3s var(--ease-spring);
  text-decoration: none;
}
.footer-social a:hover {
  background: rgba(245,166,35,0.1);
  border-color: rgba(245,166,35,0.28);
  color: var(--gold);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 18px rgba(245,166,35,0.14);
}

/* Footer columns */
.footer-col h4 {
  font-size: .73rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.1px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 11px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.footer-col:hover h4::after { width: 40px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .83rem;
  color: var(--gray);
  transition: color 0.2s, padding-left 0.2s var(--ease);
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-col ul a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: .83rem; color: var(--gray); margin-bottom: 11px; }
.footer-contact-item a { color: var(--gray); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-item img { width: 18px; height: 18px; object-fit: contain; opacity: 0.6; }

/* Live support pill */
.live-support-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 13px;
  background: rgba(16,201,122,0.08);
  border: 1px solid rgba(16,201,122,0.18);
  border-radius: 50px;
  font-size: .72rem; font-weight: 700;
  color: var(--green);
  margin-bottom: 14px;
}

/* Animated divider */
.footer-anim-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(245,166,35,0.16), transparent); position: relative; overflow: hidden; }
.footer-anim-divider::before {
  content: '';
  position: absolute; top: 0; left: -60%;
  width: 48%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.75), transparent);
  animation: divSweep 5.5s ease-in-out infinite;
}
@keyframes divSweep { 0%{ left:-60% } 100%{ left:110% } }

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 28px 0 36px;
  display: flex; flex-direction: column;
  gap: 14px; align-items: center; text-align: center;
}
.age-badges-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; justify-content: center; }
.age-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 50px;
  font-size: .74rem; font-weight: 700;
  transition: transform 0.2s;
  cursor: default;
}
.age-badge:hover { transform: translateY(-1px); }
.age-badge-18   { background: rgba(240,68,68,0.08); border: 1px solid rgba(240,68,68,0.2); color: var(--red); }
.age-badge-safe { background: rgba(16,201,122,0.08); border: 1px solid rgba(16,201,122,0.2); color: var(--green); }
.age-badge-ssl  { background: rgba(255,255,255,0.04); border: 1px solid var(--border-soft); color: var(--gray); }
.restricted-note  { font-size: .72rem; color: var(--gray); max-width: 700px; line-height: 1.76; }
.restricted-note .states { color: var(--red); font-weight: 600; }
.footer-disclaimer { font-size: .72rem; color: var(--gray); max-width: 700px; line-height: 1.76; }
.copyright { font-size: .78rem; color: var(--gray); }
.copyright a { color: var(--gold); transition: opacity 0.2s; }
.copyright a:hover { opacity: .78; }

/* ════════════════════════════════════════
   20. NOTICE / ALERT BOXES
   ════════════════════════════════════════ */
.notice-box {
  display: flex; gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: .875rem; line-height: 1.68;
  font-family: var(--font-sans);
}
.notice-box .notice-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.notice-gold  { background: rgba(245,166,35,0.07); border: 1px solid rgba(245,166,35,0.2); color: var(--gray-light); }
.notice-green { background: rgba(16,201,122,0.07); border: 1px solid rgba(16,201,122,0.2); color: var(--gray-light); }
.notice-red   { background: rgba(240,68,68,0.07);  border: 1px solid rgba(240,68,68,0.2);  color: var(--gray-light); }

/* ════════════════════════════════════════
   21. SEO CONTENT BLOCK
   ════════════════════════════════════════ */
.seo-block { padding: 68px 0; background: var(--bg-secondary); }
.seo-inner { max-width: 920px; margin: 0 auto; }
.seo-inner h2 {
  font-size: clamp(1.3rem, 3vw, 1.95rem);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.4px;
  line-height: 1.2;
}
.seo-inner h2 span {
  background: linear-gradient(135deg, #f5a623, #ffd166 55%, #c8841a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.seo-inner h3 { font-size: 1.12rem; font-weight: 700; margin: 32px 0 12px; color: var(--gold-light); letter-spacing: -0.2px; }
.seo-inner p  { color: var(--gray-light); line-height: 1.88; margin-bottom: 18px; font-size: .94rem; }
.seo-inner ul { padding-left: 0; margin-bottom: 18px; display: flex; flex-direction: column; gap: 9px; }
.seo-inner ul li {
  color: var(--gray-light);
  font-size: .94rem;
  line-height: 1.72;
  padding-left: 20px;
  position: relative;
}
.seo-inner ul li::before { content: '›'; position: absolute; left: 0; color: var(--gold); font-weight: 700; font-size: 1.05rem; }
.seo-inner a { color: var(--gold); text-decoration: underline; }
.seo-inner strong { color: var(--white); font-weight: 700; }

/* ════════════════════════════════════════
   22. RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-cta-strip-inner { flex-direction: column; align-items: center; text-align: center; }
  .fcta-text p { margin: 0 auto; }
  .fcta-actions { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-cta-bar { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-main-wrap { padding: 52px 0 0; }
  .footer-cta-strip { padding: 50px 0; }
  .navbar { padding: 8px 14px; }
  .section-pad  { padding: 64px 0; }
  .section-pad-sm { padding: 44px 0; }
  .exit-popup { padding: 36px 24px; }
  .social-proof-popup { max-width: 265px; font-size: .78rem; }
  .page-hero { padding: 48px 0 36px; }
}

/* Touch device optimisations */
@media (pointer: coarse) {
  .btn, .btn-hero-primary, .btn-hero-outline { min-height: 48px; }
  .filter-tab { min-height: 44px; }
  .game-btn   { min-height: 44px; }
  .faq-q      { min-height: 54px; }
  .nav-links a { min-height: 44px; display: inline-flex; align-items: center; }
  .ss-nav-btn { width: 48px; height: 48px; }
  .hamburger  { padding: 10px; }
}

@media (max-width: 480px) {
  .btn-lg { padding: 15px 28px; font-size: .98rem; }
  .btn-xl { padding: 16px 32px; font-size: 1.05rem; }
  .container { padding: 0 14px; }
}

@media (max-width: 390px) {
  html { font-size: 15px; }
  .section-title { font-size: clamp(1.45rem, 5.5vw, 2rem); }
  .section-sub { font-size: .88rem; }
}
@media (max-width: 320px) {
  html { font-size: 14px; }
  .container { padding: 0 10px; }
}

/* ════════════════════════════════════════
   23. PERFORMANCE & ACCESSIBILITY
   ════════════════════════════════════════ */
img { content-visibility: auto; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
body { overflow-x: hidden; }

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

@media print {
  .navbar, .urgency-banner, .mobile-cta-bar, .social-proof-popup,
  .exit-overlay, .footer-cta-strip, #scroll-progress { display: none !important; }
  body { background: white; color: black; }
}
