/* ═══════════════════════════════════════════════════════
   BASE & SCROLLBAR
═══════════════════════════════════════════════════════ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #4A0010; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #D4A017, #FF9B21);
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
#navbar {
  background: transparent;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}
#navbar.scrolled {
  background: rgba(74, 0, 16, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(212, 160, 23, 0.3);
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4A017, transparent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-link:hover::after { transform: scaleX(1); }

/* ═══════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════ */
.hero-bg {
  background: url('guruji.jpg') 35% 15% / cover no-repeat;
}

.hero-image-overlay {
  background: linear-gradient(
    to bottom,
    rgba(20, 0, 8, 0.55) 0%,
    rgba(74, 0, 16, 0.50) 30%,
    rgba(20, 0, 8, 0.82) 70%,
    rgba(10, 0, 5, 0.97) 100%
  );
}

.mandala-overlay {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='90' fill='none' stroke='%23D4A017' stroke-width='0.5'/%3E%3Ccircle cx='100' cy='100' r='70' fill='none' stroke='%23D4A017' stroke-width='0.5'/%3E%3Ccircle cx='100' cy='100' r='50' fill='none' stroke='%23D4A017' stroke-width='0.5'/%3E%3Ccircle cx='100' cy='100' r='30' fill='none' stroke='%23D4A017' stroke-width='0.5'/%3E%3Cline x1='10' y1='100' x2='190' y2='100' stroke='%23D4A017' stroke-width='0.5'/%3E%3Cline x1='100' y1='10' x2='100' y2='190' stroke='%23D4A017' stroke-width='0.5'/%3E%3Cline x1='29' y1='29' x2='171' y2='171' stroke='%23D4A017' stroke-width='0.5'/%3E%3Cline x1='171' y1='29' x2='29' y2='171' stroke='%23D4A017' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

/* Om symbol */
.om-symbol {
  font-size: 4rem;
  background: linear-gradient(135deg, #FFD700, #FF9B21, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255, 155, 33, 0.8));
  display: inline-block;
}

/* Floating petals */
.petal {
  position: absolute;
  top: -20px;
  width: 20px;
  height: 20px;
  animation: petalFall 10s linear infinite;
  opacity: 0.7;
}
.petal::before {
  content: '🌸';
  font-size: 20px;
}
@keyframes petalFall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.7; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* Divider */
.divider-lotus {
  letter-spacing: 0.5em;
  background: linear-gradient(90deg, transparent, #D4A017 30%, #FFD700 50%, #D4A017 70%, transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Verse box */
.verse-box {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.1), rgba(255, 155, 33, 0.05));
  border: 1px solid rgba(212, 160, 23, 0.4);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  backdrop-filter: blur(10px);
  position: relative;
}
.verse-box::before, .verse-box::after {
  content: '✦';
  position: absolute;
  color: #D4A017;
  font-size: 1rem;
}
.verse-box::before { top: -8px; left: 50%; transform: translateX(-50%); }
.verse-box::after { bottom: -8px; left: 50%; transform: translateX(-50%); }

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  background: linear-gradient(135deg, #D4A017, #FF9B21, #D4A017);
  background-size: 200% auto;
  color: #4A0010;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
  text-decoration: none;
}
.btn-primary:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.6);
}

.btn-secondary {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  background: transparent;
  color: #F5D878;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1.5px solid rgba(212, 160, 23, 0.6);
  transition: all 0.4s ease;
  text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(212, 160, 23, 0.15);
  border-color: #D4A017;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.3);
}

/* Scroll indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.scroll-dot {
  width: 8px;
  height: 8px;
  background: #D4A017;
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}

/* ═══════════════════════════════════════════════════════
   GURUJI SECTION
═══════════════════════════════════════════════════════ */
#guruji {
  background: linear-gradient(180deg, #1a0008 0%, #2d0010 50%, #1a0008 100%);
}

.guruji-frame {
  position: relative;
  display: inline-block;
}

.guruji-photo {
  width: 360px;
  height: 360px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #D4A017;
  box-shadow:
    0 0 0 12px rgba(212, 160, 23, 0.15),
    0 0 0 24px rgba(212, 160, 23, 0.08),
    0 0 60px rgba(212, 160, 23, 0.5),
    0 0 120px rgba(255, 155, 33, 0.3);
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}
.guruji-photo:hover { transform: scale(1.03); }

