:root {
  --primary: #d32f2f; /* Deep Red */
  --secondary: #ff9800; /* Saffron/Orange */
  --accent: #ffd54f; /* Gold */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-main: #fafafa;
  --bg-card: rgba(255, 255, 255, 0.8);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('images/watermark.png') center center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 99999;
}

body.no-watermark::before {
  display: none !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

/* Typography & Utilities */
.text-center { text-align: center; }
.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}
.section-subtitle {
  color: #666;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.nav-logo h1 {
  color: var(--primary);
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.nav-logo span {
  color: var(--secondary);
}
.mobile-menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--primary);
  cursor: pointer;
}
.nav-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-links a.dropbtn {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  font-size: 0.95rem;
}
.nav-links a.dropbtn::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--secondary);
  transition: var(--transition);
}
.nav-links a.dropbtn:hover::after {
  width: 100%;
}

/* Dropdown styles */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 240px;
  box-shadow: var(--shadow-md);
  z-index: 1000;
  border-radius: 8px;
  top: 100%;
  left: 0;
  padding: 0.5rem 0;
  border-top: 3px solid var(--secondary);
}
.dropdown-content a {
  color: var(--text-dark);
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
  transition: background-color 0.2s;
}
.dropdown-content a:hover {
  background-color: var(--bg-main);
  color: var(--primary);
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropbtn i {
  font-size: 0.75rem;
  margin-left: 3px;
}
.btn-donate {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--text-light);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.btn-donate:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('images/maavidhyavasinibanner.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
}
.hero-content {
  max-width: 800px;
  animation: fadeIn 1.5s ease;
}
.hero-content h1 {
  font-size: 4rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-content p {
  font-size: 1.2rem;
  color: #eee;
  margin-bottom: 2rem;
}
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--text-light);
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 2px solid var(--primary);
}
.btn-primary:hover {
  background: transparent;
  color: var(--primary);
  background-color: rgba(255, 255, 255, 0.9);
}

/* General Section Styling */
.section {
  padding: 5rem 5%;
}

/* Services / Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid var(--secondary);
  backdrop-filter: blur(5px);
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}
.card-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.card h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(211, 47, 47, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay i {
  color: white;
  font-size: 2rem;
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  padding: 4rem 5% 2rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col h3 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.8rem;
}
.footer-col ul a {
  color: #bbb;
  text-decoration: none;
  transition: var(--transition);
}
.footer-col ul a:hover {
  color: var(--secondary);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #888;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
/* Responsive Mobile & Tablet Accordion Navigation (≤1024px) */
@media (max-width: 1024px) {
  /* Prevent desktop hover dropdowns from activating on touch devices */
  .dropdown:hover .dropdown-content {
    display: none;
  }

  .top-bar { 
    display: none !important; 
  }
  
  .navbar { 
    top: 0; 
    height: 75px; 
    padding: 0 5%; 
    z-index: 10001; 
  }
  
  .nav-links {
    display: none;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    position: fixed !important;
    top: 75px !important;
    left: 0 !important;
    right: 0 !important;
    background: #ffffff !important;
    padding: 0.5rem 1rem 2rem 1rem !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18) !important;
    max-height: calc(100vh - 80px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    z-index: 10000 !important;
    border-bottom: 3px solid var(--primary);
    box-sizing: border-box !important;
  }
  
  .nav-links.active {
    display: flex !important;
  }
  
  .nav-links .dropdown,
  .nav-links > li {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    float: none !important;
    position: static !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    border-bottom: 1px solid #f1f5f9;
  }
  
  /* Touch-friendly full-width row target (≥ 48px height) */
  .nav-links a.dropbtn,
  .nav-links > li > a {
    min-height: 48px;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 12px 10px !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: var(--primary) !important;
    text-decoration: none !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .nav-links .dropbtn i {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
    color: var(--secondary);
    pointer-events: none;
  }
  
  .dropdown.active .dropbtn i {
    transform: rotate(180deg);
  }
  
  /* Strictly Vertical Accordion Nested Submenus */
  .dropdown-content {
    position: static !important;
    display: none;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    box-shadow: none !important;
    border-top: none !important;
    border-left: 4px solid var(--accent) !important;
    margin: 4px 0 10px 0 !important;
    padding: 2px 0 2px 10px !important;
    background: #fff8f0 !important;
    border-radius: 0 8px 8px 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    transition: max-height 0.35s ease, opacity 0.3s ease;
  }
  
  .dropdown.active .dropdown-content {
    display: block !important;
  }
  
  /* Touch-friendly nested links (≥ 48px height) */
  .dropdown-content a {
    min-height: 48px;
    display: flex !important;
    align-items: center !important;
    padding: 10px 14px !important;
    font-size: 0.96rem !important;
    color: #334155 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    border-bottom: 1px solid #fce8db !important;
  }
  
  .dropdown-content a:last-child {
    border-bottom: none !important;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.6rem;
    color: var(--primary);
    padding: 6px;
    min-height: 48px;
    min-width: 48px;
  }
  
  .btn-donate {
    display: none !important;
  }
  
  .hero-content h1 { font-size: 2.5rem; }
}

/* News Ticker */
.news-ticker {
  background-color: var(--primary);
  color: var(--text-light);
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 2px solid var(--accent);
  margin-top: 75px; /* Offset for fixed navbar */
}
.ticker-title {
  background-color: var(--accent);
  color: var(--primary);
  padding: 0.5rem 1rem;
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
  z-index: 2;
}
.ticker-content {
  overflow: hidden;
  white-space: nowrap;
  flex-grow: 1;
}
.ticker-text {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 25s linear infinite;
}
.ticker-text:hover {
  animation-play-state: paused;
}
@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}


