/* CSS Design System for Rameshta - Modern 2026 Bento & Glassmorphism */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Saffron Dark Theme (Default & Only Theme) */
  --bg-primary: #4a2a1d;      /* Lighter saffron-brown */
  --bg-secondary: #573323;    /* Even lighter saffron-brown */
  --text-primary: #fdf6f0;    /* Warm cream-white */
  --text-secondary: #ebdcd0;  /* Warm cream-gray */
  --text-muted: #9c8474;      /* Brighter muted brown-gray for readability */
  
  /* Deity Accents */
  --accent-saffron: #ff6b35;
  --accent-gold: #eab308;
  --accent-crimson: #dc2626;
  --accent-blue: #0284c7;
  
  /* Brand/Theme Theme */
  --accent-primary: #ff6b35; /* Saffron by default */
  --accent-secondary: #eab308; /* Gold */
  --accent-glow: rgba(255, 107, 53, 0.22);
  --accent-gradient: linear-gradient(135deg, #ff6b35 0%, #eab308 50%, #dc2626 100%);
  
  /* Glassmorphism Variables */
  --glass-bg: rgba(35, 22, 16, 0.8);
  --glass-border: rgba(255, 107, 53, 0.12);
  --glass-shadow: rgba(0, 0, 0, 0.5);
  --glass-blur: 16px;
  
  --card-bg: rgba(45, 28, 20, 0.55);
  --card-border: rgba(255, 107, 53, 0.08);
  --card-hover-border: rgba(255, 107, 53, 0.35);
  
  --font-title: 'Cinzel', serif;
  --font-body: 'Outfit', sans-serif;
  --font-alt: 'Plus Jakarta Sans', sans-serif;
  
  --nav-height: 70px;
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide theme toggles globally */
.theme-toggle {
  display: none !important;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(at 0% 0%, rgba(255, 107, 53, 0.08) 0px, transparent 65%),
    radial-gradient(at 100% 100%, rgba(234, 179, 8, 0.06) 0px, transparent 65%),
    radial-gradient(at 50% 50%, rgba(220, 38, 38, 0.04) 0px, transparent 55%);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background-color 0.5s ease, color 0.5s ease;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('../images/rameshta-logo.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%; /* Adjust size of watermark as needed */
  opacity: 0.08; /* Slightly sharper watermark */
  pointer-events: none; /* Allows clicking through the watermark */
  z-index: 0; 
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Floating Bento Navbar */
header {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.bento-navbar {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  height: 64px;
  padding: 0 28px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  box-shadow: 0 10px 30px -10px var(--glass-shadow);
  transition: var(--transition-smooth);
}

.nav-brand {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-brand .dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-secondary);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--accent-secondary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  color: var(--text-secondary);
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.nav-links li.active a,
.nav-links a:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--accent-saffron);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle,
.mobile-toggle {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-gold);
}

.mobile-toggle {
  display: none;
}

.sun-icon {
  display: none;
}

[data-theme="light"] .moon-icon {
  display: none;
}

[data-theme="light"] .sun-icon {
  display: block;
}

/* Page Layout Container */
.container {
  max-width: 1200px;
  margin: 120px auto 60px auto;
  padding: 0 20px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.section-subtitle {
  font-family: var(--font-alt);
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  grid-auto-rows: minmax(180px, auto);
}

/* Bento Cards */
.bento-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: 0 10px 30px -10px var(--glass-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  z-index: 1;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  z-index: -1;
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: var(--card-hover-border);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.6), 0 0 20px -5px var(--accent-glow);
}

/* Grid Spanning */
.col-span-12 { grid-column: span 12; }
.col-span-8 { grid-column: span 8; }
.col-span-6 { grid-column: span 6; }
.col-span-4 { grid-column: span 4; }
.col-span-3 { grid-column: span 3; }

.row-span-2 { grid-row: span 2; }
.row-span-3 { grid-row: span 3; }

/* Custom Bento Layout Details */
.card-featured {
  background: linear-gradient(135deg, rgba(35, 22, 16, 0.65) 0%, rgba(45, 28, 20, 0.85) 100%);
  border: 1px solid rgba(255, 107, 53, 0.25);
  padding: 40px; /* Increase padding for more breathing room */
}

.card-featured .card-title {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.card-featured .card-desc {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.deity-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.25);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-saffron);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  align-self: flex-start;
}

.deity-badge.ram { background: rgba(255, 107, 53, 0.12); border-color: rgba(255, 107, 53, 0.25); color: var(--accent-saffron); }
.deity-badge.hanuman { background: rgba(234, 88, 12, 0.12); border-color: rgba(234, 88, 12, 0.25); color: #ea580c; }
.deity-badge.shiva { background: rgba(2, 132, 199, 0.12); border-color: rgba(2, 132, 199, 0.25); color: var(--accent-blue); }
.deity-badge.kali { background: rgba(220, 38, 38, 0.12); border-color: rgba(220, 38, 38, 0.25); color: var(--accent-crimson); }
.deity-badge.krishna { background: rgba(234, 179, 8, 0.12); border-color: rgba(234, 179, 8, 0.25); color: var(--accent-gold); }

.card-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.card-desc {
  font-family: var(--font-alt);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-icon {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--accent-primary);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 15px;
}

.card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.bento-card:hover .card-link {
  gap: 12px;
}

/* Timeline Components (Ram Journey) */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 40px auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-saffron), var(--accent-gold));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-badge {
  position: absolute;
  top: 25px;
  width: 16px;
  height: 16px;
  background: var(--bg-primary);
  border: 4px solid var(--accent-saffron);
  border-radius: 50%;
  z-index: 10;
}