.guruji-halo {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(212, 160, 23, 0.4), transparent, rgba(255, 155, 33, 0.3), transparent);
  animation: spin 8s linear infinite;
  z-index: 1;
}

.guruji-glow-ring {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  border: 2px solid rgba(212, 160, 23, 0.3);
  animation: spin 15s linear infinite reverse;
  z-index: 1;
}
.guruji-glow-ring::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 160, 23, 0.2);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Gold cards */
.gold-card {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.08) 0%, rgba(255, 155, 33, 0.04) 100%);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.gold-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.06), transparent);
  transition: left 0.6s ease;
}
.gold-card:hover::before { left: 140%; }
.gold-card:hover {
  border-color: rgba(212, 160, 23, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212, 160, 23, 0.15);
}

/* ═══════════════════════════════════════════════════════
   VRINDAVAN SECTION
═══════════════════════════════════════════════════════ */
.vrindavan-bg {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(128, 0, 32, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(26, 35, 126, 0.2) 0%, transparent 60%),
    linear-gradient(180deg, #1a0008 0%, #0d0020 50%, #1a0008 100%);
}

.temple-card {
  background: linear-gradient(135deg, rgba(255, 155, 33, 0.06), rgba(212, 160, 23, 0.03));
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}
.temple-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4A017, transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.temple-card:hover::after { transform: scaleX(1); }
.temple-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(212, 160, 23, 0.15);
  border-color: rgba(212, 160, 23, 0.4);
}

.temple-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  animation: float 6s ease-in-out infinite;
}

/* Aarti banner */
.aarti-banner {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.12), rgba(255, 155, 33, 0.06));
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
}

.aarti-time-card {
  background: rgba(74, 0, 16, 0.5);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
}
.aarti-time-card:hover {
  border-color: #D4A017;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(212, 160, 23, 0.2);
}

/* ═══════════════════════════════════════════════════════
   TEACHINGS SECTION
═══════════════════════════════════════════════════════ */
.teachings-bg {
  background: linear-gradient(180deg, #0d0020 0%, #1a0008 50%, #0d0020 100%);
}

.quote-card {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.08), rgba(255, 155, 33, 0.04));
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.quote-mark {
  font-size: 6rem;
  line-height: 1;
  color: rgba(212, 160, 23, 0.3);
  font-family: 'Lora', serif;
  position: absolute;
  top: -10px;
  left: 2rem;
}

.teaching-pillar {
  background: linear-gradient(180deg, rgba(212, 160, 23, 0.08), rgba(74, 0, 16, 0.3));
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-top: 3px solid #D4A017;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
}
.teaching-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(212, 160, 23, 0.15);
  border-color: rgba(212, 160, 23, 0.4);
  border-top-color: #FF9B21;
}

.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

/* ═══════════════════════════════════════════════════════
   BHAJANS SECTION
═══════════════════════════════════════════════════════ */
.bhajans-bg {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(128, 0, 32, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(74, 0, 16, 0.4) 0%, transparent 50%),
    linear-gradient(180deg, #1a0008 0%, #0a000f 100%);
}

.bhajan-card {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.06), rgba(74, 0, 16, 0.4));
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}
.bhajan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(212, 160, 23, 0.15);
  border-color: rgba(212, 160, 23, 0.4);
}

.bhajan-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(90deg, rgba(212, 160, 23, 0.15), transparent);
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}

.bhajan-lyrics {
  padding: 1.5rem;
}

/* ═══════════════════════════════════════════════════════
   BLESSINGS SECTION
═══════════════════════════════════════════════════════ */
.blessings-bg {
  background: radial-gradient(ellipse at 50% 50%, rgba(128, 0, 32, 0.4) 0%, #1a0008 60%);
}

.blessing-portrait {
  position: relative;
  display: inline-block;
}

.blessing-photo {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #D4A017;
  position: relative;
  z-index: 3;
  box-shadow:
    0 0 40px rgba(212, 160, 23, 0.6),
    0 0 80px rgba(255, 155, 33, 0.3),
    0 0 120px rgba(212, 160, 23, 0.15);
}

.blessing-halo-outer {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(212, 160, 23, 0) 0%,
    rgba(212, 160, 23, 0.5) 25%,
    rgba(255, 155, 33, 0.3) 50%,
    rgba(212, 160, 23, 0.5) 75%,
    rgba(212, 160, 23, 0) 100%
  );
  animation: spin 6s linear infinite;
  z-index: 1;
}

