/* ============================================================
   BIG MUMBAI GAME WEBSITE — PREMIUM CSS
   Design: Dark luxury gaming aesthetic, gold/orange accents
   Fonts: Baloo 2 (display) + Hind (body)
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --gold: #f8b400;
  --gold-light: #ffd166;
  --gold-dark: #c98700;
  --orange: #ff6b1a;
  --orange-light: #ff8c4d;
  --red: #e63946;
  --bg-900: #060612;
  --bg-800: #0d0d1a;
  --bg-700: #12122b;
  --bg-600: #1a1a38;
  --bg-500: #222245;
  --text-primary: #f0eeff;
  --text-secondary: #a8a4cc;
  --text-muted: #6e6a8e;
  --border: rgba(248, 180, 0, 0.15);
  --border-hover: rgba(248, 180, 0, 0.4);
  --shadow-gold: 0 0 30px rgba(248, 180, 0, 0.2);
  --shadow-orange: 0 0 20px rgba(255, 107, 26, 0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Hind', sans-serif;
  font-weight: 400;
  background: var(--bg-900);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- TOP ANNOUNCEMENT BAR ---- */
.top-bar {
  background: linear-gradient(90deg, var(--gold-dark), var(--orange), var(--gold-dark));
  background-size: 200% 100%;
  animation: slideGradient 4s ease infinite;
  padding: 10px 20px;
  text-align: center;
  font-family: 'Hind', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #060612;
}

@keyframes slideGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pulse-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #060612;
  animation: pulseDot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

.top-bar-btn {
  background: #060612;
  color: var(--gold);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}
.top-bar-btn:hover { background: var(--bg-700); }

/* ---- HEADER / NAVBAR ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 6, 18, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.5); }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 41px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(248,180,0,0.4));
  transition: filter var(--transition);
}
.logo:hover .logo-img { filter: drop-shadow(0 0 14px rgba(248,180,0,0.7)); }
/* Keep text logo fallback vars in case needed */
.logo-icon { font-size: 1.8rem; }
.logo-text { color: var(--text-primary); }
.logo-accent { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--gold); background: rgba(248,180,0,0.08); }

.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 160px;
  padding: 8px 0;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 9px 16px;
  font-size: 0.87rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.dropdown-menu li a:hover { color: var(--gold); background: rgba(248,180,0,0.07); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #060612;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 24px;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(248,180,0,0.3);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(248,180,0,0.45);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 32px;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #060612;
  box-shadow: 0 6px 24px rgba(248,180,0,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(248,180,0,0.5);
}
.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1.5px solid rgba(255,255,255,0.18);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #060612;
  transform: translateY(-2px);
}
.btn-tg {
  background: #229ed9;
  color: #fff;
}
.btn-tg:hover { background: #1a8cbf; transform: translateY(-2px); }
.btn-tg-outline {
  background: transparent;
  color: #229ed9;
  border: 2px solid #229ed9;
}
.btn-tg-outline:hover { background: #229ed9; color: #fff; transform: translateY(-2px); }
.btn-large { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }

.pulse-btn {
  animation: pulseShadow 2.5s ease-in-out infinite;
}
@keyframes pulseShadow {
  0%, 100% { box-shadow: 0 6px 24px rgba(248,180,0,0.35); }
  50% { box-shadow: 0 8px 40px rgba(248,180,0,0.7); }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(248,180,0,0.07) 0%, transparent 70%),
              radial-gradient(ellipse 50% 50% at 20% 70%, rgba(255,107,26,0.08) 0%, transparent 60%),
              var(--bg-900);
  padding: 80px 0 40px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f8b400' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(248,180,0,0.1);
  border: 1px solid rgba(248,180,0,0.3);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease both;
}

.hero-title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 18px;
  animation: fadeInUp 0.7s 0.1s ease both;
}
.hero-highlight {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
  animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 0.7s 0.4s ease both;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Baloo 2', cursive;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 0.9s 0.2s ease both;
}
.hero-img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(248,180,0,0.25));
}
.hero-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(248,180,0,0.15), transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ---- TELEGRAM BANNER ---- */
.tg-banner {
  margin: 40px auto;
}
.tg-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #0d2137, #0a1929);
  border: 1px solid rgba(34, 158, 217, 0.3);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  flex-wrap: wrap;
}
.tg-icon { font-size: 1.8rem; }
.tg-inner p {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-secondary);
  min-width: 200px;
}
.tg-inner strong { color: #229ed9; }

/* ---- QUICK CARDS ---- */
.quick-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 auto 60px;
}
.qcard {
  display: block;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.qcard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(248,180,0,0.05), transparent);
  opacity: 0;
  transition: var(--transition);
}
.qcard:hover::before { opacity: 1; }
.qcard:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), var(--shadow-gold);
}
.qcard-icon { font-size: 2.2rem; margin-bottom: 12px; }
.qcard h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.qcard p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.qcard-highlight {
  background: linear-gradient(135deg, rgba(248,180,0,0.12), rgba(255,107,26,0.08));
  border-color: rgba(248,180,0,0.3);
}
.qcard-highlight h3 { color: var(--gold); }

