/* ============================================================
   GoPlay India — Global Stylesheet  v3.0 (Cyberpunk Edition)
   Black · Electric Blue · Neon Green · Glassmorphism
   assets/css/main.css
   ============================================================ */

/* ── 1. CSS CUSTOM PROPERTIES ── */
:root {
  /* ── Backgrounds — pure black ── */
  --bg-primary:    #000000;
  --bg-secondary:  #020407;
  --bg-card:       rgba(0, 6, 14, 0.60);
  --bg-card2:      rgba(0, 4, 10, 0.65);
  --bg-nav:        rgba(0, 0, 4, 0.88);

  /* ── Electric Blue — primary accent ── */
  --gold:          #00cfff;
  --gold-dark:     #0080cc;
  --gold-light:    #66dfff;
  --gold-glow:     rgba(0, 207, 255, 0.32);

  /* ── Neon Green — secondary / highlight ── */
  --neon:          #00ff88;
  --neon-dark:     #00cc6a;
  --neon-glow:     rgba(0, 255, 136, 0.35);

  /* ── Cyan tint ── */
  --cyan:          #00e5ff;
  --cyan-dark:     #009dbe;

  /* ── UI Colors ── */
  --white:         #e2f0ff;
  --gray:          #4a6080;
  --gray-light:    #7a9ab8;
  --green:         #00ff88;
  --red:           #ff3355;
  --blue:          #00cfff;
  --amber:         #ffcc00;

  /* ── Borders ── */
  --border:        rgba(0, 207, 255, 0.14);
  --border-soft:   rgba(255, 255, 255, 0.04);
  --border-hover:  rgba(0, 207, 255, 0.50);
  --border-neon:   rgba(0, 255, 136, 0.30);

  /* ── Shadows ── */
  --shadow:        0 4px 24px rgba(0, 0, 0, 0.85);
  --shadow-lg:     0 12px 48px rgba(0, 0, 0, 0.90);
  --shadow-gold:   0 4px 20px rgba(0, 0, 0, 0.60);
  --shadow-neon:   0 4px 20px rgba(0, 0, 0, 0.60);

  /* ── 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;

  /* ── Glassmorphism ── */
  --glass-bg:      rgba(0, 4, 10, 0.62);
  --glass-border:  rgba(0, 207, 255, 0.13);
  --glass-blur:    blur(20px);
}