.blessing-halo-inner {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 2px solid rgba(212, 160, 23, 0.4);
  border-top-color: #D4A017;
  animation: spin 3s linear infinite;
  z-index: 2;
}

.blessing-text-overlay {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #D4A017, #FF9B21);
  border-radius: 50px;
  padding: 0.4rem 1.5rem;
  white-space: nowrap;
  z-index: 4;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.5);
}

.blessing-verse-box {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.1), rgba(128, 0, 32, 0.2));
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
}
.blessing-verse-box::before {
  content: '❀';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a0008;
  color: #D4A017;
  padding: 0 1rem;
  font-size: 1.5rem;
}

.devotion-stat {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.08), rgba(74, 0, 16, 0.3));
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
}

.stat-number {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  color: #D4A017;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(212, 160, 23, 0.5);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
footer { background: #0a0005; }

.om-symbol-footer {
  font-size: 3rem;
  background: linear-gradient(135deg, #D4A017, #FF9B21);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════════════════════
   SECTION BG PATTERN
═══════════════════════════════════════════════════════ */
.section-bg-pattern {
  background-image:
    radial-gradient(circle at 20% 20%, rgba(212, 160, 23, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 155, 33, 0.05) 0%, transparent 40%);
}

/* ═══════════════════════════════════════════════════════
   REVEAL ANIMATIONS (Intersection Observer)
═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   PARTICLES
═══════════════════════════════════════════════════════ */
#particles { opacity: 0.6; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .guruji-photo { width: 260px; height: 260px; }
  .blessing-photo { width: 240px; height: 240px; }
  .quote-card { padding: 2rem 1.5rem; }
  .quote-mark { font-size: 4rem; }
}

/* ═══════════════════════════════════════════════════════
   HERO LEFT MANTRA
═══════════════════════════════════════════════════════ */
.hero-mantra-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 0;
  background: none;
  border: none;
}

.mantra-deva-left {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #F5D878;
  text-shadow:
    0 0 12px rgba(0,0,0,0.9),
    0 2px 8px rgba(0,0,0,0.95),
    0 0 30px rgba(212, 160, 23, 0.4);
  letter-spacing: 0.02em;
}

.mantra-deva-left--small {
  font-size: 1.1rem;
  color: #FF9B21;
  text-shadow:
    0 0 10px rgba(0,0,0,0.9),
    0 2px 6px rgba(0,0,0,0.95),
    0 0 20px rgba(255, 155, 33, 0.3);
}

.mantra-divider-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #D4A017, transparent);
  margin: 6px 0;
}

.hero-mantra-transliteration {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.7rem;
  color: #FFF8E7;
  opacity: 0.6;
  margin-top: 4px;
  line-height: 1.5;
  text-shadow: 0 1px 6px rgba(0,0,0,0.9);
}

.hero-mantra-source {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D4A017;
  opacity: 0.7;
  margin-top: 4px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.9);
}

/* Chest mantra */
.mantra-chest {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #FFD700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-shadow:
    0 0 20px rgba(212, 160, 23, 0.9),
    0 0 40px rgba(255, 155, 33, 0.6),
    0 2px 10px rgba(0,0,0,0.95),
    0 4px 20px rgba(0,0,0,0.8);
}
@media (min-width: 1024px) { .mantra-chest { font-size: 2.5rem; } }

