/* ===================== MOON SPORTS - APP THEME COLORS ===================== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@400;500;600;700&family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');

:root {
  --primary-green: #A3EC3E;
  --primary-green-dark: #3B6B00;
  --secondary-gold: #E6A817;
  --secondary-gold-light: #FFC84A;
  --secondary-teal: #3ECFE6;
  --secondary-orange: #E67B1A;
  --secondary-orange-light: #FF9A45;

  /* Dark Theme */
  --bg-primary: #1C1C1E;
  --bg-secondary: #2C2C2E;
  --bg-card: #2C2C2E;
  --bg-card-hover: #3A3A3C;
  --border: rgba(255,255,255,0.08);
  --border-light: rgba(255,255,255,0.14);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.85);
  --text-muted: rgba(255,255,255,0.45);
  --accent: #A3EC3E;
  --accent-glow: rgba(163,236,62,0.15);
  --accent-2: #FFC84A;
  --accent-teal: #3ECFE6;
  --accent-teal-glow: rgba(62,207,230,0.15);
  --green: #A3EC3E;
  --red: #FF453A;
  --yellow: #FFC84A;
  --gradient-hero: linear-gradient(135deg, #1C1C1E 0%, #2C2C2E 60%, #1C1C1E 100%);
  --gradient-accent: linear-gradient(135deg, #A3EC3E, #3B6B00);
  --gradient-gold: linear-gradient(135deg, #FFC84A, #E6A817);
  --gradient-teal: linear-gradient(135deg, #3ECFE6, #0099B8);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-accent: 0 0 30px rgba(163,236,62,0.2);
  --nav-bg: rgba(28,28,30,0.96);
  --logo-filter: brightness(0) invert(1);
}

[data-theme="light"] {
  --bg-primary: #F2F2F7;
  --bg-secondary: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-card-hover: #E8F8D0;
  --border: rgba(0,0,0,0.08);
  --border-light: rgba(0,0,0,0.12);
  --text-primary: #1C1C1E;
  --text-secondary: #3A3A3C;
  --text-muted: #8E8E93;
  --accent: #3B6B00;
  --accent-glow: rgba(59,107,0,0.1);
  --accent-2: #E6A817;
  --accent-teal: #0099B8;
  --green: #3B6B00;
  --red: #FF3B30;
  --gradient-hero: linear-gradient(135deg, #F2F2F7 0%, #E8F8D0 50%, #F2F2F7 100%);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-accent: 0 0 20px rgba(163,236,62,0.15);
  --nav-bg: rgba(242,242,247,0.96);
  --logo-filter: none;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Rajdhani', 'Hind Siliguri', sans-serif; background: var(--bg-primary); color: var(--text-primary); transition: background 0.3s, color 0.3s; overflow-x: hidden; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: #A3EC3E; border-radius: 3px; }

/* ── NAVBAR ── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--nav-bg); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 0 1.5rem; height: 64px; display: flex; align-items: center; justify-content: space-between; transition: all 0.3s; }
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand .brand-icon { width: 36px; height: 36px; object-fit: contain; filter: var(--logo-filter); }
.nav-brand .brand-text { height: 20px; object-fit: contain; filter: var(--logo-filter); }
.nav-logo { width: 38px; height: 38px; background: #A3EC3E; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', cursive; font-size: 1.3rem; color: #1C1C1E; font-weight: 900; }
.nav-links { display: flex; align-items: center; gap: 0.2rem; list-style: none; }
.nav-links a { display: block; padding: 0.4rem 0.75rem; text-decoration: none; color: var(--text-secondary); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 8px; transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); background: var(--accent-glow); }
.nav-links a.apply-link { background: #A3EC3E !important; color: #1C1C1E !important; border-radius: 8px; }
.nav-links a.apply-link:hover { opacity: 0.88; }
.nav-controls { display: flex; align-items: center; gap: 0.5rem; }
.btn-icon { width: 36px; height: 36px; border: 1px solid var(--border); background: var(--bg-card); color: var(--text-secondary); border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all 0.2s; }
.btn-icon:hover { border-color: var(--accent); color: var(--accent); }
.lang-btn { padding: 0.3rem 0.7rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; }
.hamburger { display: none; flex-direction: column; gap: 4px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-primary); transition: all 0.3s; border-radius: 2px; }
.mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--nav-bg); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 1rem; z-index: 999; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 0.7rem 1rem; color: var(--text-secondary); text-decoration: none; font-weight: 600; font-size: 1rem; text-transform: uppercase; border-radius: 8px; transition: all 0.2s; }
.mobile-menu a:hover { background: var(--accent-glow); color: var(--accent); }

/* ── HERO ── */
.hero { min-height: 100vh; background: var(--gradient-hero); position: relative; display: flex; align-items: center; padding-top: 64px; overflow: hidden; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.1; pointer-events: none; }
.orb-green { width: 700px; height: 700px; background: #A3EC3E; top: -300px; left: -150px; }
.orb-teal { width: 450px; height: 450px; background: #3ECFE6; bottom: -150px; right: 5%; }
.orb-gold { width: 300px; height: 300px; background: #FFC84A; top: 20%; right: -50px; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(163,236,62,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(163,236,62,0.04) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(163,236,62,0.1); border: 1px solid rgba(163,236,62,0.25); color: #A3EC3E; padding: 0.4rem 1.2rem; border-radius: 50px; font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.5rem; }
[data-theme="light"] .hero-badge { color: var(--primary-green-dark); background: rgba(59,107,0,0.07); border-color: rgba(59,107,0,0.18); }
.hero-badge::before { content: ''; width: 6px; height: 6px; background: #A3EC3E; border-radius: 50%; animation: pulse 2s infinite; }
[data-theme="light"] .hero-badge::before { background: var(--primary-green-dark); }
.hero-title { font-family: 'Bebas Neue', cursive; font-size: clamp(3.5rem, 9vw, 7rem); line-height: 0.92; letter-spacing: 3px; margin-bottom: 1.5rem; }
.hero-title .line1 { display: block; }
.hero-title .line2 { display: block; background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
[data-theme="light"] .hero-title .line2 { background: linear-gradient(135deg, #3B6B00, #A3EC3E); -webkit-background-clip: text; background-clip: text; }
.hero-desc { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 2rem; font-family: 'Hind Siliguri', sans-serif; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-stats-strip { display: flex; gap: 0; margin-top: 1.5rem; }
.hero-stat { display: flex; flex-direction: column; padding: 0 1.5rem; border-right: 1px solid var(--border-light); }
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }
.hero-stat .num { font-family: 'Bebas Neue', cursive; font-size: 2rem; line-height: 1; color: #A3EC3E; }
[data-theme="light"] .hero-stat .num { color: var(--primary-green-dark); }
.hero-stat .lbl { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* ── HERO DOWNLOAD BUTTON ── */
.hero-download { margin-bottom: 1rem; }
.hero-download-label { font-size: 0.7rem; color: var(--text-muted); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.7rem; }
.playstore-btn { display: inline-flex; text-decoration: none; }
.playstore-btn-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1a1a1a;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 0.7rem 1.4rem;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  min-width: 180px;
}
.playstore-btn:hover .playstore-btn-inner {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.5);
  border-color: rgba(163,236,62,0.35);
  background: #222;
}
[data-theme="light"] .playstore-btn-inner { background: #111; border-color: rgba(0,0,0,0.2); }
.playstore-text { display: flex; flex-direction: column; line-height: 1.2; }
.playstore-get { font-size: 0.52rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 1px; }
.playstore-name { font-size: 1.05rem; font-weight: 700; letter-spacing: 0.2px; color: #fff; font-family: 'Rajdhani', sans-serif; }

/* Hero Phone Mockup */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-phone { width: 260px; height: 520px; background: var(--bg-card); border-radius: 40px; border: 1px solid var(--border-light); box-shadow: 0 40px 80px rgba(0,0,0,0.5); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.phone-header { background: #A3EC3E; padding: 1.5rem 1.2rem 1rem; }
.phone-logo-row { display: flex; align-items: center; gap: 6px; margin-bottom: 0.8rem; }
.phone-logo-box { width: 26px; height: 26px; background: #1C1C1E; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', cursive; font-size: 0.75rem; color: #A3EC3E; }
.phone-logo-name { font-family: 'Bebas Neue', cursive; font-size: 0.95rem; letter-spacing: 1px; color: #1C1C1E; }
.phone-title { font-family: 'Bebas Neue', cursive; font-size: 1.4rem; color: #1C1C1E; line-height: 1.1; }
.phone-body { flex: 1; padding: 1rem 1.2rem; display: flex; flex-direction: column; gap: 0.8rem; overflow: hidden; }
.phone-match { background: var(--bg-card-hover); border-radius: 12px; padding: 0.8rem; border: 1px solid var(--border); }
.phone-match-row { display: flex; align-items: center; justify-content: space-between; }
.phone-team-name { font-size: 0.7rem; font-weight: 700; text-align: center; flex: 1; }
.phone-score { font-family: 'Bebas Neue', cursive; font-size: 1.1rem; color: #A3EC3E; padding: 0 0.5rem; }
.phone-live { display: inline-flex; align-items: center; gap: 3px; background: rgba(255,69,58,0.15); color: #FF453A; font-size: 0.58rem; font-weight: 700; padding: 2px 5px; border-radius: 4px; margin-top: 0.3rem; }
.phone-live-dot { width: 4px; height: 4px; background: #FF453A; border-radius: 50%; animation: pulse 1s infinite; }
.phone-news { display: flex; gap: 0.6rem; align-items: center; }
.phone-news-img { width: 42px; height: 42px; border-radius: 8px; background: #A3EC3E; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.phone-news-ttl { font-size: 0.68rem; font-weight: 700; line-height: 1.3; }
.phone-news-dt { font-size: 0.58rem; color: var(--text-muted); margin-top: 2px; }
.phone-bottom { border-top: 1px solid var(--border); padding: 0.7rem 1.2rem; display: flex; justify-content: space-around; }
.phone-nav-ico { font-size: 1rem; opacity: 0.35; }
.phone-nav-ico.active { opacity: 1; }

/* Floating cards */
.float-card { position: absolute; background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 14px; padding: 0.8rem 1rem; box-shadow: var(--shadow-card); }
.float-card-1 { top: 8%; right: -45px; animation: float 4s ease-in-out infinite; }
.float-card-2 { bottom: 12%; left: -55px; animation: float 4s ease-in-out infinite 2s; }
.fc-lbl { font-size: 0.62rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.fc-val { font-family: 'Bebas Neue', cursive; font-size: 1.4rem; color: #A3EC3E; line-height: 1.1; }
[data-theme="light"] .fc-val { color: var(--primary-green-dark); }
.fc-sub { font-size: 0.68rem; color: var(--text-muted); }

/* ── SECTION ── */
.section { padding: 5rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #A3EC3E; margin-bottom: 0.8rem; padding: 0.3rem 1rem; border-radius: 50px; background: rgba(163,236,62,0.1); border: 1px solid rgba(163,236,62,0.2); }
[data-theme="light"] .section-label { color: var(--primary-green-dark); background: rgba(59,107,0,0.07); border-color: rgba(59,107,0,0.15); }
.section-title { font-family: 'Bebas Neue', cursive; font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: 2px; line-height: 1.1; }
.section-title .hl { color: #A3EC3E; }
[data-theme="light"] .section-title .hl { color: var(--primary-green-dark); }
.section-desc { margin-top: 0.8rem; color: var(--text-secondary); font-size: 1rem; font-family: 'Hind Siliguri', sans-serif; }

/* ── FEATURE STRIP ── */
.feature-strip { background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 0; }
.feature-strip-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.feature-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 2rem 1.5rem; border-right: 1px solid var(--border); }
.feature-item:last-child { border-right: none; }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; margin-bottom: 0.8rem; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.fi-green { background: rgba(163,236,62,0.12); }
.fi-gold { background: rgba(255,200,74,0.12); }
.fi-teal { background: rgba(62,207,230,0.12); }
.fi-orange { background: rgba(255,154,69,0.12); }
.feature-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.3rem; }
.feature-desc { font-size: 0.83rem; color: var(--text-muted); font-family: 'Hind Siliguri', sans-serif; }

/* ── BUTTONS ── */
.btn-primary { padding: 0.85rem 2rem; background: #A3EC3E; color: #1C1C1E; border: none; border-radius: 12px; font-weight: 700; font-size: 0.92rem; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; box-shadow: 0 4px 20px rgba(163,236,62,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(163,236,62,0.4); opacity: 0.92; }
.btn-secondary { padding: 0.85rem 2rem; background: transparent; color: var(--text-primary); border: 1px solid var(--border-light); border-radius: 12px; font-weight: 700; font-size: 0.92rem; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }

/* ── CARDS ── */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: all 0.3s; cursor: pointer; }
.card:hover { border-color: rgba(163,236,62,0.35); transform: translateY(-4px); box-shadow: var(--shadow-accent); background: var(--bg-card-hover); }
.card-img-placeholder { width: 100%; height: 200px; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; font-size: 3rem; overflow: hidden; }
.card-img-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.2rem; }
.card-tag { display: inline-block; padding: 0.2rem 0.7rem; background: rgba(163,236,62,0.1); color: #A3EC3E; border-radius: 6px; font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.8rem; }
[data-theme="light"] .card-tag { color: var(--primary-green-dark); background: rgba(59,107,0,0.07); }
.card-title { font-size: 1.05rem; font-weight: 700; line-height: 1.4; margin-bottom: 0.5rem; font-family: 'Hind Siliguri', sans-serif; }
.card-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; font-family: 'Hind Siliguri', sans-serif; }
.card-meta { display: flex; align-items: center; gap: 0.8rem; margin-top: 0.8rem; padding-top: 0.8rem; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--text-muted); }

/* ── GRID ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

/* ── MATCH CARD ── */
.match-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 1.5rem; transition: all 0.3s; }
.match-card:hover { border-color: rgba(163,236,62,0.3); box-shadow: var(--shadow-accent); }
.match-status { display: inline-flex; align-items: center; gap: 6px; padding: 0.25rem 0.8rem; border-radius: 50px; font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem; }
.status-live { background: rgba(255,69,58,0.12); color: #FF453A; }
.status-live::before { content: ''; width: 6px; height: 6px; background: #FF453A; border-radius: 50%; animation: pulse 1s infinite; }
.status-upcoming { background: rgba(163,236,62,0.1); color: #A3EC3E; }
[data-theme="light"] .status-upcoming { color: var(--primary-green-dark); background: rgba(59,107,0,0.07); }
.status-completed { background: rgba(255,200,74,0.1); color: #FFC84A; }
[data-theme="light"] .status-completed { color: #E6A817; }
.match-teams { display: flex; align-items: center; gap: 1rem; }
.team-side { flex: 1; text-align: center; }
.team-logo-circle { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 0.5rem; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; background: var(--bg-secondary); border: 2px solid var(--border); overflow: hidden; }
.team-logo-circle img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 700; font-size: 0.95rem; font-family: 'Hind Siliguri', sans-serif; }
.match-vs { text-align: center; flex-shrink: 0; }
.match-score { font-family: 'Bebas Neue', cursive; font-size: 2.2rem; color: #A3EC3E; letter-spacing: 4px; line-height: 1; }
[data-theme="light"] .match-score { color: var(--primary-green-dark); }
.match-vs-text { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; }
.match-date { text-align: center; margin-top: 1rem; font-size: 0.8rem; color: var(--text-muted); padding-top: 1rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: center; gap: 0.5rem; }

/* ── TEAM CARD ── */
.team-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 2rem 1.5rem; text-align: center; transition: all 0.3s; cursor: pointer; }
.team-card:hover { border-color: rgba(163,236,62,0.4); transform: translateY(-4px); box-shadow: var(--shadow-accent); background: var(--bg-card-hover); }
.team-card-logo { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; background: #A3EC3E; box-shadow: 0 4px 20px rgba(163,236,62,0.3); overflow: hidden; }
.team-card-logo img { width: 100%; height: 100%; object-fit: cover; }
.team-card-name { font-family: 'Bebas Neue', cursive; font-size: 1.4rem; letter-spacing: 1px; margin-bottom: 0.5rem; }
.team-card-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; font-family: 'Hind Siliguri', sans-serif; }

/* ── VIDEO CARD ── */
.video-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: all 0.3s; }
.video-card:hover { border-color: rgba(163,236,62,0.3); transform: translateY(-4px); box-shadow: var(--shadow-accent); }
.video-thumb { position: relative; padding-top: 56.25%; background: var(--bg-secondary); cursor: pointer; }
.video-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-thumb-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.35); transition: background 0.2s; }
.video-play-btn:hover { background: rgba(0,0,0,0.55); }
.play-icon { width: 54px; height: 54px; background: #A3EC3E; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #1C1C1E; font-weight: 900; }
.video-info { padding: 1rem 1.2rem; }
.video-title { font-weight: 700; font-size: 0.95rem; font-family: 'Hind Siliguri', sans-serif; line-height: 1.4; }

/* ── FILTER & SEARCH ── */
.filter-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-tab { padding: 0.5rem 1.2rem; border: 1px solid var(--border); background: transparent; color: var(--text-secondary); border-radius: 10px; cursor: pointer; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.5px; text-transform: uppercase; transition: all 0.2s; font-family: 'Rajdhani', sans-serif; }
.filter-tab:hover, .filter-tab.active { border-color: #A3EC3E; color: #A3EC3E; background: rgba(163,236,62,0.1); }
[data-theme="light"] .filter-tab.active { color: var(--primary-green-dark); border-color: var(--primary-green-dark); }
.search-bar { display: flex; align-items: center; gap: 0.5rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 0.6rem 1rem; max-width: 400px; transition: border-color 0.2s; }
.search-bar:focus-within { border-color: #A3EC3E; }
.search-bar input { flex: 1; background: none; border: none; outline: none; color: var(--text-primary); font-family: 'Hind Siliguri', sans-serif; font-size: 0.95rem; }
.search-bar input::placeholder { color: var(--text-muted); }

/* ── FORMS ── */
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; margin-bottom: 0.5rem; font-weight: 600; font-size: 0.9rem; color: var(--text-secondary); font-family: 'Hind Siliguri', sans-serif; }
.form-label span { color: var(--red); }
.form-input, .form-select, .form-textarea { width: 100%; padding: 0.75rem 1rem; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 10px; color: var(--text-primary); font-family: 'Hind Siliguri', sans-serif; font-size: 0.95rem; transition: all 0.2s; outline: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: #A3EC3E; box-shadow: 0 0 0 3px rgba(163,236,62,0.1); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select option { background: var(--bg-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.photo-upload { border: 2px dashed var(--border); border-radius: 16px; padding: 2rem; text-align: center; cursor: pointer; transition: all 0.2s; }
.photo-upload:hover { border-color: #A3EC3E; background: rgba(163,236,62,0.04); }

/* ── TOURNAMENT CARD ── */
.tournament-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; transition: all 0.3s; border-left: 4px solid #A3EC3E; }
.tournament-card:hover { background: var(--bg-card-hover); box-shadow: var(--shadow-accent); }
.tournament-name { font-family: 'Bebas Neue', cursive; font-size: 1.6rem; letter-spacing: 1px; margin-bottom: 0.5rem; }
.tournament-detail { font-size: 0.9rem; color: var(--text-secondary); display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; font-family: 'Hind Siliguri', sans-serif; }

/* ── APP DOWNLOAD SECTION ── */
.app-download-section {
  background: var(--bg-primary);
  padding: 5rem 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.app-download-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(163,236,62,0.06), transparent 60%);
  pointer-events: none;
}
.app-download-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.app-download-left { display: flex; align-items: flex-start; gap: 1.5rem; }
.app-download-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  background: #A3EC3E;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(163,236,62,0.3);
}
.app-download-icon img { width: 100%; height: 100%; object-fit: cover; }
.app-icon-fallback {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  color: #1C1C1E;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.app-download-text { flex: 1; }
.app-download-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
  line-height: 1.1;
}
.app-download-desc {
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.app-download-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.app-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.3rem 0.8rem;
  background: rgba(163,236,62,0.1);
  border: 1px solid rgba(163,236,62,0.2);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #A3EC3E;
}
[data-theme="light"] .app-feature-pill { color: var(--primary-green-dark); background: rgba(59,107,0,0.07); border-color: rgba(59,107,0,0.15); }

/* Large Play Store Button */
.playstore-btn-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1C1C1E;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  margin-bottom: 1rem;
}
.playstore-btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  border-color: rgba(163,236,62,0.4);
}
[data-theme="light"] .playstore-btn-large { border-color: rgba(0,0,0,0.12); }
.playstore-icon-lg { width: 28px; height: 28px; flex-shrink: 0; }
.playstore-btn-text { display: flex; flex-direction: column; line-height: 1.1; }
.ps-get { font-size: 0.58rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.ps-name { font-size: 1.1rem; font-weight: 700; color: #fff; font-family: 'Rajdhani', sans-serif; letter-spacing: 0.3px; }

.app-rating { display: flex; align-items: center; gap: 0.6rem; }
.app-rating-stars { font-size: 0.85rem; }
.app-rating-text { font-size: 0.78rem; color: var(--text-muted); font-family: 'Hind Siliguri', sans-serif; }

/* App Mockup Right Side */
.app-download-right { display: flex; align-items: center; justify-content: center; }
.app-mockup-phones { position: relative; }
.app-mockup-screen {
  width: 220px;
  height: 380px;
  background: #1C1C1E;
  border-radius: 32px;
  border: 1.5px solid rgba(163,236,62,0.25);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
}
[data-theme="light"] .app-mockup-screen { background: #2C2C2E; border-color: rgba(163,236,62,0.3); }
.mock-header {
  background: #A3EC3E;
  padding: 1rem 1rem 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mock-body {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.mock-row { display: flex; gap: 0.5rem; }
.mock-bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
}
.mock-score-box {
  background: rgba(163,236,62,0.08);
  border: 1px solid rgba(163,236,62,0.2);
  border-radius: 12px;
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

/* ── CTA ── */
.cta-section { background: #A3EC3E; padding: 5rem 1.5rem; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(28,28,30,0.05) 1px, transparent 1px); background-size: 20px 20px; }
.cta-content { position: relative; z-index: 1; }
.cta-title { font-family: 'Bebas Neue', cursive; font-size: clamp(2.5rem, 6vw, 4rem); letter-spacing: 3px; color: #1C1C1E; margin-bottom: 1rem; }
.cta-desc { font-family: 'Hind Siliguri', sans-serif; color: rgba(28,28,30,0.65); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-dark { display: inline-flex; align-items: center; gap: 8px; background: #1C1C1E; color: #A3EC3E; padding: 1rem 2.5rem; border-radius: 12px; font-weight: 700; font-size: 1rem; text-decoration: none; letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s; border: none; cursor: pointer; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.3); }

/* CTA Play Store Button */
.playstore-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(28,28,30,0.15);
  color: #1C1C1E;
  border: 2px solid rgba(28,28,30,0.25);
  border-radius: 12px;
  padding: 0.9rem 1.8rem;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
}
.playstore-btn-cta:hover {
  background: rgba(28,28,30,0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ── FOOTER PLAYSTORE ── */
.footer-playstore { margin-top: 1.2rem; }
.playstore-btn-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card-hover);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.25s;
}
.playstore-btn-footer:hover {
  border-color: rgba(163,236,62,0.4);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ── FOOTER ── */
footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 3rem 1.5rem 1.5rem; margin-top: 0; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-brand-icon { width: 38px; height: 38px; background: #A3EC3E; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', cursive; font-size: 1.2rem; color: #1C1C1E; }
.footer-brand-name { font-family: 'Bebas Neue', cursive; font-size: 1.5rem; letter-spacing: 2px; }
.footer-brand-name span { color: #A3EC3E; }
[data-theme="light"] .footer-brand-name span { color: var(--primary-green-dark); }
.footer-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; font-family: 'Hind Siliguri', sans-serif; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-link { width: 36px; height: 36px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--text-secondary); font-size: 0.9rem; transition: all 0.2s; text-decoration: none; }
.social-link:hover { border-color: #A3EC3E; color: #A3EC3E; }
.footer-heading { font-weight: 700; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; font-family: 'Hind Siliguri', sans-serif; }
.footer-links a:hover { color: #A3EC3E; }
[data-theme="light"] .footer-links a:hover { color: var(--primary-green-dark); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; color: var(--text-muted); }

/* ── PAGE HEADER ── */
.page-header { padding: 5rem 1.5rem 3rem; background: var(--bg-secondary); text-align: center; position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 100%, rgba(163,236,62,0.07), transparent 60%); }
.page-header-content { position: relative; z-index: 1; }
.page-header h1 { font-family: 'Bebas Neue', cursive; font-size: clamp(2.5rem, 6vw, 4rem); letter-spacing: 3px; }
.page-header p { color: var(--text-secondary); margin-top: 0.5rem; font-family: 'Hind Siliguri', sans-serif; }

/* ── SKELETON ── */
.skeleton { background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 10px; }

/* ── MODAL ── */
.modal-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.8); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px; width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto; transform: scale(0.9); transition: transform 0.3s; }
.modal-overlay.open .modal { transform: scale(1); }
.modal-header { padding: 1.5rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.modal-title { font-family: 'Bebas Neue', cursive; font-size: 1.5rem; letter-spacing: 1px; }
.modal-body { padding: 1.5rem; }
.modal-close { background: none; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer; transition: color 0.2s; line-height: 1; }
.modal-close:hover { color: var(--red); }

/* ── TOAST ── */
.toast-container { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 3000; display: flex; flex-direction: column; gap: 0.5rem; }
.toast { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 0.8rem 1.2rem; display: flex; align-items: center; gap: 0.8rem; min-width: 240px; max-width: 360px; animation: slideIn 0.3s ease; font-family: 'Hind Siliguri', sans-serif; font-size: 0.95rem; box-shadow: var(--shadow-card); }
.toast.success { border-left: 4px solid #A3EC3E; }
.toast.error { border-left: 4px solid #FF453A; }
.toast.info { border-left: 4px solid #3ECFE6; }

/* ── CONTACT ── */
.contact-info-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; transition: all 0.3s; }
.contact-info-card:hover { border-color: rgba(163,236,62,0.3); }
.contact-icon { width: 48px; height: 48px; flex-shrink: 0; background: rgba(163,236,62,0.1); border: 1px solid rgba(163,236,62,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.contact-info-text h4 { font-weight: 700; margin-bottom: 0.3rem; font-family: 'Hind Siliguri', sans-serif; }
.contact-info-text p { color: var(--text-secondary); font-size: 0.9rem; font-family: 'Hind Siliguri', sans-serif; }

/* ── PROSE ── */
.prose { max-width: 800px; margin: 0 auto; font-family: 'Hind Siliguri', sans-serif; line-height: 1.8; color: var(--text-secondary); }
.prose h2 { font-family: 'Bebas Neue', cursive; font-size: 1.8rem; letter-spacing: 1px; color: var(--text-primary); margin: 2rem 0 1rem; }
.prose p { margin-bottom: 1rem; }
.prose ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul li { margin-bottom: 0.5rem; }

/* ── ADMIN ── */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar { width: 260px; flex-shrink: 0; background: var(--bg-secondary); border-right: 1px solid var(--border); padding: 1.5rem; position: fixed; top: 0; bottom: 0; left: 0; overflow-y: auto; z-index: 100; }
.admin-main { flex: 1; margin-left: 260px; padding: 1.5rem 2rem; min-height: 100vh; }
.admin-nav-item { display: flex; align-items: center; gap: 0.8rem; padding: 0.7rem 1rem; border-radius: 10px; color: var(--text-secondary); text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: all 0.2s; margin-bottom: 0.2rem; cursor: pointer; border: none; background: none; width: 100%; text-align: left; font-family: 'Hind Siliguri', sans-serif; }
.admin-nav-item:hover, .admin-nav-item.active { background: rgba(163,236,62,0.1); color: #A3EC3E; }
[data-theme="light"] .admin-nav-item:hover, [data-theme="light"] .admin-nav-item.active { color: var(--primary-green-dark); }
.admin-nav-item .icon { width: 20px; text-align: center; }
.admin-section { display: none; }
.admin-section.active { display: block; }
.admin-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; margin-bottom: 1.5rem; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; padding: 0.8rem 1rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.admin-table td { padding: 0.8rem 1rem; border-bottom: 1px solid var(--border); font-family: 'Hind Siliguri', sans-serif; font-size: 0.92rem; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--bg-secondary); }
.btn-sm { padding: 0.3rem 0.7rem; border-radius: 6px; font-size: 0.78rem; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; }
.btn-edit { background: rgba(163,236,62,0.1); color: #A3EC3E; }
[data-theme="light"] .btn-edit { color: var(--primary-green-dark); }
.btn-delete { background: rgba(255,69,58,0.12); color: #FF453A; }
.btn-approve { background: rgba(163,236,62,0.1); color: #A3EC3E; }
.btn-reject { background: rgba(255,69,58,0.12); color: #FF453A; }
.stat-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 1.2rem; text-align: center; }
.stat-box .value { font-family: 'Bebas Neue', cursive; font-size: 2.5rem; color: #A3EC3E; line-height: 1; }
[data-theme="light"] .stat-box .value { color: var(--primary-green-dark); }
.stat-box .label-text { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.3rem; font-family: 'Hind Siliguri', sans-serif; }

/* ── ANIMATIONS ── */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }

/* ── LOGO THEME FILTER ── */
[data-theme="dark"] #nav-logo-img,
[data-theme="dark"] #footer-logo-img { filter: invert(1) brightness(2); }
[data-theme="light"] #nav-logo-img,
[data-theme="light"] #footer-logo-img { filter: brightness(0); }
#nav-logo-img, #footer-logo-img { transition: filter 0.3s; }

/* ── HERO TITLE LANGUAGE ADAPTIVE ── */
.hero-title {
  font-family: 'Bebas Neue', 'Hind Siliguri', cursive;
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}
.hero-title .line1 { display: block; }
.hero-title .line2 {
  display: block;
  color: #A3EC3E;
  background: none;
  -webkit-text-fill-color: #A3EC3E;
}
[data-theme="light"] .hero-title .line2 {
  color: #3B6B00;
  -webkit-text-fill-color: #3B6B00;
}
[lang="bn"] .hero-title .line1,
[lang="bn"] .hero-title .line2 {
  font-family: 'Hind Siliguri', sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
}
[lang="en"] .hero-title .line1,
[lang="en"] .hero-title .line2 {
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 3px;
  line-height: 0.92;
}
:root[lang="en"] .hero-title .line1,
:root[lang="en"] .hero-title .line2,
html[lang="en"] .hero-title .line1,
html[lang="en"] .hero-title .line2 {
  font-family: 'Bebas Neue', cursive !important;
  letter-spacing: 4px !important;
  line-height: 0.92 !important;
  font-weight: 400 !important;
}
html[lang="bn"] .hero-title .line1,
html[lang="bn"] .hero-title .line2 {
  font-family: 'Hind Siliguri', sans-serif !important;
  letter-spacing: 0 !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
}
html[lang="en"] .nav-links a,
html[lang="en"] .mobile-menu a {
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 1px;
}

/* ── NAVBAR HEIGHT FIX ── */
.navbar { height: 80px; }
.mobile-menu { top: 80px; }
.nav-brand #nav-logo-img { height: 70px !important; }
#nav-logo-img { height: 56px !important; object-fit: contain; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .feature-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .app-download-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .app-download-right { display: none; }
}

@media (max-width: 768px) {
  .navbar { height: 60px !important; padding: 0 1rem; }
  .mobile-menu { top: 60px !important; }
  .nav-brand #nav-logo-img, #nav-logo-img { height: 38px !important; }
  .hamburger { display: flex !important; }
  .nav-links { display: none !important; }
  .nav-controls { gap: 0.3rem; }
  .btn-icon { width: 32px; height: 32px; font-size: 0.9rem; }
  .lang-btn { padding: 0.2rem 0.5rem; font-size: 0.75rem; }
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 2rem; padding: 2rem 1rem; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-download { display: flex; flex-direction: column; align-items: center; }
  .hero-stats-strip { justify-content: center; gap: 0; flex-wrap: wrap; }
  .hero-stat { padding: 0 0.8rem; min-width: 70px; text-align: center; }
  .hero-title { font-size: clamp(2.5rem, 15vw, 4rem) !important; }
  .section { padding: 2.5rem 1rem; }
  .grid-3, .grid-2 { grid-template-columns: 1fr !important; }
  .grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .feature-strip-inner { grid-template-columns: repeat(2, 1fr) !important; }
  .cta-title { font-size: 2rem !important; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .page-header h1 { font-size: 2.2rem !important; }
  .mobile-menu a { padding: 0.8rem 1rem; font-size: 1rem; border-bottom: 1px solid var(--border); }
  .mobile-menu a:last-child { border-bottom: none; }
  .app-download-section { padding: 3rem 1rem; }
  .app-download-left { flex-direction: column; align-items: center; text-align: center; }
  .app-download-features { justify-content: center; }
  .app-download-right { display: none; }
  .playstore-btn-large { width: 100%; justify-content: center; }
  .app-rating { justify-content: center; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr !important; }
  .hero-title { font-size: clamp(2rem, 13vw, 3rem) !important; }
  .btn-primary, .btn-secondary { padding: 0.7rem 1.2rem; font-size: 0.85rem; }
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; position: relative; }
  .admin-main { margin-left: 0; }
  .playstore-btn-cta { width: 100%; justify-content: center; }
}





/* ================================================================
   MOON SPORTS — NEW SECTIONS CSS (style.css এর শেষে যোগ করুন)
   ================================================================ */

/* ── HERO FEATURE PILLS ── */
.hero-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.hero-feature-tag {
  padding: 0.35rem 0.9rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  font-family: 'Hind Siliguri', sans-serif;
  transition: all 0.2s;
}
.hero-feature-tag:hover {
  border-color: rgba(163,236,62,0.4);
  color: #A3EC3E;
  background: rgba(163,236,62,0.06);
}
[data-theme="light"] .hero-feature-tag {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.1);
  color: var(--text-secondary);
}
[data-theme="light"] .hero-feature-tag:hover {
  color: var(--primary-green-dark);
  border-color: rgba(59,107,0,0.3);
  background: rgba(59,107,0,0.06);
}

/* ── ABOUT / MISSION STRIP ── */
.about-strip {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.about-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(163,236,62,0.05), transparent 55%),
              radial-gradient(ellipse at 80% 50%, rgba(62,207,230,0.04), transparent 55%);
  pointer-events: none;
}
.about-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Quote Side */
.about-quote-side {
  position: relative;
  padding-left: 1rem;
}
.about-quote-mark {
  font-family: 'Bebas Neue', cursive;
  font-size: 8rem;
  line-height: 0.6;
  color: #A3EC3E;
  opacity: 0.18;
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  pointer-events: none;
  user-select: none;
}
[data-theme="light"] .about-quote-mark { color: var(--primary-green-dark); opacity: 0.12; }
.about-quote-text {
  font-family: 'Hind Siliguri', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-left: 3px solid #A3EC3E;
  padding-left: 1.5rem;
}
[data-theme="light"] .about-quote-text { border-color: var(--primary-green-dark); }
.about-quote-source {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #A3EC3E;
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
[data-theme="light"] .about-quote-source { color: var(--primary-green-dark); }
.about-quote-sub {
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  padding-left: 1.5rem;
}

/* Points Side */
.about-points-side {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s;
}
.about-point:hover {
  border-color: rgba(163,236,62,0.3);
  background: var(--bg-card-hover);
  transform: translateX(6px);
}
.about-point-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(163,236,62,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.about-point-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  font-family: 'Hind Siliguri', sans-serif;
  color: var(--text-primary);
}
.about-point-text p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-family: 'Hind Siliguri', sans-serif;
}

/* ── APP FEATURES SECTION ── */
.app-features-section {
  background: var(--bg-secondary);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}
.app-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.app-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 1.2rem;
  transition: all 0.3s;
}
.app-feature-card:hover {
  border-color: rgba(163,236,62,0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent);
  background: var(--bg-card-hover);
}
.afc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.app-feature-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Hind Siliguri', sans-serif;
  color: var(--text-primary);
  line-height: 1.4;
}
.app-feature-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-family: 'Hind Siliguri', sans-serif;
}

/* ── CTA TAGLINE ── */
.cta-tagline {
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(28,28,30,0.55);
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

/* ── FOOTER TAGLINE ── */
.footer-tagline {
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  margin-bottom: 1rem;
  font-style: italic;
}

/* ── RESPONSIVE: NEW SECTIONS ── */
@media (max-width: 1024px) {
  .app-features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-strip-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-quote-mark { font-size: 6rem; }
}
@media (max-width: 768px) {
  .about-strip { padding: 3rem 1rem; }
  .about-point:hover { transform: none; }
  .hero-feature-list { justify-content: center; }
  .app-features-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .app-feature-card { padding: 1.2rem 1rem; }
  .afc-icon { width: 42px; height: 42px; font-size: 1.2rem; }
  .app-feature-card h4 { font-size: 0.88rem; }
}
@media (max-width: 480px) {
  .app-features-grid { grid-template-columns: 1fr; }
  .about-quote-text { font-size: 1.3rem; }
}

/* ── SOCIAL ICONS — BRAND COLORS ── */
.social-link {
  width: 38px;
  height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  text-decoration: none;
  color: var(--text-muted);
}
.social-fb { color: #1877F2; border-color: rgba(24,119,242,0.2); }
.social-fb:hover { background: rgba(24,119,242,0.1); border-color: #1877F2; transform: translateY(-2px); }
.social-yt { color: #FF0000; border-color: rgba(255,0,0,0.2); }
.social-yt { display:flex; align-items:center; justify-content:center; }
.social-yt:hover { background: rgba(255,0,0,0.1); border-color: #FF0000; transform: translateY(-2px); }
.social-ig { color: #E1306C; border-color: rgba(225,48,108,0.2); }
.social-ig:hover { background: rgba(225,48,108,0.1); border-color: #E1306C; transform: translateY(-2px); }

/* ── WHATSAPP BUTTON ── */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
  padding: 0.6rem 1.1rem;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 10px;
  color: #25D366;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Hind Siliguri', sans-serif;
  text-decoration: none;
  transition: all 0.25s;
  width: fit-content;
}
.whatsapp-btn:hover {
  background: rgba(37,211,102,0.18);
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.2);
}