/* ── 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%;
}

/* Cyberpunk grid background */
body {
  background-color: var(--bg-primary);
  background-image:
    linear-gradient(rgba(0, 207, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 207, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  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;
  text-shadow: 0 0 40px rgba(0, 207, 255, 0.15);
}
/* Neon green for heading accents */
.section-title span { color: var(--neon); }

.section-sub {
  text-align: center;
  color: var(--gray-light);
  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.4px;
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep on hover */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 100%
  );
  transition: left 0.45s ease;
  pointer-events: none;
}
.btn:hover::before { left: 150%; }

/* ── Primary CTA — electric blue, animated glow ── */
.btn-gold {
  background: linear-gradient(135deg, #00cfff 0%, #0080cc 60%, #005fa3 100%);
  color: #000810;
  font-weight: 900;
  letter-spacing: 0.5px;
  box-shadow:
    0 0 18px rgba(0, 207, 255, 0.55),
    0 4px 20px rgba(0, 207, 255, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  animation: btnGlow 2.5s ease-in-out infinite;
  border: 1px solid rgba(0, 207, 255, 0.4);
}
.btn-gold:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 0 32px rgba(0, 207, 255, 0.80),
    0 8px 32px rgba(0, 207, 255, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #33d9ff 0%, #00aaee 60%, #007acc 100%);
  animation: none;
}
.btn-gold:active { transform: translateY(0) scale(0.99); }

/* ── Secondary outline — neon green border ── */
.btn-outline {
  background: transparent;
  color: var(--neon);
  border: 2px solid var(--neon);
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.20), inset 0 0 12px rgba(0, 255, 136, 0.04);
}
.btn-outline:hover {
  background: rgba(0, 255, 136, 0.10);
  box-shadow: 0 0 28px rgba(0, 255, 136, 0.50), inset 0 0 20px rgba(0, 255, 136, 0.08);
  transform: translateY(-2px);
  color: var(--neon);
}

/* ── Ghost ── */
.btn-ghost {
  background: rgba(0, 207, 255, 0.06);
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(0, 207, 255, 0.12);
  border-color: var(--border-hover);
  box-shadow: 0 0 16px rgba(0, 207, 255, 0.20);
}

.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: 5px 14px;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.badge-gold  {
  background: rgba(0, 207, 255, 0.08);
  color: var(--gold-light);
  border: 1px solid rgba(0, 207, 255, 0.28);
  box-shadow: 0 0 8px rgba(0, 207, 255, 0.12);
}
.badge-green {
  background: rgba(0, 255, 136, 0.08);
  color: var(--neon);
  border: 1px solid rgba(0, 255, 136, 0.28);
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.12);
}
.badge-red  { background: rgba(255, 51, 85, 0.10); color: var(--red); border: 1px solid rgba(255, 51, 85, 0.28); }
.badge-blue { background: rgba(0, 207, 255, 0.08); color: var(--gold-light); border: 1px solid var(--border); }

/* ── 7. GLASSMORPHISM CARDS ── */
.card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 207, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0, 207, 255, 0.18), 0 0 0 1px rgba(0, 207, 255, 0.25);
  border-color: rgba(0, 207, 255, 0.35);
}

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

/* ── 9. URGENCY BANNER ── */
.urgency-banner {
  background: linear-gradient(90deg, #000d20, #001a3a, #000d20);
  border-bottom: 1px solid rgba(0, 207, 255, 0.30);
  color: #ffffff;
  text-align: center;
  padding: 10px 20px;
  font-weight: 700;
  font-size: .9rem;
  position: relative;
  z-index: 1001;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 20px rgba(0, 207, 255, 0.15);
}
.urgency-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.6), rgba(0, 207, 255, 0.8), rgba(0, 255, 136, 0.6), transparent);
}
.urgency-banner a { color: var(--neon); text-decoration: underline; }
.urgency-banner .pulse { animation: pulse 2s ease-in-out infinite; color: var(--neon); }

/* ── 10. NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 2, 8, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 207, 255, 0.15);
  transition: box-shadow 0.3s, background 0.3s;
}
.navbar.scrolled {
  background: rgba(0, 1, 5, 0.95);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(0, 207, 255, 0.08);
  border-bottom-color: rgba(0, 207, 255, 0.25);
}

.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, #00cfff, #005fa3);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #000;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0, 207, 255, 0.55), inset 0 1px 0 rgba(255,255,255,0.2);
}
.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;
  text-shadow: 0 0 20px rgba(0, 207, 255, 0.35);
}
.nav-logo .logo-text span { color: var(--neon); }

/* 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, box-shadow 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  background: rgba(0, 207, 255, 0.08);
  box-shadow: 0 0 14px rgba(0, 207, 255, 0.12);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--neon));
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(0, 207, 255, 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(--gold-light);
  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: rgba(0, 4, 12, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  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;
  border: 1px solid transparent;
}
.mobile-menu a:hover {
  color: var(--gold-light);
  background: rgba(0, 207, 255, 0.07);
  border-color: rgba(0, 207, 255, 0.12);
}
.mobile-menu .btn { margin-top: 8px; }

/* ── 11. BREADCRUMB ── */
.breadcrumb-bar {
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 4, 10, 0.60);
  backdrop-filter: blur(12px);
}
.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; color: var(--gold); }