/* ---- MAIN CONTENT GRID ---- */
.main-content { padding: 20px 0 80px; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}


.article-h1 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.3;
}

.article-intro {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 40px;
}
.article-intro p { color: var(--text-secondary); margin-bottom: 14px; font-size: 1rem; }
.article-intro p:last-of-type { margin-bottom: 20px; }

.cta-box {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ARTICLE SECTIONS */
.article-section {
  margin-bottom: 50px;
}

/* SECTION WITH IMAGE LAYOUT */
.section-with-image {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: start;
  margin-top: 16px;
}
.section-image-left {
  grid-template-columns: 260px 1fr;
}
.section-image-left .section-image { order: -1; }
.section-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.screenshot-img {
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px rgba(248,180,0,0.1);
  transition: var(--transition);
  width: 100%;
  max-width: 280px;
}
.screenshot-img:hover {
  border-color: var(--border-hover);
  box-shadow: 0 16px 50px rgba(0,0,0,0.6), 0 0 30px rgba(248,180,0,0.2);
  transform: translateY(-4px);
}
.screenshot-phone {
  max-width: 220px;
  border-radius: 24px;
}
.screenshot-caption {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* FOOTER LOGO */
.footer-logo-link { display: inline-block; margin-bottom: 14px; }
.footer-logo-img {
  height: 41px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(248,180,0,0.3));
}

.section-heading {
  font-family: 'Baloo 2', cursive;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.section-icon { font-size: 1.5rem; }

.article-section p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.97rem;
  line-height: 1.75;
}

/* FEATURE GRID */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: var(--transition);
}
.feature-item:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-gold);
}
.feature-item > span { font-size: 1.6rem; flex-shrink: 0; }
.feature-item strong { display: block; color: var(--text-primary); font-size: 0.95rem; margin-bottom: 4px; }
.feature-item p { font-size: 0.83rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* STYLED LISTS */
.styled-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 0;
}
.styled-list li {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  counter-increment: list-counter;
  position: relative;
}
.styled-list li strong { color: var(--gold); }
.check-list li::before {
  content: '✅';
  margin-right: 10px;
}

/* WARNING BOX */
.warning-box {
  background: rgba(255,107,26,0.08);
  border: 1px solid rgba(255,107,26,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin: 20px 0;
}
.warning-box strong { color: var(--orange-light); }

/* STEPS */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
  position: relative;
}
.steps-container::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--orange));
  opacity: 0.4;
}
.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #060612;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(248,180,0,0.3);
}
.step-content {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  flex: 1;
}
.step-content strong { display: block; color: var(--text-primary); margin-bottom: 4px; font-size: 0.97rem; }
.step-content p { color: var(--text-muted); font-size: 0.87rem; margin: 0; line-height: 1.55; }

