@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;700&family=Poppins:wght@300;400;600;700&display=swap');
body {
    font-family: 'Poppins', sans-serif;
}

/* Dark mode styles */
.dark body {
    @apply bg-gray-900 text-gray-100;
}

.dark .bg-gradient-to-b {
    background: linear-gradient(to bottom, #111827, #1f2937);
}

.dark .bg-white\/10 {
    background-color: rgba(0, 0, 0, 0.2);
}

.dark .bg-indigo-800\/50 {
    background-color: rgba(49, 46, 129, 0.5);
}

.dark .bg-purple-800\/50 {
    background-color: rgba(91, 33, 182, 0.5);
}

.dark #vanta-bg {
    background-color: #111827 !important;
}

.dark .sound-option {
    @apply bg-gray-800 hover:bg-gray-700;
}

.dark .sound-option.active {
    @apply bg-yellow-500 text-gray-900;
}
#breath-visual {
    background: radial-gradient(circle, rgba(253, 230, 138, 0.2) 0%, rgba(99, 102, 241, 0) 70%);
    transition: background 0.3s ease;
    position: relative;
    overflow: hidden;
}

#breath-visual::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    padding: 4px;
    background: conic-gradient(transparent 0deg, transparent 0deg);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}
.sound-option.active {
    @apply bg-yellow-400 text-indigo-900;
    box-shadow: 0 0 15px rgba(253, 230, 138, 0.5);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.animate-pulse-slow {
    animation: pulse 3s infinite;
}

/* Quote styles */
#quote-container {
    transition: all 0.5s ease;
    backdrop-filter: blur(5px);
}

#quote-text {
    line-height: 1.6;
    font-size: 1.1rem;
}

#quote-reference {
    font-family: 'Noto Sans Devanagari', sans-serif;
}
/* Cycle progress styles */
#cycle-progress {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
}

.dark #cycle-progress {
    background: rgba(0, 0, 0, 0.2);
}

/* Service Worker Install Prompt */
#install-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(0,0,0,0.8);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    display: none;
}

#install-btn {
    background: #f59e0b;
    color: #1e293b;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 8px;
}