/* ── 12. PAGE HERO (inner pages) ── */
.page-hero {
  padding: 60px 0 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0, 10, 24, 0.90) 0%, transparent 100%);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0, 207, 255, 0.12), transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 100%, rgba(0, 255, 136, 0.06), transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 207, 255, 0.5), rgba(0, 255, 136, 0.4), rgba(0, 207, 255, 0.5), transparent);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
  text-shadow: 0 0 40px rgba(0, 207, 255, 0.20);
}
.page-hero h1 span { color: var(--neon); text-shadow: 0 0 24px rgba(0, 255, 136, 0.50); }
.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(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: rgba(0, 207, 255, 0.30); box-shadow: 0 0 16px rgba(0, 207, 255, 0.10); }
.faq-item.open  { border-color: rgba(0, 207, 255, 0.50); box-shadow: 0 0 24px rgba(0, 207, 255, 0.14); }

.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(0, 207, 255, 0.10);
  border-radius: 50%;
  border: 1px solid rgba(0, 207, 255, 0.20);
  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, box-shadow 0.3s;
  color: var(--gold-light);
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 14px rgba(0, 207, 255, 0.60);
  border-color: var(--gold);
}

.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 rgba(0, 207, 255, 0.10);
}
.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(0, 207, 255, 0.08);
  border: 1px solid rgba(0, 207, 255, 0.20);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 207, 255, 0.10);
}
.trust-item img.t-icon { padding: 6px; object-fit: contain; }

/* ── 15. INTERNAL LINKS STRIP ── */
.internal-strip {
  padding: 44px 0;
  background: rgba(0, 3, 8, 0.75);
  backdrop-filter: blur(12px);
  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 rgba(0, 207, 255, 0.18);
  background: rgba(0, 5, 12, 0.62);
  backdrop-filter: blur(12px);
  color: var(--gray-light);
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}
.internal-link-btn:hover {
  border-color: rgba(0, 255, 136, 0.40);
  color: var(--neon);
  background: rgba(0, 255, 136, 0.06);
  box-shadow: 0 0 16px rgba(0, 255, 136, 0.15);
  transform: translateY(-1px);
}

/* ── 16. SOCIAL PROOF POPUP ── */
.social-proof-popup {
  position: fixed;
  bottom: 90px;
  left: 16px;
  z-index: 998;
  background: rgba(0, 16, 36, 0.80);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 207, 255, 0.25);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 207, 255, 0.12);
  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, #00cfff, #005fa3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #000;
  font-size: .9rem;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 207, 255, 0.50);
}
.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(--neon);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--neon);
  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.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}
.exit-overlay.show { display: flex; }

.exit-popup {
  background: rgba(0, 16, 36, 0.90);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(0, 207, 255, 0.35);
  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.95),
    0 0 60px rgba(0, 207, 255, 0.18),
    inset 0 1px 0 rgba(0, 207, 255, 0.10);
  animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.exit-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(0, 207, 255, 0.07);
  border: 1px solid rgba(0, 207, 255, 0.15);
  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(0, 207, 255, 0.15);
  color: var(--white);
  box-shadow: 0 0 12px rgba(0, 207, 255, 0.30);
}
.exit-popup h2 { font-size: 1.75rem; font-weight: 900; margin-bottom: 10px; }
.exit-popup h2 span { color: var(--neon); text-shadow: 0 0 20px rgba(0, 255, 136, 0.55); }
.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(0, 2, 8, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0, 207, 255, 0.20);
  padding: 12px 16px;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 -8px 32px rgba(0, 207, 255, 0.10);
}

/* ── 19. FOOTER ── */
footer {
  background: #000204;
  border-top: 1px solid rgba(0, 207, 255, 0.15);
  padding: 64px 0 0;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 207, 255, 0.6), rgba(0, 255, 136, 0.5), rgba(0, 207, 255, 0.6), transparent);
}

.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, #00cfff, #005fa3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: #000;
  font-weight: 900;
  box-shadow: 0 0 14px rgba(0, 207, 255, 0.45);
}
.footer-brand .logo-icon img { width: 22px; height: 22px; object-fit: contain; }
.footer-brand .logo-text span { color: var(--neon); }

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

