@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;900&family=Mukta:wght@400;500;600;700&family=Noto+Sans+Devanagari:wght@400;500;600;700&family=Noto+Serif+Devanagari:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

/* ==========================================================================
   Prabhu Vandan (prabhuvandan.com) - Spiritual & Responsive Stylesheet
   Designed for Mobile-First ergonomics & Desktop grand temple aesthetics
   ========================================================================== */

:root {
  /* Color Palette: Sacred Saffron, Temple Gold & Sandalwood */
  --saffron-primary: #FF6A00;
  --saffron-deep: #D84315;
  --saffron-glow: rgba(255, 106, 0, 0.4);
  --gold-primary: #FFD700;
  --gold-dark: #C5A028;
  --gold-glow: rgba(255, 215, 0, 0.35);
  --crimson: #B71C1C;
  --cream-bg: #FCF9F2;
  --cream-card: #FFFFFF;
  --text-dark: #2C1810;
  --text-muted: #6D5D55;
  --border-subtle: #E8DEC8;
  --shadow-warm: 0 10px 30px rgba(184, 80, 0, 0.08);
  --shadow-gold: 0 8px 25px rgba(255, 170, 0, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --font-serif: 'Noto Serif Devanagari', 'Georgia', serif;
  --font-sans: 'Noto Sans Devanagari', 'Poppins', sans-serif;
  --font-devanagari: 'Noto Serif Devanagari', 'Noto Sans Devanagari', serif;
  --header-height: 70px;
}

/* Dark Temple Theme */
[data-theme="dark"] {
  --cream-bg: #140D07;
  --cream-card: #20150E;
  --text-dark: #FFF4E6;
  --text-muted: #BBAAA0;
  --border-subtle: #3D291C;
  --shadow-warm: 0 10px 35px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 8px 30px rgba(255, 150, 0, 0.22);
}

/* Global Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--cream-bg);
  color: var(--text-dark);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for mobile bottom bar */
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Typography */
h1, h2, h3, h4, .brand-title {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Sacred Top Ribbon (Panchang) */
.top-panchang-ribbon {
  background: linear-gradient(90deg, #6B0F1A 0%, #B71C1C 50%, #6B0F1A 100%);
  color: #FFE8A3;
  font-size: 0.82rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  font-weight: 500;
}

.panchang-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.panchang-badges {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.panchang-badge {
  background: rgba(0, 0, 0, 0.25);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cream-card);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(10px);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-dark);
}

.om-symbol {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--saffron-primary), var(--gold-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #FFF;
  box-shadow: 0 4px 15px var(--saffron-glow);
}

.brand-text h1 {
  font-size: 1.35rem;
  line-height: 1.1;
  background: linear-gradient(90deg, var(--saffron-deep), var(--saffron-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
}

.nav-links {
  display: none;
  gap: 1.25rem;
  list-style: none;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
    align-items: center;
  }
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--saffron-primary);
  background: rgba(255, 106, 0, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Language Selector Dropdown */
.lang-select-wrapper {
  position: relative;
}

.lang-select {
  appearance: none;
  background: rgba(255, 106, 0, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--text-dark);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.45rem 1.8rem 0.45rem 0.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  outline: none;
}

.lang-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 0.65rem;
  color: var(--saffron-primary);
}

.theme-btn {
  background: none;
  border: 1px solid var(--border-subtle);
  color: var(--text-dark);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.theme-btn:hover {
  background: rgba(255, 106, 0, 0.1);
  border-color: var(--saffron-primary);
}

/* Search Bar Section */
.search-hero-section {
  padding: 2rem 0 1rem 0;
  text-align: center;
}

.search-box-wrapper {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3.2rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--border-subtle);
  background: var(--cream-card);
  color: var(--text-dark);
  font-family: inherit;
  font-size: 1rem;
  box-shadow: var(--shadow-warm);
  outline: none;
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: var(--saffron-primary);
  box-shadow: 0 0 0 4px var(--saffron-glow);
}

.search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--saffron-primary);
}

/* Quick Filter Badges */
.quick-tags {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.tag-btn {
  background: var(--cream-card);
  border: 1px solid var(--border-subtle);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.tag-btn:hover, .tag-btn.active {
  background: linear-gradient(135deg, var(--saffron-primary), var(--saffron-deep));
  color: #FFF;
  border-color: transparent;
  box-shadow: 0 4px 12px var(--saffron-glow);
}

/* Virtual Mandir & Live Darshan Area */
.mandir-section {
  padding: 2.5rem 0;
}

.mandir-sanctum {
  background: linear-gradient(180deg, rgba(184, 80, 0, 0.05) 0%, rgba(255, 215, 0, 0.08) 100%);
  border: 2px solid var(--gold-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.mandir-arch-svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  opacity: 0.15;
  pointer-events: none;
}

.deity-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.deity-avatar-box {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, var(--gold-primary), var(--saffron-primary));
  box-shadow: 0 0 35px var(--gold-glow);
  position: relative;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .deity-avatar-box {
    width: 220px;
    height: 220px;
  }
}

.deity-avatar-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #FFF;
  background-color: #FFF4E6;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.deity-selector-chips {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.deity-chip {
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: var(--cream-card);
  border: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}

.deity-chip.active {
  background: var(--gold-primary);
  color: #140D07;
  border-color: var(--gold-dark);
  font-weight: 700;
}

/* Interactive Ritual Controls (Bell, Diya, Flower Shower) */
.ritual-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.ritual-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  border: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-bell {
  background: linear-gradient(135deg, #FFC107, #FFA000);
  color: #2C1810;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.btn-diya {
  background: linear-gradient(135deg, #FF6F00, #E65100);
  color: #FFF;
  box-shadow: 0 4px 15px var(--saffron-glow);
}

.btn-flower {
  background: linear-gradient(135deg, #E91E63, #C2185B);
  color: #FFF;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.35);
}

.ritual-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.ritual-btn:active {
  transform: translateY(1px);
}

/* Japa Mala Counter Widget Card */
.japa-section {
  padding: 2.5rem 0;
}

.japa-card {
  background: var(--cream-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-warm);
  max-width: 550px;
  margin: 0 auto;
}

.japa-ring-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.japa-touch-bead {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron-primary), var(--gold-primary));
  box-shadow: 0 8px 25px var(--saffron-glow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFF;
  user-select: none;
  transition: transform 0.1s ease;
}

.japa-touch-bead:active {
  transform: scale(0.94);
}

.japa-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-serif);
}

.japa-target {
  font-size: 0.75rem;
  opacity: 0.9;
  letter-spacing: 1px;
}

.japa-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1rem 0;
  font-weight: 600;
}

.japa-stats span {
  color: var(--saffron-primary);
  font-size: 1.2rem;
}

.japa-reset-btn {
  background: none;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.japa-reset-btn:hover {
  border-color: var(--crimson);
  color: var(--crimson);
}

/* Category Grid & Devotional Cards */
.section-heading-wrap {
  text-align: center;
  margin-bottom: 2rem;
}

.section-heading-wrap h2 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.section-heading-wrap p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.devo-card {
  background: var(--cream-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.devo-card:hover {
  transform: translateY(-5px);
  border-color: var(--saffron-primary);
  box-shadow: var(--shadow-gold);
}

.card-image-wrap {
  height: 150px;
  position: relative;
  overflow: hidden;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.devo-card:hover .card-image-wrap img {
  transform: scale(1.08);
}

.card-category-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--gold-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.card-deity-sub {
  font-size: 0.8rem;
  color: var(--saffron-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card-snippet {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.9rem;
}

.btn-read-more {
  background: linear-gradient(90deg, var(--saffron-primary), var(--saffron-deep));
  color: #FFF;
  border: none;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-read-more:hover {
  opacity: 0.9;
}

/* Full Reader Modal / Overlay */
.reader-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.reader-modal.active {
  display: flex;
}

.reader-sheet {
  background: var(--cream-card);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 750px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.reader-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 106, 0, 0.05);
}

.reader-header-left h3 {
  font-size: 1.3rem;
  color: var(--saffron-deep);
}

.reader-controls-bar {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.reader-tool-btn {
  background: none;
  border: 1px solid var(--border-subtle);
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-size: 0.85rem;
  cursor: pointer;
}

.btn-close-modal {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

.reader-body {
  padding: 2rem 1.75rem;
  overflow-y: auto;
  font-size: 1.15rem;
  line-height: 1.9;
  text-align: center;
}

.lyrics-container {
  white-space: pre-line;
  font-family: 'Noto Serif Devanagari', 'Noto Sans Devanagari', serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.015em;
  margin-bottom: 2rem;
  color: var(--text-dark);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.lyrics-meaning-box {
  background: rgba(255, 215, 0, 0.1);
  border: 1px dashed var(--gold-dark);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  color: var(--text-dark);
  font-family: var(--font-sans);
}

/* Floating Temple Audio Player (Bottom Bar) */
.floating-audio-bar {
  position: fixed;
  bottom: 60px; /* Above mobile nav */
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 500px;
  background: var(--cream-card);
  border: 1px solid var(--gold-dark);
  box-shadow: var(--shadow-gold);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 900;
  backdrop-filter: blur(8px);
}

@media (min-width: 768px) {
  .floating-audio-bar {
    bottom: 20px;
  }
}

.audio-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.audio-pulse-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--saffron-primary);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.audio-text {
  font-size: 0.85rem;
  font-weight: 600;
}

.audio-play-btn {
  background: linear-gradient(135deg, var(--gold-primary), var(--saffron-primary));
  border: none;
  color: #140D07;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  cursor: pointer;
}

/* Mobile Bottom Navigation Bar (Native App Ergonomics) */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--cream-card);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .mobile-bottom-nav {
    display: none;
  }
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 600;
  gap: 2px;
}

.mobile-nav-item.active, .mobile-nav-item:hover {
  color: var(--saffron-primary);
}

.mobile-nav-icon {
  font-size: 1.25rem;
}

/* App Download Teaser Banner */
.app-banner-section {
  background: linear-gradient(135deg, #6B0F1A 0%, #20150E 100%);
  color: #FFF;
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  margin: 3rem 0 2rem 0;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.app-banner-badge {
  background: var(--gold-primary);
  color: #140D07;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.app-banner-section h2 {
  color: var(--gold-primary);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.app-banner-section p {
  color: #FFE8A3;
  max-width: 550px;
  margin: 0 auto 1.5rem auto;
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: var(--cream-card);
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 0 1.5rem 0;
  text-align: center;
  margin-top: 3rem;
}

.footer-om {
  font-size: 2rem;
  color: var(--saffron-primary);
  margin-bottom: 0.5rem;
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.8;
}

/* ==========================================================================
   Multi-Page Dedicated Layout & SEO Component Styles
   ========================================================================== */

/* Breadcrumbs Component */
.breadcrumb-nav {
  padding: 1rem 0 0.5rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
}
.breadcrumb-list a {
  color: var(--saffron-primary);
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb-list a:hover {
  text-decoration: underline;
}
.breadcrumb-sep {
  color: var(--text-muted);
  opacity: 0.6;
}

/* Dedicated Page Article Layout */
.prayer-page-container {
  max-width: 850px;
  margin: 1.5rem auto 3rem auto;
  background: var(--cream-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-warm);
}

.prayer-header {
  text-align: center;
  border-bottom: 2px solid rgba(255, 106, 0, 0.15);
  padding-bottom: 1.75rem;
  margin-bottom: 2rem;
}

.prayer-header h1 {
  font-family: 'Noto Serif Devanagari', 'Poppins', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--saffron-deep);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.prayer-header .deity-tag {
  display: inline-block;
  background: rgba(255, 106, 0, 0.1);
  color: var(--saffron-deep);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.prayer-summary-lead {
  font-size: 1.08rem;
  color: var(--text-dark);
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto;
}

/* Reading Controls Bar */
.reading-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.toolbar-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tool-btn {
  background: var(--cream-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-dark);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.tool-btn:hover {
  background: var(--saffron-primary);
  color: #FFF;
  border-color: var(--saffron-primary);
}

/* Main Lyrics Content - Crystal-Clear, Soothing & Legible Typography */
.lyrics-body {
  text-align: center;
  font-family: 'Noto Serif Devanagari', 'Noto Sans Devanagari', serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 2.3;
  letter-spacing: 0.015em;
  white-space: pre-line;
  margin-bottom: 2.5rem;
  color: var(--text-dark);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.lyrics-body.font-sans-mode {
  font-family: 'Noto Sans Devanagari', 'Mukta', 'Poppins', sans-serif;
  font-weight: 500;
  line-height: 2.2;
}

.lyrics-body.script-roman {
  font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 2.0;
  letter-spacing: 0.01em;
}

/* Meaning / Bhavarth Block */
.bhavarth-card {
  background: rgba(255, 106, 0, 0.04);
  border-left: 4px solid var(--saffron-primary);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}

.bhavarth-card h3 {
  color: var(--saffron-deep);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-family: 'Noto Serif Devanagari', 'Poppins', serif;
}

.bhavarth-card p {
  color: var(--text-dark);
  font-size: 1.02rem;
  line-height: 1.75;
}

/* AEO FAQ Section */
.faq-section {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  margin-top: 2.5rem;
}

.faq-section h2 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Noto Serif Devanagari', 'Poppins', serif;
}

.faq-item {
  background: rgba(0,0,0,0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  margin-bottom: 1rem;
}

.faq-item h3 {
  font-size: 1.05rem;
  color: var(--saffron-deep);
  margin-bottom: 0.4rem;
  font-family: 'Noto Serif Devanagari', 'Poppins', serif;
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Related Prayers Grid */
.related-prayers-wrap {
  margin-top: 3rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
}

.related-prayers-wrap h2 {
  font-size: 1.35rem;
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: 'Noto Serif Devanagari', 'Poppins', serif;
}

/* Category Index Hero */
.category-hero {
  text-align: center;
  padding: 2.5rem 1rem 1.5rem 1rem;
}
.category-hero h1 {
  font-size: 2.3rem;
  color: var(--saffron-deep);
  margin-bottom: 0.5rem;
}
.category-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}
