/* ===== BR AMBEDKAR COMEDY APP - STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Noto+Sans+Devanagari:wght@400;500;600;700;900&display=swap');

:root {
  --blue: #1565C0;
  --blue-dark: #0D47A1;
  --blue-light: #1976D2;
  --saffron: #FF6F00;
  --saffron-light: #FFA000;
  --gold: #FFD600;
  --white: #FFFFFF;
  --bg: #F0F4FF;
  --bg2: #E8EEF9;
  --text: #1A1A2E;
  --text2: #444466;
  --card-bg: #FFFFFF;
  --border: #C5D3F0;
  --shadow: 0 4px 24px rgba(21,101,192,0.13);
  --radius: 16px;
  --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Baloo 2', 'Noto Sans Devanagari', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  padding-bottom: 80px;
  overflow-x: hidden;
}

/* ===== SPLASH ===== */
#splash {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, #0D47A1 0%, #1565C0 50%, #FF6F00 100%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#splash.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.splash-inner { text-align: center; color: #fff; }
.splash-wheel {
  font-size: 5rem; display: block; margin-bottom: 1rem;
  animation: spinWheel 2s linear infinite;
}
@keyframes spinWheel { to { transform: rotate(360deg); } }
.splash-title { font-size: 3rem; font-weight: 900; letter-spacing: 2px; }
.splash-sub { font-size: 1.1rem; opacity: 0.85; margin: 0.5rem 0 1.5rem; }
.splash-bar { width: 220px; height: 6px; background: rgba(255,255,255,0.3); border-radius: 99px; margin: 0 auto; overflow: hidden; }
.splash-fill { height: 100%; background: #FFD600; border-radius: 99px; animation: fillBar 2s ease forwards; }
@keyframes fillBar { from { width: 0; } to { width: 100%; } }

/* ===== HEADER ===== */
#header {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(135deg, #0D47A1, #1565C0);
  box-shadow: 0 2px 16px rgba(13,71,161,0.3);
}
.header-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1rem;
}
.header-logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-wheel { font-size: 2rem; animation: spinWheel 8s linear infinite; }
.logo-text { display: flex; flex-direction: column; }
.logo-main { color: #FFD600; font-weight: 800; font-size: 1rem; line-height: 1.2; }
.logo-sub { color: rgba(255,255,255,0.8); font-size: 0.65rem; }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.download-badge {
  display: flex; align-items: center; gap: 0.3rem;
  background: rgba(255,214,0,0.2); border: 1px solid rgba(255,214,0,0.4);
  border-radius: 99px; padding: 0.3rem 0.7rem; color: #FFD600; font-size: 0.75rem;
}
.dl-icon { font-size: 0.9rem; }
.dl-label { opacity: 0.8; }
.menu-toggle {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px; padding: 4px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: 0.3s;
}

/* ===== NAV ===== */
.main-nav { border-top: 1px solid rgba(255,255,255,0.15); overflow-x: auto; }
.main-nav::-webkit-scrollbar { display: none; }
.main-nav ul { display: flex; list-style: none; padding: 0 0.5rem; min-width: max-content; }
.main-nav ul li a {
  display: flex; align-items: center; gap: 0.3rem;
  color: rgba(255,255,255,0.75); text-decoration: none;
  padding: 0.6rem 0.8rem; font-size: 0.82rem; font-weight: 600;
  border-bottom: 3px solid transparent; white-space: nowrap;
  transition: all 0.2s;
}
.main-nav ul li a:hover, .main-nav ul li a.active {
  color: #FFD600; border-bottom-color: #FFD600;
}

/* ===== SEARCH ===== */
.search-wrap { background: var(--blue-dark); padding: 0.6rem 1rem; }
.search-box {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 99px; padding: 0.4rem 1rem;
}
.search-icon { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.search-box input {
  flex: 1; background: none; border: none; outline: none;
  color: #fff; font-family: inherit; font-size: 0.9rem;
}
.search-box input::placeholder { color: rgba(255,255,255,0.5); }
#searchClear {
  background: none; border: none; color: rgba(255,255,255,0.5);
  cursor: pointer; font-size: 0.8rem; padding: 0;
}

/* ===== SECTIONS ===== */
.section { display: none; padding: 1rem; animation: fadeIn 0.4s ease; }
.section.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center; padding: 1.5rem 1rem 1rem;
  background: linear-gradient(135deg, #0D47A1, #1565C0);
  border-radius: var(--radius); margin-bottom: 1.2rem; color: #fff;
}
.baudh-header { background: linear-gradient(135deg, #E65100, #FF6F00); }
.sh-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.section-header h2 { font-size: 1.6rem; font-weight: 800; color: #FFD600; }
.section-header p { font-size: 0.85rem; opacity: 0.85; margin-top: 0.3rem; }

/* ===== HERO ===== */
.hero-banner {
  background: linear-gradient(135deg, #0D47A1 0%, #1565C0 60%, #1976D2 100%);
  border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem; position: relative; overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.hero-content { flex: 1; color: #fff; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block; background: #FFD600; color: #0D47A1;
  font-size: 0.7rem; font-weight: 800; padding: 0.2rem 0.7rem;
  border-radius: 99px; margin-bottom: 0.6rem;
}
.hero-title { font-size: 1.2rem; font-weight: 900; line-height: 1.3; margin-bottom: 0.4rem; }
.hero-subtitle { font-size: 0.75rem; opacity: 0.85; margin-bottom: 0.4rem; }
.hero-dates { font-size: 0.7rem; color: #FFD600; margin-bottom: 0.8rem; }
.hero-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.btn-primary {
  background: #FFD600; color: #0D47A1; border: none;
  padding: 0.5rem 1rem; border-radius: 99px; font-weight: 700;
  font-family: inherit; font-size: 0.8rem; cursor: pointer; transition: 0.2s;
}
.btn-primary:hover { background: #FFC107; transform: scale(1.04); }
.btn-outline {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5);
  padding: 0.5rem 1rem; border-radius: 99px; font-weight: 700;
  font-family: inherit; font-size: 0.8rem; cursor: pointer; transition: 0.2s;
}
.btn-outline:hover { border-color: #FFD600; color: #FFD600; }
.hero-image-wrap { position: relative; flex-shrink: 0; }
.hero-img-circle {
  width: 110px; height: 110px; border-radius: 50%;
  border: 4px solid #FFD600; overflow: hidden; position: relative; z-index: 1;
}
.hero-img-circle img { width: 100%; height: 100%; object-fit: cover; }
.hero-glow {
  position: absolute; inset: -10px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,214,0,0.3), transparent 70%);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.1); opacity: 1; } }

/* ===== STATS ===== */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem; margin-bottom: 1rem;
}
.stat-card {
  background: var(--card-bg); border-radius: var(--radius-sm);
  padding: 0.8rem 0.4rem; text-align: center;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.stat-num { font-size: 1.3rem; font-weight: 900; color: var(--blue); }
.stat-label { font-size: 0.65rem; color: var(--text2); margin-top: 0.2rem; }

/* ===== HOME CARDS ===== */
.home-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 1rem; }
.home-card {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 1rem; box-shadow: var(--shadow); border: 1px solid var(--border);
  cursor: pointer; transition: 0.25s; position: relative; overflow: hidden;
}
.home-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(21,101,192,0.2); }
.hc-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.home-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--blue); margin-bottom: 0.3rem; }
.home-card p { font-size: 0.72rem; color: var(--text2); line-height: 1.5; }
.hc-arrow {
  position: absolute; bottom: 0.8rem; right: 0.8rem;
  color: var(--saffron); font-size: 1.1rem; font-weight: 700;
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: linear-gradient(90deg, #0D47A1, #1565C0);
  border-radius: var(--radius-sm); padding: 0.6rem 1rem;
  display: flex; align-items: center; gap: 0.8rem; overflow: hidden;
}
.ticker-label { color: #FFD600; font-weight: 800; font-size: 0.8rem; white-space: nowrap; }
.ticker-content { overflow: hidden; flex: 1; }
.ticker-content span {
  display: inline-block; color: rgba(255,255,255,0.9); font-size: 0.8rem;
  animation: ticker 20s linear infinite; white-space: nowrap;
}
@keyframes ticker { from { transform: translateX(100%); } to { transform: translateX(-100%); } }

/* ===== TABS ===== */
.info-tabs {
  display: flex; gap: 0.4rem; overflow-x: auto; padding-bottom: 0.5rem;
  margin-bottom: 1rem; scrollbar-width: none;
}
.info-tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  background: var(--card-bg); border: 2px solid var(--border);
  color: var(--text2); padding: 0.45rem 0.9rem; border-radius: 99px;
  font-family: inherit; font-size: 0.8rem; font-weight: 600;
  cursor: pointer; white-space: nowrap; transition: 0.2s;
}
.tab-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.3s ease; }