/* Donate Section */
.donate-section {
    padding-top: 50px;
    padding-bottom: 50px;
}
.donate-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}
.donate-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    border-top: 4px solid var(--primary);
}
.bank-details p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-dark);
}
.bank-details strong {
    color: var(--primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Header Logo */


/* Donate Section */
.donate-section {
    padding-top: 50px;
    padding-bottom: 50px;
}
.donate-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}
.donate-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    border-top: 4px solid var(--primary);
}
.bank-details p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-dark);
}
.bank-details strong {
    color: var(--primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Header Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.header-logo {
    height: 28px;
    width: auto;
    border-radius: 50%; /* It's a circular logo */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
@media (max-width: 1024px) {
    .header-logo {
        height: 24px;
    }
    .hero {
        width: 100%;
        height: auto;
        aspect-ratio: 941 / 1672;
        background: #fff8eb url('images/mobileversion.png') center top / contain no-repeat;
    }
}


/* Back to Top Floating Button */
#back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: #ffffff;
    border: 2px solid var(--accent);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
}

#back-to-top-btn:hover {
    background-color: #8e0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(142, 0, 0, 0.6);
}

#back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile Bottom Fixed Navigation */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 1024px) {
    body {
        padding-bottom: 65px;
    }

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 62px;
        background-color: #ffffff;
        box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.12);
        z-index: 10000;
        border-top: 1px solid #e2e8f0;
        justify-content: space-around;
        align-items: center;
        padding: 4px 0;
    }

    .mobile-bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1;
        color: #64748b;
        text-decoration: none;
        font-size: 0.72rem;
        font-weight: 500;
        transition: all 0.2s ease-in-out;
        padding: 4px 0;
    }

    .mobile-bottom-nav-item i {
        font-size: 1.25rem;
        margin-bottom: 3px;
        transition: transform 0.2s ease;
    }

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

    .mobile-bottom-nav-item.active i {
        transform: translateY(-2px);
    }

    /* Highlight Donate Button in Mobile Bottom Nav */
    .mobile-bottom-nav-item.highlight {
        color: #ffffff;
        background: linear-gradient(135deg, var(--primary), #b71c1c);
        border-radius: 20px;
        padding: 6px 10px;
        margin: 0 4px;
        box-shadow: 0 3px 8px rgba(183, 28, 28, 0.3);
    }

    .mobile-bottom-nav-item.highlight i {
        color: #ffffff;
        font-size: 1.15rem;
    }

    .mobile-bottom-nav-item.highlight span {
        color: #ffffff;
        font-weight: 600;
    }

    #back-to-top-btn {
        bottom: 75px !important;
        right: 20px !important;
    }

    /* Responsive Card View for Schedule & Info Tables on Mobile */
    .responsive-card-table {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
        border-radius: 0 !important;
    }

    .responsive-card-table thead {
        display: none !important;
    }

    .responsive-card-table tbody {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
    }

    .responsive-card-table tr {
        display: block !important;
        background: #ffffff !important;
        border: 1px solid #f3e5d8 !important;
        border-left: 5px solid var(--primary) !important;
        border-radius: 14px !important;
        padding: 16px 18px !important;
        box-shadow: 0 4px 15px rgba(211, 47, 47, 0.07) !important;
        margin-bottom: 0 !important;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .responsive-card-table tr:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(211, 47, 47, 0.12) !important;
    }

    .responsive-card-table td {
        display: block !important;
        padding: 4px 0 !important;
        border: none !important;
        text-align: left !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-break: break-word !important;
    }

    /* First column (Time Slot / Primary Identifier) */
    .responsive-card-table td:nth-child(1) {
        font-size: 0.98rem !important;
        font-weight: 700 !important;
        color: var(--primary) !important;
        padding-bottom: 8px !important;
        margin-bottom: 6px !important;
        border-bottom: 1px dashed #f0d8c0 !important;
    }

    /* Second column (Ritual / Title) */
    .responsive-card-table td:nth-child(2) {
        font-size: 1.08rem !important;
        font-weight: 700 !important;
        color: #1e293b !important;
        margin-bottom: 4px !important;
    }

    /* Third column (Description / Guidance / Details) */
    .responsive-card-table td:nth-child(3) {
        font-size: 0.92rem !important;
        color: #475569 !important;
        line-height: 1.55 !important;
    }

    /* Reset overflow-x containers on mobile to fit cards nicely */
    div[style*="overflow-x: auto"] {
        overflow-x: visible !important;
        padding: 20px 15px !important;
    }
}