.timeline-item:nth-child(odd) .timeline-badge {
  right: -8px;
}

.timeline-item:nth-child(even) .timeline-badge {
  left: -8px;
}

.timeline-content {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-md);
  padding: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.timeline-content:hover {
  transform: translateY(-3px);
  border-color: var(--accent-saffron);
}

.timeline-title {
  font-size: 20px;
  color: var(--accent-saffron);
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Sloka Cards (Hanuman / Shiva / Radha Krishna / Kali) */
.sloka-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.sloka-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-md);
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
  transition: var(--transition-smooth);
}

.sloka-card:hover {
  border-color: var(--accent-gold);
  transform: scale(1.02);
}

.sloka-text {
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--accent-gold);
  line-height: 1.8;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.sloka-translation {
  font-family: var(--font-alt);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Aarti Modal / Sanctuary */
.aarti-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 30px;
  margin-top: 20px;
}

.altar-container {
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.6) 0%, rgba(5, 7, 15, 0.9) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8);
}

/* Deity Graphic Container */
.deity-altar {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 107, 53, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.01);
  transition: var(--transition-smooth);
}

.deity-altar svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.2));
  transition: var(--transition-smooth);
}

/* Flame / Diya visual */
.diya-container {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.diya-base {
  width: 70px;
  height: 25px;
  background: linear-gradient(to bottom, #d97706, #78350f);
  border-radius: 0 0 35px 35px;
  position: relative;
}

.diya-flame {
  width: 24px;
  height: 38px;
  background: linear-gradient(to bottom, #ef4444, #f97316, #eab308, #fff);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: flicker 0.15s ease-in-out infinite alternate;
  transform-origin: bottom center;
  filter: drop-shadow(0 0 15px #f97316);
  margin-bottom: -2px;
}

@keyframes flicker {
  0% { transform: scaleX(0.9) rotate(-2deg); }
  100% { transform: scaleX(1.1) rotate(2deg) scaleY(1.05); }
}

/* Waving Flame Animation Class */
.waving-active .deity-altar {
  animation: circle-wave 4s linear infinite;
  border-color: rgba(255, 107, 53, 0.6);
}

@keyframes circle-wave {
  0% { transform: translate(0, 0); }
  25% { transform: translate(15px, -15px); }
  50% { transform: translate(0, -30px); }
  75% { transform: translate(-15px, -15px); }
  100% { transform: translate(0, 0); }
}

/* Aarti Soundwaves animation */
.aarti-waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.aarti-waves.active {
  opacity: 0.15;
}

.wave-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  animation: pulse-ring 3s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
}

.wave-ring:nth-child(2) { animation-delay: 1s; }
.wave-ring:nth-child(3) { animation-delay: 2s; }

@keyframes pulse-ring {
  0% { width: 100px; height: 100px; opacity: 1; }
  100% { width: 500px; height: 500px; opacity: 0; }
}

/* Temple bell / instruments bar */
.altar-actions {
  display: flex;
  gap: 16px;
  z-index: 5;
}

.altar-btn {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 12px 24px;
  color: var(--text-primary);
  font-weight: 600;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.altar-btn:hover {
  background: rgba(255, 107, 53, 0.15);
  border-color: var(--accent-saffron);
  transform: translateY(-2px);
}

.altar-btn.active {
  background: var(--accent-saffron);
  border-color: var(--accent-saffron);
  color: white;
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
}

/* Lyrics & Tabs box */
.aarti-details {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  backdrop-filter: blur(var(--glass-blur));
  height: 500px;
}

.deity-tabs {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.deity-tabs::-webkit-scrollbar {
  height: 4px;
}

.deity-tabs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.deity-tab-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 8px 16px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.deity-tab-btn:hover,
.deity-tab-btn.active {
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--accent-saffron);
  color: var(--accent-saffron);
}

.lyrics-container {
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 10px;
}

.lyrics-container::-webkit-scrollbar {
  width: 6px;
}

.lyrics-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
}

.lyrics-title {
  font-size: 22px;
  margin-bottom: 15px;
  text-align: center;
}

.lyrics-content {
  font-family: var(--font-alt);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  text-align: center;
}

/* Flower Shower Canvas */
.flower-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}

/* Panchang & Calendar Page */
.panchang-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 30px;
  margin-top: 20px;
}

.calendar-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  backdrop-filter: blur(var(--glass-blur));
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.calendar-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.calendar-nav-btn {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.calendar-nav-btn:hover {
  background: rgba(255, 107, 53, 0.15);
  border-color: var(--accent-saffron);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
}

.weekday-header {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 8px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}

.calendar-day:hover:not(.empty) {
  background: rgba(255, 107, 53, 0.1);
  color: var(--accent-saffron);
}

.calendar-day.active {
  background: var(--accent-saffron);
  color: white !important;
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.35);
  font-weight: 700;
}

.calendar-day.today {
  border: 1.5px solid var(--accent-gold);
  color: var(--accent-gold);
}

.calendar-day.has-festival {
  border: 1px dashed var(--accent-saffron);
}

.calendar-day.has-festival.today {
  border: 1.5px solid var(--accent-gold);
  background: rgba(255, 107, 53, 0.05);
}

.festival-indicator {
  font-size: 7px;
  color: var(--accent-saffron);
  margin-top: 1px;
  line-height: 1;
}

.calendar-day.active .festival-indicator {
  color: white;
}

.calendar-day .tithi-num {
  font-size: 9px;
  color: var(--text-muted);
  margin-top: 2px;
}

.calendar-day.active .tithi-num {
  color: rgba(255, 255, 255, 0.7);
}

/* Month's Festivals List Styling */
.month-festivals-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 180px;
  overflow-y: auto;
  padding-right: 5px;
}

