/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Hind+Vadodara:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Open+Sans:wght@300;400;500;600;700&display=swap');

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

/* Numbers font family */
.number-display,
.stat-value,
.stat-card .big-number,
.main-counter .update-time span,
#mainCounter,
#sarvaCompartments,
#specialCompartments,
#divyaCompartments,
#sarvaHours,
#specialHours,
#divyaHours,
#pilgrimsCount,
#tonsuresCount,
#hundiCollection,
#lastUpdate {
  font-family: "Graphik", Arial, sans-serif !important;
}

body {
  font-family: "Playfair Display", serif;
  background: #FFF5DC;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  color: #2C2C2C;
  position: relative;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(242, 101, 34, 0.03) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(212, 175, 55, 0.03) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: calc(4rem - 20px) auto 4rem auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(242, 101, 34, 0.1);
  border: 1px solid rgba(242, 101, 34, 0.15);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(20px);
}

.container::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(
    45deg,
    rgba(242, 101, 34, 0.1),
    rgba(212, 175, 55, 0.1),
    rgba(242, 101, 34, 0.1)
  );
  border-radius: 25px;
  z-index: -1;
}

/* Header Styles */
.header {
  text-align: center;
  margin-bottom: 0px;
  position: relative;
  padding-bottom: 25px;
}

.header-image {
  width: auto;
  height: 100px;
  margin-bottom: 10px;
}

.logo {
  font-size: 3.5em;
  font-weight: 600;
  color: #F26522;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  font-family: "Playfair Display", serif;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.subtitle {
  font-size: 1.8em;
  color: #2C2C2C;
  margin-bottom: 1rem;
  font-weight: 500;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.01em;
}

.temple-name {
  font-size: 1.3em;
  color: #2C2C2C;
  margin-bottom: 2rem;
  font-weight: 400;
  opacity: 0.8;
  letter-spacing: 0.02em;
  font-family: "Playfair Display", serif;
}

.live-indicator {
  display: inline-block;
  background: #F26522;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1em;
  animation: gentle-pulse 3s ease-in-out infinite;
  box-shadow: 0 4px 16px rgba(242, 101, 34, 0.3);
  border: none;
  transition: all 0.3s ease;
}

/* Animations */
@keyframes gentle-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 16px rgba(242, 101, 34, 0.3);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(242, 101, 34, 0.4);
  }
}

@keyframes subtle-glow {
  0%, 100% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.08),
      0 4px 16px rgba(242, 101, 34, 0.1);
  }
  50% {
    box-shadow: 
      0 12px 40px rgba(0, 0, 0, 0.12),
      0 6px 20px rgba(242, 101, 34, 0.15);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes number-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 
      0 8px 32px rgba(242, 101, 34, 0.4),
      0 4px 16px rgba(0, 0, 0, 0.2),
      inset 0 2px 4px rgba(255, 255, 255, 0.3),
      inset 0 -2px 4px rgba(0, 0, 0, 0.1);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 
      0 12px 40px rgba(242, 101, 34, 0.5),
      0 6px 20px rgba(0, 0, 0, 0.25),
      inset 0 2px 4px rgba(255, 255, 255, 0.4),
      inset 0 -2px 4px rgba(0, 0, 0, 0.15);
  }
}

@keyframes number-shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  50% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
  100% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
}

/* Animation Classes */
.container {
  animation: fade-in-up 0.8s ease-out;
}

.main-counter {
  animation: fade-in-up 1s ease-out 0.2s both;
}

.darshan-card {
  animation: fade-in-up 0.8s ease-out calc(0.4s + var(--delay, 0s)) both;
}

.darshan-card:nth-child(1) { --delay: 0s; }
.darshan-card:nth-child(2) { --delay: 0.1s; }
.darshan-card:nth-child(3) { --delay: 0.2s; }

.yesterday-section {
  animation: fade-in-up 0.8s ease-out 0.6s both;
}

/* Main Counter */
.main-counter {
  background: linear-gradient(135deg, rgba(255, 245, 220, 0.95), rgba(255, 245, 220, 0.98));
  color: #2C2C2C;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 3rem;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(242, 101, 34, 0.1),
    inset 0 1px 3px rgba(255, 255, 255, 0.8);
  border: 2px solid #F26522;
  position: relative;
  overflow: hidden;
  animation: subtle-glow 6s ease-in-out infinite;
}

