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

:root {
  --gold: #FFB800;
  --gold-dark: #cc9200;
  --red: #FF3A3A;
  --bg: #0a0a0f;
  --bg2: #111118;
  --bg3: #16161f;
  --card: #1a1a24;
  --card-border: rgba(255,184,0,0.15);
  --text: #f0f0f0;
  --text-muted: #999;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Hind Siliguri', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.accent { color: var(--gold); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 14px 0;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,184,0,0.1);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(10,10,15,0.98);
  padding: 10px 0;
  border-bottom-color: rgba(255,184,0,0.25);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { width: 36px; height: 36px; object-fit: contain; border-radius: 8px; }
.logo-text { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--text); letter-spacing: 1px; }
.logo-accent { color: var(--gold); }

.nav-links { display: flex; list-style: none; gap: 28px; margin-left: auto; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }

.btn-download {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-download:hover { background: var(--gold-dark); transform: translateY(-1px); }
.nav-btn { padding: 8px 18px; font-size: 13px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 20px 60px;
  max-width: 1200px; margin: 0 auto;
  gap: 60px;
  position: relative;
}
.hero-bg-overlay {
  position: fixed; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,184,0,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255,58,58,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content { flex: 1; max-width: 580px; }

.hero-badge {
  display: inline-block;
  background: rgba(255,184,0,0.12);
  border: 1px solid rgba(255,184,0,0.3);
  color: var(--gold);
  font-size: 13px; font-weight: 500;
  padding: 6px 16px; border-radius: 20px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(52px, 8vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.hero-logo { width: 60px; height: 60px; object-fit: contain; border-radius: 12px; vertical-align: middle; margin-right: 12px; }
.hero-sub { font-size: 16px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }

.hero-stats { display: flex; align-items: center; gap: 24px; margin-bottom: 32px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-heading); font-size: 26px; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 12px; color: var(--text-muted); }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.btn-outline {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--text);
  font-family: var(--font-heading); font-weight: 600; font-size: 14px;
  padding: 10px 22px; border-radius: 8px;
  text-decoration: none; transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-note { font-size: 12px; color: var(--text-muted); }

.hero-phone { flex-shrink: 0; }
.phone-frame {
  width: 260px; height: 520px;
  border: 3px solid rgba(255,184,0,0.4);
  border-radius: 36px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 0 60px rgba(255,184,0,0.15), 0 20px 60px rgba(0,0,0,0.5);
  position: relative;
}
.phone-screen { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ===== SECTION COMMONS ===== */
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block;
  background: rgba(255,184,0,0.1);
  border: 1px solid rgba(255,184,0,0.25);
  color: var(--gold);
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 1px;
}

/* ===== FEATURES ===== */
.features { padding: 80px 0; background: var(--bg2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: rgba(255,184,0,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255,184,0,0.08);
}
.feature-icon { font-size: 36px; margin-bottom: 14px; }
.feature-card h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--gold); }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== SCREENSHOTS ===== */
.screenshots { padding: 80px 0; background: var(--bg); }
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: end;
}
.screenshot-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.screenshot-item p { font-size: 13px; color: var(--text-muted); text-align: center; }
.phone-mock {
  width: 100%; aspect-ratio: 9/18;
  border: 2px solid rgba(255,184,0,0.2);
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  transition: all 0.3s ease;
}
.phone-mock img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.phone-mock:hover { border-color: rgba(255,184,0,0.6); transform: translateY(-6px); box-shadow: 0 12px 30px rgba(255,184,0,0.12); }

/* ===== HOW TO PLAY ===== */
.how-to-play { padding: 80px 0; background: var(--bg2); }
.steps-grid {
  display: flex; align-items: center; gap: 12px;
  justify-content: center; flex-wrap: wrap;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  flex: 1; min-width: 180px; max-width: 220px;
  transition: all 0.3s;
}
.step-card:hover { border-color: rgba(255,184,0,0.4); transform: translateY(-3px); }
.step-num {
  width: 48px; height: 48px;
  background: var(--gold);
  color: #000;
  font-family: var(--font-heading); font-size: 22px; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.step-card h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--text-muted); }
.step-arrow { font-size: 28px; color: var(--gold); opacity: 0.5; flex-shrink: 0; }

/* ===== CTA ===== */
.cta-section { padding: 80px 0; background: var(--bg); }
.cta-box {
  background: linear-gradient(135deg, rgba(255,184,0,0.08) 0%, rgba(255,58,58,0.05) 100%);
  border: 1px solid rgba(255,184,0,0.25);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
}
.cta-box h2 { font-family: var(--font-heading); font-size: 42px; font-weight: 700; margin-bottom: 14px; }
.cta-box p { font-size: 16px; color: var(--text-muted); margin-bottom: 28px; }
.big-btn { font-size: 18px; padding: 16px 36px; border-radius: 12px; }
.cta-note { font-size: 13px; color: var(--text-muted); margin-top: 16px; margin-bottom: 0; }

/* ===== CONTACT ===== */
.contact { padding: 80px 0; background: var(--bg2); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  text-decoration: none; color: var(--text);
  transition: all 0.3s;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.contact-card:hover { transform: translateY(-4px); }
.contact-card.whatsapp:hover { border-color: #25D366; box-shadow: 0 8px 30px rgba(37,211,102,0.12); }
.contact-card.facebook:hover { border-color: #1877F2; box-shadow: 0 8px 30px rgba(24,119,242,0.12); }
.contact-card.email:hover { border-color: var(--gold); box-shadow: 0 8px 30px rgba(255,184,0,0.12); }
.contact-icon { font-size: 40px; }
.contact-card h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; }
.contact-card p { font-size: 13px; color: var(--text-muted); word-break: break-all; }
.contact-card span { font-size: 13px; color: var(--gold); margin-top: 4px; }

/* ===== FOOTER ===== */
.footer { background: var(--bg); border-top: 1px solid rgba(255,255,255,0.06); padding: 40px 0 24px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; margin-bottom: 28px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 22px; font-weight: 700; }
.footer-logo { width: 32px; height: 32px; object-fit: contain; border-radius: 6px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding: 100px 20px 40px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-stats { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-phone { display: none; }
  .steps-grid { gap: 8px; }
  .step-arrow { display: none; }
  .step-card { min-width: 140px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--bg); flex-direction: column; padding: 20px; gap: 16px; border-bottom: 1px solid rgba(255,184,0,0.1); }
  .nav-links.open { display: flex; }
  .nav-btn { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .screenshots-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .phone-mock { border-radius: 14px; }
  .cta-box { padding: 36px 20px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
}