.tip-text {
  background: rgba(248,180,0,0.06);
  border: 1px solid rgba(248,180,0,0.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 16px 0 24px !important;
}
.tip-text strong { color: var(--gold); }

/* GIFT CODE SECTION */
.gift-code-section {
  background: linear-gradient(135deg, rgba(248,180,0,0.05), rgba(255,107,26,0.04));
  border: 1px solid rgba(248,180,0,0.2);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.gift-cta-box {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--bg-800);
  border: 1px solid rgba(248,180,0,0.25);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.gift-cta-text { flex: 1; min-width: 200px; }
.gift-cta-text h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.gift-cta-text p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* BENEFITS GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.benefit-card {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  transition: var(--transition);
}
.benefit-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.benefit-icon { font-size: 2rem; margin-bottom: 12px; }
.benefit-card h3 {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.benefit-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* FAQ LIST (inline) */
.faq-list { display: flex; flex-direction: column; gap: 14px; margin: 20px 0; }
.faq-item {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  padding: 14px 18px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.faq-a {
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* COMPARE GRID */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}
.compare-item {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  transition: var(--transition);
}
.compare-item:hover {
  border-color: rgba(34,200,90,0.4);
  background: rgba(34,200,90,0.05);
}

/* FAQ ACCORDION */
.faq-heading { color: var(--gold); }
.faq-accordion { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.faq-card {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-card:hover { border-color: var(--border-hover); }
.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  font-family: 'Baloo 2', cursive;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  gap: 12px;
}
.faq-toggle:hover { color: var(--gold); }
.faq-arrow {
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-toggle.open .faq-arrow { transform: rotate(180deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 0 22px;
}
.faq-body.open {
  max-height: 200px;
  padding: 0 22px 20px;
}

/* DISCLAIMER BOX */
.disclaimer-box {
  background: rgba(230,57,70,0.06);
  border: 1px solid rgba(230,57,70,0.25);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 50px;
}
.disclaimer-box h4 {
  font-family: 'Baloo 2', cursive;
  font-size: 1rem;
  font-weight: 700;
  color: #e07070;
  margin-bottom: 10px;
}
.disclaimer-box p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }

/* ---- SIDEBAR ---- */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 90px;
}
.sidebar-card {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.sidebar-card h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.sidebar-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.cta-card { border-color: rgba(248,180,0,0.3); background: rgba(248,180,0,0.05); }
.cta-card h3 { color: var(--gold); }
.tg-card { border-color: rgba(34,158,217,0.3); background: rgba(34,158,217,0.05); }
.tg-card h3 { color: #229ed9; }

.sidebar-links { display: flex; flex-direction: column; gap: 6px; }
.sidebar-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
}
.sidebar-links li a:hover {
  color: var(--gold);
  background: rgba(248,180,0,0.07);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-800);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(248,180,0,0.04), transparent);
  pointer-events: none;
}

.footer-wave {
  line-height: 0;
  background: var(--bg-900);
}
.footer-wave svg { width: 100%; display: block; }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 20px 40px;
  position: relative;
  z-index: 1;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-tagline {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-links-col h4 {
  font-family: 'Baloo 2', cursive;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links-col a:hover { color: var(--gold); transform: translateX(3px); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-bottom a { color: var(--gold); }
.footer-disclaimer { font-size: 0.76rem !important; opacity: 0.7; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .quick-cards { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-image-wrap { order: -1; }
  .hero-badge { justify-content: center; }
  .hero-subtitle { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: 1fr; }
  .cta-box { flex-direction: column; }
  .feature-grid { grid-template-columns: 1fr; }
  .section-with-image,
  .section-image-left { grid-template-columns: 1fr; }
  .section-image-left .section-image { order: 0; }
  .section-image { align-items: center; }
  .screenshot-img, .screenshot-phone { max-width: 260px; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(6,6,18,0.97);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px 24px;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .dropdown-menu { position: static; background: none; border: none; padding-left: 16px; }
  .nav-dropdown:hover .dropdown-menu { display: block; }
  .quick-cards { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .gift-cta-box { flex-direction: column; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .tg-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 430px) {
  .quick-cards { grid-template-columns: 1fr; }
  .cta-box .btn { width: 100%; text-align: center; }
}

/* ---- INNER PAGE HERO ---- */
.inner-hero {
  background: linear-gradient(135deg, var(--bg-800), var(--bg-700));
  border-bottom: 1px solid var(--border);
  padding: 60px 0 48px;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 10% 50%, rgba(248,180,0,0.06), transparent 60%);
  pointer-events: none;
}
.inner-hero-title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-primary);
  margin: 10px 0 12px;
  line-height: 1.2;
}
.inner-hero-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 640px;
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.breadcrumb a { color: var(--gold); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ---- ACTIVE NAV LINK ---- */
.nav-link.active-page {
  color: var(--gold);
  background: rgba(248,180,0,0.08);
}

/* ---- BLOG GRID ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 10px;
}
.blog-card {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}
.blog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), var(--shadow-gold);
}
.blog-tag {
  display: inline-block;
  background: rgba(248,180,0,0.12);
  color: var(--gold);
  border: 1px solid rgba(248,180,0,0.25);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  align-self: flex-start;
}
.blog-title {
  font-family: 'Baloo 2', cursive;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}
.blog-title a { color: var(--text-primary); transition: var(--transition); }
.blog-title a:hover { color: var(--gold); }
.blog-excerpt { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.blog-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.blog-date { font-size: 0.78rem; color: var(--text-muted); }
.blog-read-more { font-size: 0.85rem; font-weight: 600; color: var(--gold); transition: var(--transition); }
.blog-read-more:hover { color: var(--orange); }

/* SIDEBAR ACTIVE LINK */
.sidebar-links li a.active-link { color: var(--gold); background: rgba(248,180,0,0.08); }

@media (max-width: 760px) {
  .blog-grid { grid-template-columns: 1fr; }
  .inner-hero { padding: 40px 0 32px; }
}

/* ---- E-E-A-T ARTICLE META ---- */
.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  background: rgba(248,180,0,0.05);
  border: 1px solid rgba(248,180,0,0.15);
  border-radius: var(--radius);
  padding: 10px 16px;
  margin-bottom: 28px;
  font-size: 0.83rem;
  color: var(--text-muted);
}
.meta-sep { color: var(--border); }
.meta-date time { color: var(--text-secondary); font-weight: 500; }
.meta-author { color: var(--text-secondary); font-weight: 500; }

/* ---- TABLE OF CONTENTS ---- */
.toc-box {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-bottom: 36px;
}
.toc-box h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}
.toc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
}
.toc-list li { list-style: none; }
.toc-list li a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.toc-list li a:hover { color: var(--gold); }

/* ---- RELATED POSTS ---- */
.related-posts {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 40px;
}
.related-title {
  font-family: 'Baloo 2', cursive;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.related-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
}
.related-list li { list-style: none; }
.related-list li a {
  font-size: 0.93rem;
  color: var(--text-secondary);
  transition: var(--transition);
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius);
  border: 1px solid transparent;
}
.related-list li a:hover {
  color: var(--gold);
  background: rgba(248,180,0,0.06);
  border-color: rgba(248,180,0,0.2);
}