.month-festivals-list::-webkit-scrollbar {
  width: 4px;
}

.month-festivals-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}

.month-festivals-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.month-festivals-item:hover {
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.25);
  transform: translateX(4px);
}

.month-festivals-item .fest-name {
  font-weight: 500;
  color: var(--text-primary);
}

.month-festivals-item:hover .fest-name {
  color: var(--accent-saffron);
}

.month-festivals-item .fest-date {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-alt);
  background: rgba(0, 0, 0, 0.2);
  padding: 2px 8px;
  border-radius: 12px;
}

/* Panchang Details Panel */
.panchang-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.panchang-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  backdrop-filter: blur(var(--glass-blur));
}

.detail-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.panchang-data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.panchang-data-item {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.data-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.data-value {
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--text-primary);
  font-weight: 600;
}

.data-value.auspicious {
  color: #10b981;
}

.data-value.inauspicious {
  color: #ef4444;
}

/* Quote banner / footer */
.quote-banner {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(234, 179, 8, 0.05) 100%);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  text-align: center;
  margin: 60px 0;
  position: relative;
}

.quote-icon {
  font-size: 42px;
  color: var(--accent-saffron);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 30px;
}

.quote-text {
  font-family: var(--font-title);
  font-size: 20px;
  color: var(--accent-gold);
  line-height: 1.8;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.quote-source {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Footer styling */
footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 14px;
}

footer .nav-brand {
  justify-content: center;
  margin-bottom: 12px;
  font-size: 18px;
}

/* Footer Social Links */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.1);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  transition: var(--transition-smooth);
}