.footer-disclosure {
  background: rgba(0, 207, 255, 0.04);
  border: 1px solid rgba(0, 207, 255, 0.12);
  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(--neon);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
  text-shadow: 0 0 12px rgba(0, 255, 136, 0.40);
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a {
  font-size: .85rem;
  color: var(--gray);
  transition: color 0.2s, text-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a:hover {
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(0, 207, 255, 0.40);
}

.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 rgba(0, 207, 255, 0.10);
  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(255, 51, 85, 0.08);
  border: 1px solid rgba(255, 51, 85, 0.28);
  color: var(--red);
}
.age-badge-safe {
  background: rgba(0, 255, 136, 0.07);
  border: 1px solid rgba(0, 255, 136, 0.25);
  color: var(--neon);
}
.age-badge-ssl {
  background: rgba(0, 207, 255, 0.06);
  border: 1px solid rgba(0, 207, 255, 0.20);
  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;
  backdrop-filter: blur(12px);
}
.notice-box .notice-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.notice-gold  { background: rgba(0, 207, 255, 0.06); border: 1px solid rgba(0, 207, 255, 0.18); color: var(--gray-light); }
.notice-green { background: rgba(0, 255, 136, 0.06); border: 1px solid rgba(0, 255, 136, 0.18); color: var(--gray-light); }
.notice-red   { background: rgba(255, 51, 85, 0.06);  border: 1px solid rgba(255, 51, 85, 0.18);  color: var(--gray-light); }

/* ── 21. SEO CONTENT BLOCK ── */
.seo-block { padding: 60px 0; background: rgba(0, 4, 10, 0.80); }
.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(--neon); text-shadow: 0 0 20px rgba(0, 255, 136, 0.40); }
.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(--neon); 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. FUTURISTIC NEON GAMING UI UPGRADES v1.0 ──
   Esports / Crypto-Gaming / Neon APK Platform Aesthetic
   Applies ON TOP of existing cyberpunk theme
══════════════════════════════════════════════════════════════ */

/* ── Futuristic Fonts ── */
h1, .hero h1, .page-hero h1, .section-title, .countdown-title,
.logo-text, .stat-value { font-family: 'Orbitron', var(--font-sans); }

.btn, .nav-links a, .game-btn, .filter-tab, .badge,
.us-tab, .team-role, .footer-col h4 {
  font-family: 'Rajdhani', var(--font-sans);
  letter-spacing: 0.6px;
}

/* ── Section title micro underline ── */
.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, #00cfff, #00ff88);
  margin: 10px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(0, 207, 255, 0.65);
}

/* ── Neon Game Badges (VIP / Hot / Live / New / Instant) ── */
.nb {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px 3px 7px;
  border-radius: 5px;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  font-family: 'Rajdhani', var(--font-sans);
  position: absolute;
  top: 7px;
  right: 7px;
  z-index: 5;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nb-hot {
  background: rgba(255, 55, 20, 0.18);
  border: 1px solid rgba(255, 80, 30, 0.65);
  color: #ff6040;
  box-shadow: 0 0 12px rgba(255, 60, 20, 0.45), inset 0 0 8px rgba(255, 60, 20, 0.08);
  animation: nbGlowFire 2s ease-in-out infinite;
}
.nb-live {
  background: rgba(255, 30, 70, 0.15);
  border: 1px solid rgba(255, 40, 80, 0.60);
  color: #ff3860;
  box-shadow: 0 0 12px rgba(255, 40, 70, 0.40);
  animation: nbGlowRed 1.4s ease-in-out infinite;
}
.nb-vip {
  background: rgba(180, 110, 255, 0.14);
  border: 1px solid rgba(190, 130, 255, 0.55);
  color: #c890ff;
  box-shadow: 0 0 12px rgba(170, 100, 255, 0.35);
  animation: nbGlowPurple 2.4s ease-in-out infinite;
}
.nb-new {
  background: rgba(0, 255, 136, 0.11);
  border: 1px solid rgba(0, 255, 136, 0.50);
  color: #00ff88;
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.32);
  animation: nbGlowGreen 2s ease-in-out infinite;
}
.nb-instant {
  background: rgba(0, 207, 255, 0.11);
  border: 1px solid rgba(0, 207, 255, 0.50);
  color: #00cfff;
  box-shadow: 0 0 12px rgba(0, 207, 255, 0.32);
  animation: nbGlowBlue 2s ease-in-out infinite;
}