.main-counter h2 {
  font-size: 2.4em;
  margin-bottom: 2rem;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #F26522;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.number-display {
  font-size: 4.5em;
  font-weight: 800;
  background: linear-gradient(135deg, #F26522, #E55100, #D4AF37);
  color: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  margin: 2rem 0;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(255, 255, 255, 0.3);
  border: 3px solid #D4AF37;
  box-shadow: 
    0 8px 32px rgba(242, 101, 34, 0.4),
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.3),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1);
  font-family: "Graphik", Arial, sans-serif;
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
  animation: number-pulse 3s ease-in-out infinite;
}

.number-display::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: number-shine 4s ease-in-out infinite;
  pointer-events: none;
}

.main-counter .update-time {
  text-align: center;
  color: #2C2C2C;
  font-size: 1.1em;
  margin-top: 2rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 2px solid #D4AF37;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 3px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  letter-spacing: 0.02em;
  font-family: "Playfair Display", serif;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.main-counter .update-time span {
  color: #F26522;
  font-weight: 700;
  font-family: "Graphik", Arial, sans-serif;
}

/* Darshan Grid */
.darshan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  padding: 0;
}

.darshan-card {
  background: linear-gradient(135deg, rgba(255, 245, 220, 0.95), rgba(255, 245, 220, 0.98));
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(242, 101, 34, 0.15),
    inset 0 1px 3px rgba(255, 255, 255, 0.8);
  border: 2px solid #F26522;
  transition: all 0.3s ease;
  position: relative;
  color: #2C2C2C;
  overflow: hidden;
}

.darshan-card::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5em;
  opacity: 0.6;
  color: #F26522;
}

.darshan-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(242, 101, 34, 0.25),
    inset 0 2px 4px rgba(255, 255, 255, 0.9);
  border-color: #D4AF37;
}

.darshan-card h3 {
  color: #F26522;
  margin-bottom: 2rem;
  font-size: 1.4em;
  text-align: center;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  font-family: "Playfair Display", serif;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0;
}

.stat-label {
  font-weight: 500;
  color: #2C2C2C;
  font-size: 1em;
  letter-spacing: 0.02em;
  opacity: 0.8;
  font-family: "Playfair Display", serif;
  white-space: nowrap;
}

.stat-value {
  background: #F26522;
  color: white;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  font-weight: 600;
  min-width: 55px;
  text-align: center;
  border: 1px solid #D4AF37;
  box-shadow: 
    0 2px 6px rgba(242, 101, 34, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.2);
  font-family: "Graphik", Arial, sans-serif;
  letter-spacing: 0.01em;
  font-size: 0.85em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.stat-value:hover {
  transform: translateY(-1px);
  box-shadow: 
    0 3px 10px rgba(242, 101, 34, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
  border-color: #8B3A3A;
}

/* Date Banner */
.date-banner {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(242, 101, 34, 0.1), rgba(212, 175, 55, 0.1));
  border-radius: 12px;
  border: 2px solid #F26522;
  box-shadow: 0 4px 12px rgba(242, 101, 34, 0.15);
}

.date-banner p {
  margin: 0.5rem 0;
  font-family: "Playfair Display", serif;
  color: #2C2C2C;
  font-size: 1.1em;
}

.date-banner strong {
  color: #F26522;
  font-weight: 600;
}

#currentDate {
  color: #F26522;
  font-weight: 700;
  font-family: "Graphik", Arial, sans-serif;
}

/* Keywords Info */
.keywords-info {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(242, 101, 34, 0.05);
  border-radius: 8px;
  border-left: 3px solid #F26522;
}

.keywords-info p {
  margin: 0;
  font-size: 0.9em;
  color: #2C2C2C;
  text-align: center;
  font-family: "Playfair Display", serif;
}

.keywords-info strong {
  color: #F26522;
}

/* Disclaimer */
.disclaimer {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-left: 4px solid #ffc107;
  border-radius: 8px;
  text-align: center;
}

.disclaimer p {
  margin: 0;
  font-size: 0.85em;
  color: #856404;
  line-height: 1.4;
  font-family: "Open Sans", sans-serif;
}

.disclaimer strong {
  color: #dc3545;
  font-weight: 600;
}

/* Yesterday Description */
.yesterday-description {
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  text-align: center;
}

.yesterday-description p {
  margin: 0;
  font-size: 1.1em;
  color: #2C2C2C;
  font-family: "Playfair Display", serif;
}

.yesterday-description strong {
  color: #F26522;
  font-weight: 600;
}

/* SEO Footer */
.seo-footer {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(242, 101, 34, 0.05);
  border-radius: 8px;
  text-align: center;
  border-top: 2px solid #F26522;
}