.social-link:hover {
  transform: translateY(-3px);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.social-link.facebook {
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.3);
}
.social-link.youtube {
  color: #ff0000;
  border-color: rgba(255, 0, 0, 0.3);
}
.social-link.whatsapp {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.3);
}

.social-link.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: white;
}

.social-link.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
  color: white;
}

.social-link.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: white;
}

/* Mobile Responsive Adjustments */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .col-span-12, .col-span-8, .col-span-6, .col-span-4, .col-span-3 {
    grid-column: span 2;
  }
  .panchang-grid {
    grid-template-columns: 1fr;
  }
  .aarti-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    background-image: 
      radial-gradient(at 0% 0%, rgba(255, 107, 53, 0.05) 0px, transparent 70%);
  }
  
  .bento-navbar {
    width: 95%;
    padding: 0 16px;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    gap: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .col-span-12, .col-span-8, .col-span-6, .col-span-4, .col-span-3 {
    grid-column: span 1;
  }
  
  .bento-card {
    padding: 24px;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
  }
  
  .timeline-item:nth-child(odd) {
    text-align: left;
  }
  
  .timeline-item:nth-child(odd) .timeline-badge {
    left: 12px;
    right: auto;
  }
  
  .timeline-item:nth-child(even) .timeline-badge {
    left: 12px;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .panchang-data-grid {
    grid-template-columns: 1fr;
  }
  
  .altar-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ----------------------------------------------------
   Audio Player Page Styles
   ---------------------------------------------------- */
.audio-grid {
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 30px;
  margin-top: 20px;
}

.player-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  backdrop-filter: blur(var(--glass-blur));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px -10px var(--glass-shadow);
}

/* Rotating Disc Animation */
.disc-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 24px;
}

.player-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, #27272a 35%, #09090b 100%);
  border: 8px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 107, 53, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.player-disc::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  background: var(--bg-primary);
  border-radius: 50%;
  border: 4px solid #18181b;
  z-index: 2;
}

.player-disc img {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.85;
}

.player-disc.playing {
  animation: spin-record 20s linear infinite;
}

@keyframes spin-record {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Audio Visualizer Canvas */
.visualizer-container {
  width: 100%;
  height: 60px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius-sm);
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.02);
}

.visualizer-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Track Details */
.track-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 6px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-artist {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Controls Scrubber */
.playback-scrub {
  width: 100%;
  margin-bottom: 20px;
}

.scrub-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  transition: background 0.3s;
}

.scrub-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-saffron);
  box-shadow: 0 0 8px var(--accent-saffron);
  cursor: pointer;
  transition: transform 0.1s;
}

.scrub-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.time-info {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Player buttons */
.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.control-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.control-btn:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--accent-saffron);
  border-color: var(--accent-saffron);
}

.control-btn.btn-play {
  background: var(--accent-gradient);
  border: none;
  color: white;
  width: 56px;
  height: 56px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.control-btn.btn-play:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.control-btn.active {
  color: var(--accent-saffron);
  border-color: var(--accent-saffron);
  background: rgba(255, 107, 53, 0.12);
}

/* Playlist panel */
.playlist-panel {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  backdrop-filter: blur(var(--glass-blur));
  height: 600px;
}

.playlist-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.playlist-count {
  font-size: 13px;
  color: var(--text-muted);
}

.playlist-scroll {
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 8px;
}

.playlist-scroll::-webkit-scrollbar {
  width: 6px;
}

.playlist-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
}