/* ── Live dot indicator ── */
.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 700;
  color: #ff3860;
  font-family: 'Rajdhani', var(--font-sans);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.live-dot::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff3860;
  display: inline-block;
  box-shadow: 0 0 8px #ff3860, 0 0 16px rgba(255, 56, 96, 0.40);
  animation: livePulse 1.2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── Cyber corner accents ── */
.cyber-corners { position: relative; }
.cyber-corners::before,
.cyber-corners::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 3;
  pointer-events: none;
  transition: width 0.3s, height 0.3s;
}
.cyber-corners::before {
  top: -1px; left: -1px;
  border-top: 2px solid var(--neon);
  border-left: 2px solid var(--neon);
  box-shadow: -2px -2px 10px rgba(0, 255, 136, 0.35);
}
.cyber-corners::after {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  box-shadow: 2px 2px 10px rgba(0, 207, 255, 0.35);
}
.cyber-corners:hover::before,
.cyber-corners:hover::after { width: 26px; height: 26px; }

/* ── Neon divider ── */
.neon-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,207,255,0.60), rgba(0,255,136,0.50), rgba(0,207,255,0.60), transparent);
  margin: 0;
}

/* ── Gradient text utility ── */
.gradient-text {
  background: linear-gradient(135deg, #00cfff 0%, #00ff88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Neon text utilities ── */
.neon-text-blue  { color: var(--gold-light); text-shadow: 0 0 14px rgba(0,207,255,0.65); }
.neon-text-green { color: var(--neon);       text-shadow: 0 0 14px rgba(0,255,136,0.65); }
.neon-text-red   { color: #ff4466;           text-shadow: 0 0 14px rgba(255,51,85,0.65); }

/* ── Font utilities ── */
.font-orbitron { font-family: 'Orbitron', var(--font-sans) !important; }
.font-rajdhani { font-family: 'Rajdhani', var(--font-sans) !important; }

/* ── Premium download button variant ── */
.btn-download-cta {
  background: linear-gradient(135deg, #00cfff 0%, #0090dd 50%, #00ff88 100%);
  background-size: 200% 100%;
  color: #000a12;
  font-weight: 900;
  font-size: 1.12rem;
  border-radius: 50px;
  padding: 18px 44px;
  border: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Orbitron', var(--font-sans);
  box-shadow:
    0 0 24px rgba(0,207,255,0.65),
    0 0 50px rgba(0,207,255,0.25),
    0 6px 24px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.30);
  animation: dlBtnPulse 2.2s ease-in-out infinite;
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-download-cta:hover {
  transform: translateY(-3px) scale(1.02);
  animation: none;
  box-shadow:
    0 0 40px rgba(0,207,255,0.90),
    0 0 80px rgba(0,207,255,0.40),
    0 0 120px rgba(0,255,136,0.20),
    0 8px 32px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.35);
  background-position: right center;
}

/* ── Rounded pill button variant ── */
.btn-pill { border-radius: 50px !important; }

/* ── Download trust mini-badges ── */
.dl-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.dl-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  border-radius: 5px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-family: 'Rajdhani', var(--font-sans);
  backdrop-filter: blur(6px);
}
.dl-trust-blue {
  background: rgba(0,207,255,0.09);
  border: 1px solid rgba(0,207,255,0.32);
  color: var(--gold-light);
  box-shadow: 0 0 8px rgba(0,207,255,0.18);
}
.dl-trust-green {
  background: rgba(0,255,136,0.09);
  border: 1px solid rgba(0,255,136,0.32);
  color: var(--neon);
  box-shadow: 0 0 8px rgba(0,255,136,0.18);
}
.dl-trust-red {
  background: rgba(255,51,85,0.09);
  border: 1px solid rgba(255,51,85,0.32);
  color: #ff5577;
  box-shadow: 0 0 8px rgba(255,51,85,0.18);
}

/* ── APK hero ribbon badge ── */
.apk-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-family: 'Rajdhani', var(--font-sans);
  background: rgba(0,207,255,0.10);
  border: 1px solid rgba(0,207,255,0.40);
  color: var(--gold-light);
  box-shadow: 0 0 16px rgba(0,207,255,0.22), inset 0 0 12px rgba(0,207,255,0.06);
}
.apk-ribbon .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  animation: livePulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── Hero stats glow ── */
.hero-stat-num {
  font-family: 'Orbitron', var(--font-sans);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--neon);
  text-shadow: 0 0 16px rgba(0,255,136,0.60);
  display: block;
}