.seo-footer p {
  margin: 0;
  font-size: 0.95em;
  color: #2C2C2C;
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.seo-footer em {
  color: #F26522;
  font-weight: 600;
  font-style: normal;
}

/* Devotional Quotes */
.devotional-quotes {
  text-align: center;
  margin-bottom: 3rem;
  font-style: italic;
  color: #F26522;
  font-size: 1.3em;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.9;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(242, 101, 34, 0.15);
  border-left: 4px solid #D4AF37;
  font-family: "Playfair Display", serif;
}

/* Yesterday Section */
.yesterday-section {
  background: linear-gradient(135deg, rgba(255, 245, 220, 0.95), rgba(255, 245, 220, 0.98));
  color: #2C2C2C;
  padding: 4rem 2rem;
  margin: 0;
  text-align: center;
  border-top: 2px solid #F26522;
  border-bottom: 2px solid #F26522;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(242, 101, 34, 0.1),
    inset 0 1px 3px rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.yesterday-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.yesterday-section::before {
  content: "🔱 Om Namo Venkatesaya 🔱";
  position: absolute;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.1em;
  font-weight: 600;
  opacity: 0.7;
  color: #F26522;
}

.yesterday-section h2 {
  font-size: 2.4em;
  margin-bottom: 2.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #F26522;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.stat-card {
  background: #F26522;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  border: 2px solid #D4AF37;
  box-shadow: 
    0 8px 24px rgba(242, 101, 34, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 12px 32px rgba(242, 101, 34, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  border-color: #8B3A3A;
}

.stat-card h4 {
  font-size: 1.4em;
  margin-bottom: 1rem;
  font-weight: 600;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.02em;
  font-family: "Playfair Display", serif;
}

.stat-card .big-number {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  font-family: "Graphik", Arial, sans-serif;
  letter-spacing: 0.01em;
}

.stat-card .description {
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-family: "Playfair Display", serif;
}

/* Navigation Bar */
.main-nav {
  background: linear-gradient(135deg, #F26522, #D4AF37);
  padding: 0;
  box-shadow: 
    0 6px 20px rgba(242, 101, 34, 0.3),
    0 2px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
  backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

/* Hamburger Menu - Mobile Only */

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  padding: 1.2rem 1.8rem;
  font-weight: 500;
  font-size: 1.05em;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-bottom: 3px solid #8B3A3A;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-link.active {
  background: rgba(255, 255, 255, 0.2);
  border-bottom: 3px solid #8B3A3A;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Navigation */
  .nav-container {
    padding: 0 1rem;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0.6rem;
    position: fixed;
    right: calc(1rem + 10px);
    top: 40px;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    border: 2px solid #F26522;
    transition: all 0.3s ease;
  }

  .hamburger:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .hamburger span {
    width: 24px;
    height: 2.5px;
    background: #F26522;
    margin: 2.5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background: #F26522;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 120px;
    transition: right 0.3s ease;
    box-shadow: -8px 0 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
  }

  .nav-links.active {
    display: flex;
    right: 0;
  }

  .nav-link {
    width: 90%;
    text-align: center;
    padding: 1.2rem 1.5rem;
    font-size: 1.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    margin: 0.3rem 0;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
  }

  .nav-link:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .nav-link.active {
    background: rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  }

  /* Container */
  .container {
    margin: 1rem auto;
    padding: 1.5rem;
    border-radius: 16px;
  }

  /* Header */
  .header-image {
    height: 70px;
    margin-bottom: 8px;
  }

  .logo {
    font-size: 2.2em;
    margin-bottom: 1rem;
  }

  .subtitle {
    font-size: 1.3em;
    margin-bottom: 0.8rem;
  }

  .temple-name {
    font-size: 1.1em;
    margin-bottom: 1.5rem;
  }

  .live-indicator {
    font-size: 0.9em;
    padding: 0.8rem 1.5rem;
  }

  /* Devotional Quotes */
  .devotional-quotes {
    font-size: 1.1em;
    padding: 1.2rem;
    margin-bottom: 2rem;
  }

  /* Main Counter */
  .main-counter {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }

  .main-counter h2 {
    font-size: 1.8em;
    margin-bottom: 1.5rem;
  }

  .number-display {
    font-size: 3em;
    padding: 2rem 1.5rem;
    margin: 1.5rem 0;
  }

  .main-counter .update-time {
    font-size: 1rem;
    padding: 0.8rem 1rem;
    margin-top: 1.5rem;
  }

  /* Darshan Grid */
  .darshan-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .darshan-card {
    padding: 2rem 1.5rem;
  }

  .darshan-card h3 {
    font-size: 1.2em;
    margin-bottom: 1.5rem;
  }

  .stats-row {
    margin-bottom: 1.2rem;
  }

  .stat-label {
    font-size: 0.9em;
  }

  .stat-value {
    font-size: 0.9em;
    padding: 0.6rem 1rem;
    min-width: 60px;
  }

  /* Yesterday Section */
  .yesterday-section {
    padding: 4rem 1.5rem 3rem 1.5rem;
  }

  .yesterday-section::before {
    font-size: 0.9em;
    top: 0.5rem;
    opacity: 0.6;
  }

  .yesterday-content {
    padding: 0 1rem;
  }

  .yesterday-section h2 {
    font-size: 1.8em;
    margin-bottom: 2rem;
    margin-top: 1rem;
  }

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

  .stat-card {
    padding: 1.8rem 1.2rem;
  }

  .stat-card h4 {
    font-size: 1.2em;
    margin-bottom: 0.8rem;
  }

  .stat-card .big-number {
    font-size: 2.5em;
    margin-bottom: 0.6rem;
  }

  .stat-card .description {
    font-size: 1rem;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .container {
    margin: 0.5rem auto;
    padding: 1rem;
  }

  .logo {
    font-size: 1.8em;
    margin-bottom: 0.8rem;
  }

  .subtitle {
    font-size: 1.1em;
    margin-bottom: 0.6rem;
  }

  .temple-name {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .header-image {
    height: 60px;
    margin-bottom: 6px;
  }

  .live-indicator {
    font-size: 0.8em;
    padding: 0.6rem 1.2rem;
  }

  .devotional-quotes {
    font-size: 1rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .main-counter {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }

  .main-counter h2 {
    font-size: 1.5em;
    margin-bottom: 1rem;
  }

  .number-display {
    font-size: 2.5em;
    padding: 1.5rem 1rem;
    margin: 1rem 0;
  }

  .main-counter .update-time {
    font-size: 0.9em;
    padding: 0.6rem 0.8rem;
    margin-top: 1rem;
  }

  .darshan-grid {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .darshan-card {
    padding: 1.5rem 1rem;
  }

  .darshan-card h3 {
    font-size: 1.1em;
    margin-bottom: 1rem;
  }

  .stat-label {
    font-size: 0.85em;
  }

  .stat-value {
    font-size: 0.8em;
    padding: 0.5rem 0.8rem;
    min-width: 50px;
  }

  .yesterday-section {
    padding: 3rem 1rem 2rem 1rem;
  }

  .yesterday-section::before {
    font-size: 0.8em;
    top: 0.3rem;
    opacity: 0.5;
  }

  .yesterday-content {
    padding: 0 0.5rem;
  }

  .yesterday-section h2 {
    font-size: 1.5em;
    margin-bottom: 1.5rem;
    margin-top: 1.2rem;
  }

  .stats-grid {
    gap: 1rem;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-card h4 {
    font-size: 1.1em;
    margin-bottom: 0.6rem;
  }

  .stat-card .big-number {
    font-size: 2.2em;
    margin-bottom: 0.5rem;
  }

  .stat-card .description {
    font-size: 0.9em;
  }

  .nav-container {
    padding: 0 0.5rem;
  }

  .hamburger {
    right: 0.5rem;
    padding: 0.6rem;
  }

  .hamburger span {
    width: 24px;
    height: 2.5px;
    background: #F26522;
  }

  .nav-links {
    width: 95%;
  }

  .nav-link {
    font-size: 1em;
    padding: 1rem 1.2rem;
    margin: 0.2rem 0;
  }
}

/* Bottom Footer Styles */
.bottom-footer {
  background: linear-gradient(135deg, #2C1810 0%, #1F0F08 100%);
  color: #E8D5B7;
  padding: 2rem 0 1rem 0;
  margin-top: 3rem;
  border-top: 3px solid #F26522;
  position: relative;
}

.bottom-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #F26522, transparent);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(242, 101, 34, 0.3);
}

.footer-links a {
  color: #E8D5B7;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #F26522;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.footer-links a:hover {
  color: #F26522;
  transform: translateY(-2px);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-copyright {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-copyright p {
  margin: 0.5rem 0;
  color: #B8A082;
}

.footer-copyright strong {
  color: #F26522;
  font-weight: 600;
}

.footer-tagline {
  font-style: italic;
  color: #9B8B73 !important;
  font-size: 0.85rem !important;
  margin-top: 0.5rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-links {
    gap: 1.5rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
  }
  
  .footer-content {
    padding: 0 1rem;
  }
  
  .bottom-footer {
    padding: 1.5rem 0 1rem 0;
  }
}

@media (max-width: 480px) {
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-links a {
    font-size: 0.85rem;
  }
  
  .footer-copyright {
    font-size: 0.8rem;
  }
  
  .footer-tagline {
    font-size: 0.75rem !important;
  }
}