/* ===== BIO CARD ===== */
.bio-card {
  display: flex; gap: 1rem; background: var(--card-bg);
  border-radius: var(--radius); padding: 1rem; margin-bottom: 1rem;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.bio-img { flex-shrink: 0; }
.bio-img img {
  width: 100px; height: 130px; object-fit: cover;
  border-radius: var(--radius-sm); border: 3px solid var(--blue);
}
.buddha-img img { border-color: var(--saffron); }
.info-table { width: 100%; border-collapse: collapse; font-size: 0.75rem; }
.info-table tr td { padding: 0.3rem 0.4rem; border-bottom: 1px solid var(--border); }
.info-table tr td:first-child { color: var(--blue); font-weight: 700; white-space: nowrap; }

/* ===== CONTENT BLOCK ===== */
.content-block {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 1rem; margin-bottom: 1rem; box-shadow: var(--shadow);
  border-left: 4px solid var(--blue);
}
.content-block h3 { color: var(--blue); font-size: 1rem; margin-bottom: 0.6rem; }
.content-block p { font-size: 0.82rem; line-height: 1.7; color: var(--text2); margin-bottom: 0.6rem; }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 1.5rem; }
.timeline::before {
  content: ''; position: absolute; left: 0.6rem; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--blue), var(--saffron));
}
.tl-item { position: relative; margin-bottom: 1.2rem; }
.tl-item::before {
  content: ''; position: absolute; left: -1.1rem; top: 0.3rem;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--blue); border: 2px solid #fff; box-shadow: 0 0 0 2px var(--blue);
}
.tl-year {
  display: inline-block; background: var(--blue); color: #FFD600;
  font-size: 0.75rem; font-weight: 800; padding: 0.15rem 0.6rem;
  border-radius: 99px; margin-bottom: 0.3rem;
}
.tl-body {
  background: var(--card-bg); border-radius: var(--radius-sm);
  padding: 0.7rem; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.tl-body h4 { font-size: 0.88rem; color: var(--blue); margin-bottom: 0.3rem; }
.tl-body p { font-size: 0.78rem; color: var(--text2); line-height: 1.5; }

/* ===== STRUGGLE GRID ===== */
.struggle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.struggle-card {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 1rem; box-shadow: var(--shadow); border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.sc-num {
  font-size: 2.5rem; font-weight: 900; color: rgba(21,101,192,0.08);
  position: absolute; top: 0.3rem; right: 0.6rem; line-height: 1;
}
.struggle-card h4 { font-size: 0.85rem; color: var(--blue); margin-bottom: 0.4rem; font-weight: 700; }
.struggle-card p { font-size: 0.75rem; color: var(--text2); line-height: 1.5; }

/* ===== ACHIEVEMENTS ===== */
.achieve-list { display: flex; flex-direction: column; gap: 0.8rem; }
.achieve-item {
  display: flex; gap: 0.8rem; align-items: flex-start;
  background: var(--card-bg); border-radius: var(--radius);
  padding: 0.9rem; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.ai-icon { font-size: 1.6rem; flex-shrink: 0; }
.achieve-item h4 { font-size: 0.88rem; color: var(--blue); margin-bottom: 0.3rem; }
.achieve-item p { font-size: 0.78rem; color: var(--text2); line-height: 1.5; }

/* ===== QUOTES ===== */
.quotes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.quote-card {
  background: linear-gradient(135deg, #0D47A1, #1565C0);
  border-radius: var(--radius); padding: 1rem; color: #fff; position: relative;
}
.qc-mark { font-size: 3rem; color: rgba(255,214,0,0.4); line-height: 0.8; margin-bottom: 0.5rem; }
.quote-card p { font-size: 0.8rem; line-height: 1.6; margin-bottom: 0.6rem; }
.quote-card span { font-size: 0.7rem; color: #FFD600; font-weight: 600; }

/* ===== TEACHING CARDS ===== */
.teaching-cards { display: flex; flex-direction: column; gap: 0.8rem; }
.teach-card {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 1rem; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.teach-card h3 { font-size: 1rem; color: var(--saffron); margin-bottom: 0.8rem; font-weight: 700; }
.teach-list { display: flex; flex-direction: column; gap: 0.5rem; }
.tl-row { display: flex; align-items: flex-start; gap: 0.6rem; }
.tl-num {
  background: var(--saffron); color: #fff; width: 22px; height: 22px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; flex-shrink: 0;
}
.tl-row div { font-size: 0.8rem; color: var(--text2); line-height: 1.5; }
.full-width { grid-column: 1 / -1; }
.triratna-row { display: flex; gap: 1rem; justify-content: center; }
.tr-item { text-align: center; flex: 1; }
.tr-icon { font-size: 2rem; margin-bottom: 0.4rem; }
.tr-item h4 { font-size: 0.9rem; color: var(--saffron); font-weight: 700; }
.tr-item p { font-size: 0.75rem; color: var(--text2); }

/* ===== NAVAYAN ===== */
.navayan-points { display: flex; flex-direction: column; gap: 0.8rem; }
.np-item {
  display: flex; gap: 0.8rem; align-items: flex-start;
  background: var(--card-bg); border-radius: var(--radius);
  padding: 0.9rem; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.np-icon { font-size: 1.4rem; flex-shrink: 0; }
.np-item h4 { font-size: 0.88rem; color: var(--blue); margin-bottom: 0.3rem; }
.np-item p { font-size: 0.78rem; color: var(--text2); line-height: 1.5; }

/* ===== PANCH ===== */
.panch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.panch-card {
  background: linear-gradient(135deg, #E65100, #FF6F00);
  border-radius: var(--radius); padding: 1rem; color: #fff; text-align: center;
}
.pc-num { font-size: 2rem; font-weight: 900; color: rgba(255,255,255,0.3); }
.panch-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: 0.4rem; }
.panch-card p { font-size: 0.75rem; opacity: 0.9; line-height: 1.5; }
.big-mantra {
  font-size: 1.1rem; font-weight: 700; color: var(--saffron);
  line-height: 2; text-align: center;
}

/* ===== MAHAPURUSH ===== */
.mp-filter { display: flex; gap: 0.4rem; overflow-x: auto; padding-bottom: 0.5rem; margin-bottom: 1rem; scrollbar-width: none; }
.mp-filter::-webkit-scrollbar { display: none; }
.filter-btn {
  background: var(--card-bg); border: 2px solid var(--border);
  color: var(--text2); padding: 0.4rem 0.8rem; border-radius: 99px;
  font-family: inherit; font-size: 0.78rem; font-weight: 600;
  cursor: pointer; white-space: nowrap; transition: 0.2s;
}
.filter-btn.active { background: var(--saffron); border-color: var(--saffron); color: #fff; }
.mp-grid { display: flex; flex-direction: column; gap: 0.8rem; }
.mp-card {
  display: flex; gap: 0.9rem; background: var(--card-bg);
  border-radius: var(--radius); padding: 0.9rem;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: 0.25s;
}
.mp-card:hover { transform: translateX(4px); border-left: 4px solid var(--blue); }
.mp-card.hidden { display: none; }
.mp-img-wrap { flex-shrink: 0; }
.mp-img-wrap img {
  width: 70px; height: 70px; border-radius: 50%;
  object-fit: cover; border: 3px solid var(--blue);
}
.mp-info h3 { font-size: 0.92rem; color: var(--blue); font-weight: 700; margin-bottom: 0.2rem; }
.mp-tag {
  display: inline-block; background: rgba(21,101,192,0.1); color: var(--blue);
  font-size: 0.65rem; font-weight: 700; padding: 0.15rem 0.5rem;
  border-radius: 99px; margin-bottom: 0.3rem;
}
.mp-info p { font-size: 0.75rem; color: var(--text2); line-height: 1.5; }

/* ===== NEWS ===== */
.news-categories { display: flex; gap: 0.4rem; overflow-x: auto; padding-bottom: 0.5rem; margin-bottom: 1rem; scrollbar-width: none; }
.news-categories::-webkit-scrollbar { display: none; }
.nc-btn {
  background: var(--card-bg); border: 2px solid var(--border);
  color: var(--text2); padding: 0.4rem 0.8rem; border-radius: 99px;
  font-family: inherit; font-size: 0.78rem; font-weight: 600;
  cursor: pointer; white-space: nowrap; transition: 0.2s;
}
.nc-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.news-grid { display: flex; flex-direction: column; gap: 0.8rem; }
.news-card {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 1rem; box-shadow: var(--shadow); border: 1px solid var(--border);
  position: relative; transition: 0.25s;
}
.news-card:hover { transform: translateY(-2px); }
.news-card.featured { border-left: 4px solid var(--saffron); }
.news-card.hidden { display: none; }
.news-badge {
  display: inline-block; background: var(--saffron); color: #fff;
  font-size: 0.65rem; font-weight: 800; padding: 0.15rem 0.5rem;
  border-radius: 99px; margin-bottom: 0.4rem;
}
.news-date { font-size: 0.7rem; color: var(--text2); margin-bottom: 0.3rem; }
.news-card h3 { font-size: 0.92rem; color: var(--text); font-weight: 700; margin-bottom: 0.4rem; }
.news-card p { font-size: 0.78rem; color: var(--text2); line-height: 1.5; margin-bottom: 0.5rem; }
.news-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  padding: 0.15rem 0.5rem; border-radius: 99px;
}
.news-tag.social { background: rgba(21,101,192,0.1); color: var(--blue); }
.news-tag.political { background: rgba(255,111,0,0.1); color: var(--saffron); }
.news-tag.education { background: rgba(46,125,50,0.1); color: #2E7D32; }
.news-tag.rights { background: rgba(123,31,162,0.1); color: #7B1FA2; }

/* ===== DOWNLOAD ===== */
.dl-hero { display: flex; flex-direction: column; gap: 1rem; }
.dl-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.dl-stat {
  background: linear-gradient(135deg, #0D47A1, #1565C0);
  border-radius: var(--radius); padding: 1rem; text-align: center; color: #fff;
}
.ds-num { font-size: 1.4rem; font-weight: 900; color: #FFD600; }
.ds-label { font-size: 0.7rem; opacity: 0.85; margin-top: 0.2rem; }
.dl-buttons { display: flex; flex-direction: column; gap: 0.8rem; }
.dl-btn {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem; border-radius: var(--radius);
  border: none; cursor: pointer; font-family: inherit; transition: 0.2s;
}
.dl-btn:hover { transform: scale(1.02); }
.dl-btn.android { background: #1B5E20; color: #fff; }
.dl-btn.ios { background: #1A1A1A; color: #fff; }
.dl-btn-icon { font-size: 1.8rem; }
.dl-btn small { display: block; font-size: 0.7rem; opacity: 0.8; }
.dl-btn strong { display: block; font-size: 1rem; }
.dl-features {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 1rem; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.dl-features h3 { color: var(--blue); font-size: 1rem; margin-bottom: 0.8rem; }
.dlf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.dlf-item { font-size: 0.8rem; color: var(--text2); display: flex; align-items: center; gap: 0.4rem; }
.share-section {
  background: linear-gradient(135deg, #FF6F00, #FFA000);
  border-radius: var(--radius); padding: 1rem; text-align: center; color: #fff;
}
.share-section h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.share-section p { font-size: 0.8rem; opacity: 0.9; margin-bottom: 0.8rem; }
.share-btns { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; }
.share-btn {
  padding: 0.5rem 1rem; border-radius: 99px; border: none;
  font-family: inherit; font-size: 0.8rem; font-weight: 700; cursor: pointer; transition: 0.2s;
}
.share-btn:hover { transform: scale(1.05); }
.share-btn.whatsapp { background: #25D366; color: #fff; }
.share-btn.facebook { background: #1877F2; color: #fff; }
.share-btn.copy { background: rgba(255,255,255,0.2); color: #fff; border: 1px solid rgba(255,255,255,0.4); }

/* ===== BOTTOM NAV ===== */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: #fff; border-top: 1px solid var(--border);
  display: flex; box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}
.bn-item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  padding: 0.5rem 0.3rem; text-decoration: none; color: var(--text2);
  font-size: 0.6rem; font-weight: 600; transition: 0.2s;
}
.bn-item span { font-size: 1.3rem; margin-bottom: 0.1rem; }
.bn-item.active { color: var(--blue); }
.bn-item:hover { color: var(--blue); }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: #1A1A2E; color: #fff; padding: 0.6rem 1.2rem;
  border-radius: 99px; font-size: 0.82rem; font-weight: 600;
  opacity: 0; transition: 0.3s; pointer-events: none; z-index: 9999; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 400px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .quotes-grid { grid-template-columns: 1fr; }
  .struggle-grid { grid-template-columns: 1fr; }
  .panch-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1rem; }
  .hero-img-circle { width: 85px; height: 85px; }
}
@media (min-width: 600px) {
  .home-cards { grid-template-columns: repeat(4, 1fr); }
  .mp-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .news-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .teaching-cards { display: grid; grid-template-columns: 1fr 1fr; }
}