/* ── Screenshot section ambient glow ── */
.screenshots-section {
  position: relative;
}
.screenshots-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(0,207,255,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Game card label neon ── */
.ss-label {
  font-family: 'Rajdhani', var(--font-sans) !important;
  letter-spacing: 1px;
}

/* ── Urgency banner upgrade ── */
.urgency-banner {
  font-family: 'Rajdhani', var(--font-sans);
  font-size: .95rem;
  letter-spacing: 0.4px;
  background: linear-gradient(90deg, #000a18, #001228, #000a18) !important;
}

/* ── Scan-line subtle overlay for hero ── */
.has-scanlines {
  position: relative;
}
.has-scanlines::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.055) 3px,
    rgba(0, 0, 0, 0.055) 4px
  );
  pointer-events: none;
  z-index: 1;
}

/* ── Floating orb backgrounds ── */
.orb-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.orb-cyan  { background: rgba(0, 207, 255, 0.10); }
.orb-green { background: rgba(0, 255, 136, 0.07); }
.orb-red   { background: rgba(255, 51, 85,  0.05); }

/* ── RTP pill ── */
.game-rtp {
  font-family: 'Rajdhani', var(--font-sans);
  font-size: .78rem;
  font-weight: 700;
  color: var(--neon);
  letter-spacing: 0.3px;
}

/* ── Game section filter pills ── */
.filter-tab {
  border-radius: 50px !important;
  font-size: .88rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── Hero button pill ── */
.btn-gold { border-radius: 50px !important; }
.btn-outline { border-radius: 50px !important; }

/* ══════════════════════════════════════════════════════════════
   ── 24. PREMIUM LAYOUT REDESIGN ──
   Floating Pill Navbar · Asymmetric Hero · Premium Footer
   Neon Dividers · Dynamic Sections · Modern Spacing
══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   FLOATING PILL NAVBAR
   Navbar wrapper → transparent; nav-inner → the floating pill
───────────────────────────────────────────────────────────── */
.navbar {
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), transparent) !important;
  border-bottom: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 12px 16px;
  box-shadow: none !important;
}
.navbar.scrolled {
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent) !important;
  box-shadow: none !important;
  border-bottom: none !important;
}