/* ═══════════════════════════════════════════════════════
   DEVANAGARI MANTRA (Hero)
═══════════════════════════════════════════════════════ */
.mantra-deva {
  font-family: 'Noto Serif Devanagari', 'Lora', serif;
  font-size: 2rem;
  line-height: 1.5;
  background: linear-gradient(135deg, #FFD700, #FF9B21, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(255, 155, 33, 0.6));
  letter-spacing: 0.05em;
}
@media (min-width: 768px) { .mantra-deva { font-size: 2.6rem; } }

.mantra-sub {
  font-family: 'Noto Serif Devanagari', 'Philosopher', serif;
  font-size: 1rem;
  color: #F5D878;
  opacity: 0.85;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════════
   AMRIT VANI SECTION
═══════════════════════════════════════════════════════ */
#amritvani {
  background: linear-gradient(180deg, #1a0008 0%, #120015 50%, #1a0008 100%);
}

.vani-doha-card {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.07), rgba(128, 0, 32, 0.15));
  border: 1px solid rgba(212, 160, 23, 0.22);
  border-left: 3px solid #D4A017;
  border-radius: 16px;
  padding: 1.75rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.vani-doha-card::before {
  content: '❝';
  position: absolute;
  top: 0.5rem; right: 1rem;
  font-size: 4rem;
  color: rgba(212, 160, 23, 0.12);
  font-family: 'Lora', serif;
  line-height: 1;
  pointer-events: none;
}
.vani-doha-card:hover {
  border-color: rgba(212, 160, 23, 0.5);
  border-left-color: #FF9B21;
  transform: translateX(6px);
  box-shadow: -4px 0 25px rgba(212, 160, 23, 0.15), 6px 0 30px rgba(212, 160, 23, 0.08);
}

.vani-hindi {
  font-family: 'Noto Serif Devanagari', 'Lora', serif;
  font-size: 1.2rem;
  line-height: 1.9;
  color: #F5D878;
}
@media (min-width: 768px) { .vani-hindi { font-size: 1.35rem; } }

.vani-transliteration {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: #FF9B21;
  opacity: 0.85;
  margin-top: 0.4rem;
}

.vani-translation {
  font-family: 'Philosopher', serif;
  font-size: 0.9rem;
  color: #FFF8E7;
  opacity: 0.72;
  margin-top: 0.5rem;
  line-height: 1.6;
}

.vani-source {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D4A017;
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 50px;
  padding: 0.2rem 0.9rem;
}

/* Featured doha (large) */
.vani-featured {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.12), rgba(128, 0, 32, 0.25));
  border: 1px solid rgba(212, 160, 23, 0.35);
  border-top: 3px solid #FF9B21;
  border-radius: 20px;
  padding: 2.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vani-featured .vani-hindi { font-size: 1.45rem; }
@media (min-width: 768px) { .vani-featured .vani-hindi { font-size: 1.75rem; } }

/* ═══════════════════════════════════════════════════════
   RADHA VALLABH DEITY FRAME
═══════════════════════════════════════════════════════ */
.deity-frame {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.deity-photo {
  width: 300px;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50% 50% 45% 45% / 40% 40% 60% 60%;
  border: 5px solid #D4A017;
  box-shadow:
    0 0 0 10px rgba(212, 160, 23, 0.12),
    0 0 0 20px rgba(212, 160, 23, 0.06),
    0 0 50px rgba(212, 160, 23, 0.55),
    0 0 100px rgba(255, 155, 33, 0.25);
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}
.deity-photo:hover { transform: scale(1.03); }
@media (max-width: 768px) { .deity-photo { width: 220px; height: 300px; } }

.deity-halo {
  position: absolute;
  inset: -25px;
  border-radius: 50% 50% 45% 45%;
  background: conic-gradient(from 0deg, transparent, rgba(212, 160, 23, 0.35), transparent, rgba(255, 155, 33, 0.2), transparent);
  animation: spin 10s linear infinite;
  z-index: 1;
}

.deity-glow-ring {
  position: absolute;
  inset: -45px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 160, 23, 0.25);
  border-top-color: #D4A017;
  animation: spin 18s linear infinite reverse;
  z-index: 1;
}

.deity-label {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #D4A017, #FF9B21);
  color: #3a0008;
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 50px;
  padding: 0.35rem 1.25rem;
  white-space: nowrap;
  z-index: 4;
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.4);
}

/* ═══════════════════════════════════════════════════════
   SELECTION
═══════════════════════════════════════════════════════ */
::selection {
  background: rgba(212, 160, 23, 0.3);
  color: #FFF8E7;
}