.playlist-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: var(--border-radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  margin-bottom: 8px;
  transition: var(--transition-smooth);
}

.playlist-item:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
}

.playlist-item.active {
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.2);
}

.item-index {
  font-size: 13px;
  color: var(--text-muted);
  width: 20px;
  text-align: center;
}

.playlist-item.active .item-index {
  color: var(--accent-saffron);
}

.item-art {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  border: 1px solid rgba(255,255,255,0.05);
}

.item-details {
  flex-grow: 1;
  min-width: 0; /* truncate child flex properly */
}

.item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.playlist-item.active .item-title {
  color: var(--accent-gold);
}

.item-singer {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.item-badge {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.playlist-item.active .item-badge {
  background: rgba(255, 107, 53, 0.15);
  color: var(--accent-saffron);
}

.item-duration {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-alt);
}

/* Mobile adjustments for Audio */
@media (max-width: 1024px) {
  .audio-grid {
    grid-template-columns: 1fr;
  }
  .playlist-panel {
    height: 500px;
  }
}

/* ----------------------------------------------------
   Language Translation System Styles
   ---------------------------------------------------- */
[data-lang="en"] .lang-hi {
  display: none !important;
}

[data-lang="hi"] .lang-en {
  display: none !important;
}

.lang-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2000;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 107, 53, 0.15);
  transition: var(--transition-smooth);
}

.lang-toggle:hover {
  background: rgba(255, 107, 53, 0.15);
  border-color: var(--accent-saffron);
  color: var(--accent-saffron);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 107, 53, 0.25);
}

.lang-toggle svg {
  opacity: 0.9;
  color: var(--accent-saffron);
}

/* ----------------------------------------------------
   Panchang Ticker Styles
   ---------------------------------------------------- */
.panchang-ticker-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 32px;
  background: linear-gradient(90deg, #180e0a, #231610);
  border-bottom: 1px solid rgba(255, 107, 53, 0.15);
  z-index: 1050;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: var(--font-alt);
  font-size: 12px;
  font-weight: 500;
}

.panchang-ticker-wrap {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.panchang-ticker-content {
  display: inline-block;
  white-space: nowrap;
  animation: ticker-scroll 45s linear infinite;
  padding-left: 20px;
}

.panchang-ticker-wrap:hover .panchang-ticker-content {
  animation-play-state: paused;
}


.panchang-ticker-content span {
  color: var(--text-primary);
  margin-right: 25px;
}

.panchang-ticker-content strong {
  color: var(--accent-gold);
  margin-right: 5px;
}

@keyframes ticker-scroll {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* Adjust layout when ticker is present */
header {
  top: 52px !important;
}

.container {
  margin-top: 152px !important;
}

/* ----------------------------------------------------
   Japa Mala Counter Styles
   ---------------------------------------------------- */
.japa-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 30px;
  margin-top: 20px;
}

.chant-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(35, 22, 16, 0.45) 0%, rgba(15, 8, 5, 0.8) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  position: relative;
  min-height: 500px;
  overflow: hidden;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8);
}

/* Mala Circular Progress Counter */
.mala-progress-container {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.mala-progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress-ring-circle-bg {
  stroke: rgba(255, 107, 53, 0.05);
}

.progress-ring-circle {
  stroke: var(--accent-gradient);
  stroke-linecap: round;
  transition: stroke-dashoffset 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.5));
}

.chant-btn {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(45, 28, 20, 0.9) 0%, rgba(24, 14, 10, 0.95) 100%);
  border: 2px solid rgba(255, 107, 53, 0.2);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  user-select: none;
  -webkit-user-select: none;
}

.chant-btn:hover {
  border-color: var(--accent-saffron);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15), 0 0 30px rgba(255, 107, 53, 0.1);
  transform: scale(1.02);
}