/* nav-inner IS the floating pill */
.nav-inner {
  background: rgba(0, 2, 12, 0.84) !important;
  backdrop-filter: blur(32px) !important;
  -webkit-backdrop-filter: blur(32px) !important;
  border: 1px solid rgba(0, 207, 255, 0.22) !important;
  border-radius: 60px !important;
  height: 62px !important;
  max-width: 1140px !important;
  padding: 0 8px 0 20px !important;
  box-shadow:
    0 4px 32px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(0, 207, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.055) !important;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease !important;
}
.navbar.scrolled .nav-inner {
  background: rgba(0, 1, 8, 0.96) !important;
  border-color: rgba(0, 207, 255, 0.38) !important;
  box-shadow:
    0 8px 52px rgba(0, 0, 0, 0.98),
    0 0 32px rgba(0, 207, 255, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

/* Nav CTA tighter in pill */
.nav-cta {
  padding: 9px 20px !important;
  font-size: .85rem !important;
  margin-left: 4px;
}

/* Mobile menu as rounded card below pill */
.mobile-menu {
  max-width: 1140px !important;
  margin: 6px auto 0 !important;
  border-radius: 24px !important;
  border: 1px solid rgba(0, 207, 255, 0.18) !important;
  border-top: 1px solid rgba(0, 207, 255, 0.14) !important;
  background: rgba(0, 3, 14, 0.97) !important;
  padding: 12px 16px 18px !important;
  backdrop-filter: blur(28px) !important;
  -webkit-backdrop-filter: blur(28px) !important;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.90), 0 0 24px rgba(0, 207, 255, 0.08) !important;
}

/* ─────────────────────────────────────────────────────────────
   HERO — ASYMMETRIC LAYOUT
───────────────────────────────────────────────────────────── */

/* Left column vertical accent bar */
.hero-content {
  position: relative;
  padding-left: 20px;
}
.hero-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8%;
  bottom: 8%;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 207, 255, 0.70) 20%,
    rgba(0, 255, 136, 0.55) 60%,
    transparent 100%
  );
  border-radius: 2px;
}

/* Hero image 3D perspective tilt */
.hero-img-wrap {
  transform: perspective(1100px) rotateY(-10deg) rotateX(3deg) !important;
  transition: transform 0.55s ease !important;
  filter: drop-shadow(0 28px 56px rgba(0, 207, 255, 0.24));
}
.hero-img-wrap:hover {
  transform: perspective(1100px) rotateY(-4deg) rotateX(1deg) !important;
}

/* ─────────────────────────────────────────────────────────────
   SECTION NEON DIVIDERS
───────────────────────────────────────────────────────────── */
.neon-section-divider {
  position: relative;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 207, 255, 0.60) 30%,
    rgba(0, 255, 136, 0.45) 50%,
    rgba(0, 207, 255, 0.60) 70%,
    transparent 100%
  );
  overflow: visible;
}
.neon-section-divider::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 7px;
  background: radial-gradient(ellipse, rgba(0, 207, 255, 0.50), transparent 70%);
  border-radius: 50%;
}
.neon-section-divider::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(0, 207, 255, 0.80), 0 0 28px rgba(0, 207, 255, 0.40);
  border: 1px solid rgba(0, 207, 255, 0.50);
}

/* Diagonal section separator */
.diagonal-sep {
  position: relative;
  height: 40px;
  pointer-events: none;
  overflow: hidden;
}
.diagonal-sep::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    178deg,
    var(--bg-secondary) 50%,
    transparent 50%
  );
}