/* Global Floating WhatsApp Contact Button */
#whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 54px;
    height: 54px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#whatsapp-float-btn:hover {
    background-color: #128c7e;
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 6px 22px rgba(18, 140, 126, 0.6);
    color: #ffffff;
}

#whatsapp-float-btn .wa-tooltip {
    position: absolute;
    left: 65px;
    background: #128c7e;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

#whatsapp-float-btn:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1024px) {
    #whatsapp-float-btn {
        bottom: 75px;
        left: 18px;
        width: 48px;
        height: 48px;
        font-size: 1.65rem;
    }
}

/* Sacred Durga Mantra Audio Player Section */
.mantra-player-section {
    padding: 35px 5%;
    background: linear-gradient(135deg, #fff8eb 0%, #fff0f0 100%);
    border-bottom: 2px solid var(--accent);
}

.mantra-player-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 30px;
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.12);
    border: 1px solid #fce8db;
    border-left: 6px solid var(--primary);
}

.mantra-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.mantra-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
    flex-shrink: 0;
}

.mantra-details .mantra-badge {
    display: inline-block;
    background: #fff3e0;
    color: var(--secondary);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.mantra-details h3 {
    color: var(--primary);
    font-size: 1.35rem;
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
}

.mantra-details p {
    color: #64748b;
    font-size: 0.9rem;
}

.mantra-details a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.mantra-controls-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    background: #fff8f0;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid #f0e0d0;
}

.mantra-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mantra-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.mantra-btn.play {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: white;
}

.mantra-btn.pause {
    background: linear-gradient(135deg, #ed6c02, #e65100);
    color: white;
}

.mantra-btn.stop {
    background: linear-gradient(135deg, #d32f2f, #c62828);
    color: white;
}

.mantra-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

.mantra-status {
    font-size: 0.88rem;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #94a3b8;
    display: inline-block;
}

.status-dot.playing {
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
    animation: pulse 1.5s infinite;
}

.status-dot.paused {
    background: #f59e0b;
}

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

@media (max-width: 600px) {
    .mantra-info { flex-direction: column; text-align: center; }
    .mantra-controls-wrapper { flex-direction: column; justify-content: center; text-align: center; }
    .mantra-buttons { width: 100%; justify-content: center; }
}

/* SEOptimer Usability & Touch Target Optimizations */
a, button, .btn-donate, .dropbtn, input[type="submit"] {
    touch-action: manipulation;
}
.nav-links a, .footer-col a {
    padding-top: 4px;
    padding-bottom: 4px;
    display: inline-block;
}