.chant-btn:active {
  transform: scale(0.96);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.chant-number {
  font-family: var(--font-title);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.chant-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 5px;
}

.chant-round {
  font-size: 14px;
  color: var(--accent-gold);
  margin-top: 10px;
  font-weight: 600;
}

/* Japa Stats & Settings */
.japa-details-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.japa-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  backdrop-filter: blur(var(--glass-blur));
}

.mantra-display-box {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px dashed rgba(255, 107, 53, 0.2);
  border-radius: var(--border-radius-md);
  margin-bottom: 25px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mantra-text-hi {
  font-family: var(--font-title);
  font-size: 22px;
  color: var(--accent-gold);
  line-height: 1.6;
  margin-bottom: 8px;
  text-shadow: 0 0 10px rgba(234, 179, 8, 0.15);
}

.mantra-text-en {
  font-family: var(--font-alt);
  font-size: 15px;
  color: var(--text-secondary);
  font-style: italic;
}

.japa-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.japa-stat-item {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: var(--border-radius-md);
  padding: 16px;
  text-align: center;
}

.japa-stat-num {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 4px;
}

.japa-stat-num.global-total {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 28px;
  font-weight: 800;
}

/* Japa Controls */
.japa-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.control-toggle-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.control-toggle-btn:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--accent-saffron);
  color: var(--accent-saffron);
}

.control-toggle-btn.active {
  background: rgba(255, 107, 53, 0.15);
  border-color: var(--accent-saffron);
  color: var(--accent-saffron);
}

/* Responsive adjustments for Japa */
@media (max-width: 1024px) {
  .japa-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------
   Sanctuary Live Feeds Section
   ---------------------------------------------------- */
.sanctuary-live-feeds {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.live-header-with-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  gap: 20px;
  flex-wrap: wrap;
}

.live-header-info {
  flex-grow: 1;
}

.live-feed-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 4px;
}

.live-feed-tab-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.live-feed-tab-btn:hover {
  color: var(--accent-saffron);
}

.live-feed-tab-btn.active {
  background: rgba(255, 107, 53, 0.15);
  color: var(--accent-saffron);
  border-color: rgba(255, 107, 53, 0.2);
}


.live-title {
  font-family: var(--font-title);
  font-size: 24px;
  color: var(--accent-saffron);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.live-icon {
  color: var(--accent-saffron);
}

.pulse-badge {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.05em;
  margin-left: 10px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

.live-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 6px;
}

.live-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 30px;
}

.live-player-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.player-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.feed-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.feed-btn:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--accent-saffron);
  color: var(--text-primary);
}

.feed-btn.active {
  background: var(--accent-gradient);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 10px rgba(255, 107, 53, 0.25);
}

.live-info-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.info-card-title {
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 12px;
}

.schedule-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.schedule-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
  font-family: var(--font-body);
  font-size: 14px;
}

.schedule-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.schedule-name {
  font-weight: 600;
  color: var(--text-primary);
}

.schedule-time {
  color: var(--accent-saffron);
  font-family: var(--font-alt);
  font-weight: 500;
}

.info-footer {
  margin-top: 25px;
  border-top: 1px solid var(--glass-border);
  padding-top: 15px;
}

.timezone-note {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 15px;
}

.youtube-live-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-gold);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.youtube-live-link:hover {
  color: var(--accent-saffron);
  transform: translateX(3px);
}

/* Main Footer Styles */
.main-footer {
  margin-top: 80px;
  padding: 60px 20px 20px 20px;
  background: rgba(20, 12, 8, 0.6);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 10;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.brand-col .nav-brand {
  margin-bottom: 15px;
  justify-content: flex-start;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 400px;
}

.footer-heading {
  font-family: var(--font-title);
  color: var(--text-primary);
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--accent-saffron);
  padding-bottom: 8px;
  display: inline-block;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition-smooth);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-saffron);
  transform: translateX(5px);
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-saffron);
  font-size: 18px;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 13px;
}

/* Update responsive styles for footer */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive styles */
@media (max-width: 992px) {
  .live-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