/* ─────────────────────────────────────────────────────────────
   PREMIUM FOOTER TOP-BAR
───────────────────────────────────────────────────────────── */
.footer-top-bar {
  background: rgba(0, 6, 16, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: none;
  border-bottom: 1px solid rgba(0, 207, 255, 0.10);
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.footer-top-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,207,255,0.65), rgba(0,255,136,0.55), rgba(0,207,255,0.65), transparent);
}
.footer-top-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 20% 0%, rgba(0,207,255,0.05), transparent 60%),
    radial-gradient(ellipse 40% 80% at 80% 100%, rgba(0,255,136,0.04), transparent 60%);
  pointer-events: none;
}
.footer-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.footer-top-brand-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-top-brand-name {
  font-family: 'Orbitron', var(--font-sans);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 0 24px rgba(0, 207, 255, 0.30);
  line-height: 1;
}
.footer-top-brand-name span { color: var(--neon); text-shadow: 0 0 18px rgba(0,255,136,0.50); }
.footer-top-brand-tag {
  font-size: .8rem;
  color: var(--gray);
  font-family: 'Rajdhani', var(--font-sans);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.footer-top-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Footer stats strip inside the container */
.footer-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0, 207, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  margin: 44px 0 48px;
  border: 1px solid rgba(0, 207, 255, 0.10);
}
.footer-strip-item {
  background: rgba(0, 3, 12, 0.88);
  padding: 22px 16px;
  text-align: center;
  position: relative;
}
.footer-strip-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 18%; bottom: 18%;
  width: 1px;
  background: rgba(0, 207, 255, 0.12);
}
.fstrip-val {
  font-family: 'Orbitron', var(--font-sans);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--neon);
  text-shadow: 0 0 18px rgba(0, 255, 136, 0.55);
  display: block;
  margin-bottom: 4px;
}
.fstrip-lbl {
  font-family: 'Rajdhani', var(--font-sans);
  font-size: .72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

/* Revamped footer grid layout — 5 columns on wide */
.footer-grid {
  grid-template-columns: 1.6fr 1fr 1fr 1fr !important;
}

/* Quick-link APK badge in footer nav */
.footer-apk-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 6px;
  background: rgba(0, 207, 255, 0.08);
  border: 1px solid rgba(0, 207, 255, 0.25);
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 700;
  font-family: 'Rajdhani', var(--font-sans);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 8px;
  transition: var(--transition);
  text-decoration: none;
}
.footer-apk-badge:hover {
  background: rgba(0, 207, 255, 0.14);
  border-color: rgba(0, 207, 255, 0.45);
  box-shadow: 0 0 12px rgba(0, 207, 255, 0.22);
}

/* Footer bottom neon border */
.footer-bottom {
  border-top-color: rgba(0, 207, 255, 0.12) !important;
  position: relative;
}
.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,207,255,0.45), rgba(0,255,136,0.35), rgba(0,207,255,0.45), transparent);
}

/* ─────────────────────────────────────────────────────────────
   SECTION VISUAL IMPROVEMENTS
───────────────────────────────────────────────────────────── */

/* Alternating backgrounds — override the flat grey */
.stats-bar {
  border-top-color: rgba(0, 207, 255, 0.20) !important;
  border-bottom-color: rgba(0, 255, 136, 0.10) !important;
}

/* Features — slight left indent to break rigidity */
.features { padding: 88px 0 72px !important; }

/* Screenshots — more breathing room */
.screenshots-section { padding: 88px 0 68px !important; }

/* Countdown — tighter top, more dramatic */
.countdown-section { padding: 60px 0 80px !important; }

/* Testimonials — more whitespace */
.testimonials { padding: 88px 0 !important; }

/* Games section header-level visual upgrade */
.games-section { padding: 88px 0 72px !important; }

/* FAQ section top spacing */
.faq-section { padding: 80px 0 88px !important; }

/* ─────────────────────────────────────────────────────────────
   MOBILE RESPONSIVE — LAYOUT REDESIGN
───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content::before { display: none; }
  .hero-content { padding-left: 0; }
  .hero-img-wrap { transform: none !important; filter: none; }
  .footer-stats-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar { padding: 8px 10px; }
  .nav-inner { border-radius: 50px !important; height: 56px !important; }
  .mobile-menu { border-radius: 20px !important; }
  .footer-top-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
  .footer-stats-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .navbar { padding: 8px 8px; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-stats-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ── Social proof popup ── */
.sp-text strong { font-family: 'Rajdhani', var(--font-sans); }

/* ── Responsive font adjustments ── */
@media (max-width: 768px) {
  h1, .hero h1, .page-hero h1 {
    font-family: 'Orbitron', var(--font-sans);
    letter-spacing: -0.5px;
  }
  .section-title { font-size: clamp(1.3rem, 5vw, 2rem); }
}
