/* ============================================================
   ENHANCED DIVINE EXPERIENCE CSS
   Mata Vaishno Devi Katra - Premium 3D Animations & Effects
   ============================================================ */

/* ---- DIVINE COLOR PALETTE ---- */
:root {
    --divine-gold: #FFD700;
    --divine-orange: #FF6B35;
    --divine-crimson: #B22234;
    --divine-saffron: #FF9933;
    --divine-pink: #FF4081;
    --divine-purple: #7B1FA2;
    --divine-deep: #1A0A00;
    --divine-glow: rgba(255, 215, 0, 0.6);
    --divine-red-glow: rgba(178, 34, 52, 0.5);
    --chakra-gradient: conic-gradient(from 0deg, #FF6B35, #FFD700, #FF9933, #FF6B35, #B22234, #FFD700, #FF6B35);
}

/* ============================================================
   NEW HERO SECTION - FULL IMMERSIVE REDESIGN
   ============================================================ */
.hero-divine {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0D0500;
    padding-top: 80px;
}

/* Animated Mountain Layers */
.hero-mountain-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.hero-mountain-layer.layer-sky {
    top: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        #0D0500 0%, 
        #1A0800 20%,
        #2D1200 40%,
        #4A1A00 60%,
        #5C2200 80%,
        #3D1000 100%);
    z-index: 0;
}
.hero-mountain-layer.layer-stars {
    top: 0;
    bottom: 0;
    z-index: 1;
    background: radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,0.4) 100%);
}
.hero-mountain-layer.layer-far {
    z-index: 2;
    height: 45%;
    background: linear-gradient(180deg, transparent 0%, #1E0B00 60%, #2D1200 100%);
    clip-path: polygon(0% 100%, 5% 40%, 12% 55%, 18% 20%, 25% 45%, 32% 10%, 40% 35%, 48% 5%, 56% 30%, 63% 15%, 70% 40%, 78% 8%, 85% 35%, 92% 20%, 100% 50%, 100% 100%);
}
.hero-mountain-layer.layer-near {
    z-index: 3;
    height: 35%;
    background: linear-gradient(180deg, transparent 0%, #0D0500 40%, #080300 100%);
    clip-path: polygon(0% 100%, 8% 30%, 18% 55%, 28% 15%, 38% 45%, 50% 0%, 62% 35%, 72% 20%, 82% 50%, 92% 25%, 100% 60%, 100% 100%);
}
.hero-mountain-layer.layer-temple {
    z-index: 4;
    height: 25%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

/* Stars Field */
.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70%;
    z-index: 1;
    overflow: hidden;
}
.star {
    position: absolute;
    background: #FFD700;
    border-radius: 50%;
    animation: starTwinkle infinite ease-in-out;
}
@keyframes starTwinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* Hero Content Layout */
.hero-divine-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 40px;
    align-items: center;
    padding: 60px 0 40px;
    width: 100%;
}

/* Left Content */
.hero-divine-left {
    color: #fff;
}

.hero-om-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 153, 51, 0.15);
    border: 1px solid rgba(255, 153, 51, 0.4);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 20px;
    animation: badgePulse 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}
.hero-om-badge .om-text {
    font-size: 1.4rem;
    color: #FF9933;
    animation: omRotate 4s linear infinite;
    display: inline-block;
}
.hero-om-badge span {
    font-size: 0.9rem;
    color: #FFD700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 153, 51, 0.2); }
    50% { box-shadow: 0 0 40px rgba(255, 153, 51, 0.5); }
}
@keyframes omRotate {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.hero-divine-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 0 60px rgba(255, 165, 0, 0.5);
}
.hero-divine-title .line-1 {
    display: block;
    background: linear-gradient(135deg, #FFD700, #FF9933, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s linear infinite;
    background-size: 200% auto;
}
.hero-divine-title .line-2 {
    display: block;
    color: #fff;
    font-size: 70%;
    margin-top: 8px;
    text-shadow: 0 2px 20px rgba(178, 34, 52, 0.8);
}
@keyframes shimmerText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-divine-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 500px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

/* Hero Stats */
.hero-stats-row {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.hero-stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 12px 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.hero-stat-item:hover {
    background: rgba(255, 153, 51, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-3px);
}
.hero-stat-num {
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #FF9933);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Hero Buttons */
.hero-divine-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-divine-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #B22234, #FF4081);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(178, 34, 52, 0.4);
    position: relative;
    overflow: hidden;
}
.btn-divine-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.5s ease;
}
.btn-divine-primary:hover::before {
    transform: rotate(45deg) translateX(100%);
}
.btn-divine-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(178, 34, 52, 0.6);
}
.btn-divine-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFD700, #FF9933);
    color: #0D0500;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}
.btn-divine-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
}
.btn-divine-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 13px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}
.btn-divine-outline:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: #FFD700;
    transform: translateY(-2px);
}

/* Right Side - Deity Visual */
.hero-divine-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.deity-showcase {
    position: relative;
    width: 380px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deity-mandala {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: mandalaRotate 30s linear infinite;
    opacity: 0.15;
}
@keyframes mandalaRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.deity-ring-1 {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: ringPulse 3s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1), inset 0 0 30px rgba(255, 215, 0, 0.05);
}
.deity-ring-2 {
    position: absolute;
    width: 290px;
    height: 290px;
    border-radius: 50%;
    border: 1px solid rgba(255, 153, 51, 0.4);
    animation: ringPulse 3s ease-in-out infinite 1s;
}
.deity-ring-3 {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 2px solid rgba(178, 34, 52, 0.3);
    animation: ringPulse 3s ease-in-out infinite 0.5s;
}
@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 1; }
}

.deity-image-container {
    position: relative;
    z-index: 5;
    width: 220px;
    height: 280px;
    border-radius: 50% 50% 40% 40%;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(255, 153, 51, 0.4), 0 0 120px rgba(255, 215, 0, 0.2);
    animation: deityFloat 4s ease-in-out infinite;
    border: 3px solid rgba(255, 215, 0, 0.4);
}
@keyframes deityFloat {
    0%, 100% { transform: translateY(0px); box-shadow: 0 0 60px rgba(255, 153, 51, 0.4), 0 20px 40px rgba(0,0,0,0.3); }
    50% { transform: translateY(-15px); box-shadow: 0 0 80px rgba(255, 153, 51, 0.6), 0 30px 60px rgba(0,0,0,0.2); }
}
.deity-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deity-glow-aura {
    position: absolute;
    width: 260px;
    height: 320px;
    border-radius: 50% 50% 40% 40%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.2) 0%, rgba(255, 153, 51, 0.1) 50%, transparent 70%);
    animation: auraBreath 3s ease-in-out infinite;
    z-index: 4;
}
@keyframes auraBreath {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Floating Diyas */
.floating-diya {
    position: absolute;
    z-index: 6;
    animation: divaDrift infinite ease-in-out;
}
.diya-flame {
    width: 8px;
    height: 14px;
    background: linear-gradient(180deg, #FFD700, #FF6B35);
    border-radius: 50% 50% 20% 20%;
    animation: flameFlicker 0.5s ease-in-out infinite alternate;
    box-shadow: 0 0 10px #FFD700, 0 0 20px rgba(255, 107, 53, 0.5);
    margin: 0 auto;
}
.diya-base {
    width: 16px;
    height: 8px;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    border-radius: 0 0 50% 50%;
    margin-top: -2px;
}
@keyframes flameFlicker {
    0% { transform: scaleX(1) scaleY(1) rotate(-3deg); }
    100% { transform: scaleX(0.85) scaleY(1.1) rotate(3deg); }
}
@keyframes divaDrift {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Falling Petals / Divine Particles */
.divine-particle {
    position: absolute;
    pointer-events: none;
    z-index: 8;
}
.petal {
    width: 8px;
    height: 12px;
    background: linear-gradient(135deg, #FFD700, #FF9933);
    border-radius: 50% 0;
    opacity: 0.7;
    animation: petalFall linear infinite;
}
@keyframes petalFall {
    0% { transform: translateY(-50px) rotate(0deg); opacity: 0; }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}
.sparkle {
    width: 4px;
    height: 4px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 6px #FFD700;
    animation: sparkleFade ease-in-out infinite alternate;
}
@keyframes sparkleFade {
    0% { opacity: 0; transform: scale(0); }
    100% { opacity: 1; transform: scale(1); }
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll-indicator .scroll-wheel {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 20px;
    position: relative;
}
.hero-scroll-indicator .scroll-dot {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: #FFD700;
    border-radius: 50%;
    animation: scrollDot 1.5s ease-in-out infinite;
}
@keyframes scrollDot {
    0% { top: 6px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

/* Light Beams */
.light-beams {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    pointer-events: none;
}
.light-beam {
    position: absolute;
    top: 0;
    width: 2px;
    height: 60vh;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.4), transparent);
    transform-origin: top center;
    animation: beamSway ease-in-out infinite;
}
@keyframes beamSway {
    0%, 100% { opacity: 0.15; transform-origin: top center; }
    50% { opacity: 0.55; transform-origin: top center; }
}

/* ============================================================
   ENHANCED SECTION STYLES
   ============================================================ */

/* 3D Hover Cards */
.card-3d {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}
.card-3d:hover {
    transform: perspective(800px) rotateX(-5deg) rotateY(5deg) translateY(-8px);
    box-shadow: 20px 30px 60px rgba(0,0,0,0.15), 0 0 40px rgba(178, 34, 52, 0.1);
}

/* Glowing Border Cards */
.card-divine {
    background: linear-gradient(135deg, #fff 0%, #FFF8F0 100%);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background-clip: padding-box;
}
.card-divine::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.3), rgba(178, 34, 52, 0.3), rgba(212, 168, 83, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.card-divine:hover::before {
    opacity: 1;
}
.card-divine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.08), transparent);
    transition: left 0.5s ease;
}
.card-divine:hover::after {
    left: 100%;
}
.card-divine:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(178, 34, 52, 0.15);
}

/* Counter Animation */
.counter-section {
    background: linear-gradient(135deg, #B22234 0%, #7B1532 50%, #B22234 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.counter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}
.counter-item {
    text-align: center;
    color: #fff;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.15);
}
.counter-item:last-child { border-right: none; }
.counter-num {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #FF9933);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
}
.counter-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.counter-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    color: rgba(255, 215, 0, 0.7);
}

/* ============================================================
   BHAJAN FLOATING PLAYER
   ============================================================ */
#bhajan-player {
    position: fixed;
    bottom: 90px;
    left: 20px;
    z-index: 9999;
    background: linear-gradient(135deg, #1A0800, #2D1200);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 60px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 153, 51, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 200px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}
#bhajan-player:hover {
    border-color: rgba(255, 215, 0, 0.7);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 153, 51, 0.5);
    transform: translateY(-2px);
}
#bhajan-player.collapsed {
    max-width: 56px;
    padding: 10px;
}
.bhajan-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF9933, #FFD700);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A0800;
    font-size: 1rem;
    flex-shrink: 0;
    animation: bhajanIconPulse 2s ease-in-out infinite;
}
@keyframes bhajanIconPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 153, 51, 0.4); }
    50% { box-shadow: 0 0 20px rgba(255, 153, 51, 0.8); }
}
.bhajan-info {
    flex: 1;
    overflow: hidden;
    transition: all 0.3s ease;
}
#bhajan-player.collapsed .bhajan-info {
    display: none;
}
.bhajan-title {
    font-size: 0.72rem;
    color: #FFD700;
    font-weight: 700;
    white-space: nowrap;
    animation: marqueeScroll 8s linear infinite;
}
.bhajan-subtitle {
    font-size: 0.65rem;
    color: rgba(255, 153, 51, 0.7);
    margin-top: 2px;
}
@keyframes marqueeScroll {
    0%, 20% { transform: translateX(0); }
    80%, 100% { transform: translateX(-30%); }
}
.bhajan-wave {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}
.bhajan-wave span {
    display: block;
    width: 3px;
    background: #FF9933;
    border-radius: 3px;
    animation: waveAnim 0.6s ease-in-out infinite alternate;
}
.bhajan-wave span:nth-child(1) { height: 8px; animation-delay: 0s; }
.bhajan-wave span:nth-child(2) { height: 14px; animation-delay: 0.1s; }
.bhajan-wave span:nth-child(3) { height: 10px; animation-delay: 0.2s; }
.bhajan-wave span:nth-child(4) { height: 16px; animation-delay: 0.3s; }
.bhajan-wave span:nth-child(5) { height: 8px; animation-delay: 0.4s; }
.bhajan-wave.paused span { animation-play-state: paused; height: 4px !important; }
@keyframes waveAnim {
    0% { transform: scaleY(0.4); }
    100% { transform: scaleY(1); }
}

/* ============================================================
   ANIMATED STORY SECTION (HOME PAGE TEASER)
   ============================================================ */
.story-teaser-section {
    background: linear-gradient(180deg, #0D0500 0%, #1A0800 50%, #0D0500 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.story-teaser-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(178, 34, 52, 0.1) 0%, transparent 70%);
}
.story-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.story-teaser-text {
    color: #fff;
}
.story-teaser-text .section-label-divine {
    color: #FF9933;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
}
.story-teaser-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFD700, #FF9933);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.story-teaser-text p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 20px;
}
.story-teaser-scenes {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.story-scene-chip {
    background: rgba(255, 153, 51, 0.1);
    border: 1px solid rgba(255, 153, 51, 0.3);
    color: #FF9933;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.story-scene-chip:hover {
    background: rgba(255, 153, 51, 0.2);
    border-color: #FF9933;
}

/* Mini Animation Preview */
.story-mini-animation {
    position: relative;
    height: 350px;
    background: linear-gradient(180deg, #0A1628 0%, #1A2E4A 40%, #2D4A1E 80%, #1A2E0A 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.mini-scene-sky {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(180deg, #0A0520 0%, #1A1040 50%, #2D1A60 100%);
}
.mini-moon {
    position: absolute;
    top: 20px;
    right: 40px;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 35% 35%, #FFF8DC, #FFD700);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: moonGlow 3s ease-in-out infinite;
}
@keyframes moonGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 50px rgba(255, 215, 0, 0.8); }
}
.mini-mountains {
    position: absolute;
    bottom: 35%;
    left: 0;
    right: 0;
    height: 30%;
    background: #1A2E4A;
    clip-path: polygon(0% 100%, 10% 30%, 20% 70%, 35% 10%, 50% 50%, 65% 20%, 80% 60%, 90% 30%, 100% 70%, 100% 100%);
}
.mini-ground {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(180deg, #2D4A1E 0%, #1A2E0A 100%);
}

/* Characters */
.mini-char-mata {
    position: absolute;
    bottom: 35%;
    left: 20%;
    width: 30px;
    animation: mataWalk 4s ease-in-out infinite;
    z-index: 10;
}
.mini-char-bhairav {
    position: absolute;
    bottom: 35%;
    left: 5%;
    width: 25px;
    animation: bhairavWalk 4s ease-in-out infinite 0.5s;
    z-index: 9;
}
.char-body-mata {
    width: 18px;
    height: 30px;
    background: linear-gradient(180deg, #FF9933, #FFD700);
    border-radius: 4px 4px 0 0;
    margin: 0 auto;
    position: relative;
}
.char-head-mata {
    width: 18px;
    height: 18px;
    background: radial-gradient(circle, #FFD9B0, #FFC080);
    border-radius: 50%;
    margin: 0 auto;
    border: 2px solid #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}
.char-crown {
    width: 18px;
    height: 10px;
    background: linear-gradient(180deg, #FFD700, #FF9933);
    clip-path: polygon(0% 100%, 10% 0%, 30% 60%, 50% 0%, 70% 60%, 90% 0%, 100% 100%);
    margin: 0 auto;
}
.char-body-bhairav {
    width: 16px;
    height: 28px;
    background: linear-gradient(180deg, #1A0830, #2D1060);
    border-radius: 4px 4px 0 0;
    margin: 0 auto;
}
.char-head-bhairav {
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, #4A2060, #2D1040);
    border-radius: 50%;
    margin: 0 auto;
    border: 2px solid #6A3080;
}
@keyframes mataWalk {
    0%, 100% { transform: translateX(0) scaleY(1); }
    25% { transform: translateX(30px) scaleY(1.02); }
    50% { transform: translateX(60px) scaleY(1); }
    75% { transform: translateX(30px) scaleY(0.98); }
}
@keyframes bhairavWalk {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(25px); }
    50% { transform: translateX(50px); }
    75% { transform: translateX(25px); }
}
.mini-stars-anim {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
}
.mini-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    animation: miniStarTwinkle ease-in-out infinite;
}
@keyframes miniStarTwinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}
.mini-path {
    position: absolute;
    bottom: 35%;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 2px;
}
.mini-footprint {
    position: absolute;
    bottom: calc(35% + 4px);
    width: 8px;
    height: 5px;
    background: rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: footprintAppear 4s ease-in-out infinite;
}
@keyframes footprintAppear {
    0% { opacity: 0; transform: scale(0); }
    30% { opacity: 1; transform: scale(1); }
    80% { opacity: 1; }
    100% { opacity: 0; }
}
.mini-dialogue {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 6px 12px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #1A0800;
    white-space: nowrap;
    animation: dialogueShow 4s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.mini-dialogue::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 15px;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.95);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@keyframes dialogueShow {
    0%, 20% { opacity: 0; transform: translateY(-5px); }
    30%, 70% { opacity: 1; transform: translateY(0); }
    80%, 100% { opacity: 0; transform: translateY(-5px); }
}

/* ============================================================
   FULL STORY ANIMATION PAGE STYLES
   ============================================================ */
.story-page-hero {
    background: linear-gradient(135deg, #0D0500 0%, #1A0800 100%);
    padding: 120px 0 60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.story-page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #FF9933, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    animation: shimmerText 3s linear infinite;
    background-size: 200% auto;
}
.story-page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* Story Controls */
.story-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.story-ctrl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}
.story-ctrl-btn.primary {
    background: linear-gradient(135deg, #FFD700, #FF9933);
    color: #0D0500;
}
.story-ctrl-btn.secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}
.story-ctrl-btn:hover { transform: translateY(-2px); }

/* Scene Progress */
.scene-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.scene-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}
.scene-dot.active {
    background: #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    transform: scale(1.3);
}

/* Scene Stage */
.story-stage {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(180deg, #0A1628 0%, #1A2E4A 40%, #2D4A1E 80%, #1A2E0A 100%);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(255, 153, 51, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.2);
}
.scene {
    position: relative;
    height: 500px;
    display: none;
    overflow: hidden;
}
.scene.active {
    display: block;
}
.scene-title-bar {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 20;
}
.scene-num-badge {
    background: rgba(178, 34, 52, 0.8);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}
.scene-name-badge {
    background: rgba(0,0,0,0.5);
    color: #FFD700;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Scene Backgrounds */
.scene-bg {
    position: absolute;
    inset: 0;
}
.scene-forest {
    background: linear-gradient(180deg, #0A1A0A 0%, #0D2010 30%, #1A3A10 60%, #0D2008 100%);
}
.scene-forest .scene-sky {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, #0A0520 0%, #1A1040 50%, #0A1A30 100%);
}
.scene-cave {
    background: linear-gradient(180deg, #080310 0%, #12061A 50%, #1A0A08 100%);
}
.scene-mountain {
    background: linear-gradient(180deg, #0A1628 0%, #1A2E4A 50%, #2D4A1E 100%);
}
.scene-battle {
    background: linear-gradient(180deg, #1A0A00 0%, #2D1200 50%, #3D1A00 100%);
}
.scene-darshan {
    background: radial-gradient(ellipse at center, #3D1000 0%, #1A0500 40%, #0D0300 100%);
}

/* Tree Elements */
.scene-tree {
    position: absolute;
    bottom: 0;
}
.tree-trunk {
    width: 20px;
    height: 60px;
    background: linear-gradient(180deg, #3D2010, #2D1508);
    margin: 0 auto;
}
.tree-top {
    width: 60px;
    height: 80px;
    background: linear-gradient(180deg, #1A4A10, #0D2A08);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    margin: 0 auto;
}
.tree-top-2 {
    width: 50px;
    height: 65px;
    background: linear-gradient(180deg, #1A4A10, #0D2A08);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    margin: 0 auto;
    margin-top: -30px;
}

/* Mountain Elements */
.scene-mountain-shape {
    position: absolute;
    bottom: 20%;
}
.mountain-shape {
    width: 0;
    height: 0;
    border-left: solid transparent;
    border-right: solid transparent;
    border-bottom: solid;
}

/* Characters - Full Story */
.char-mata {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 15;
    transition: all 0.8s ease;
}
.char-mata .head {
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at 40% 35%, #FFE0B2, #FFCC80);
    border-radius: 50%;
    border: 2px solid #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}
.char-mata .crown {
    width: 30px;
    height: 14px;
    background: linear-gradient(180deg, #FFD700, #FF9933);
    clip-path: polygon(0% 100%, 8% 0%, 25% 50%, 50% 0%, 75% 50%, 92% 0%, 100% 100%);
    margin-bottom: -2px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8));
}
.char-mata .body {
    width: 28px;
    height: 50px;
    background: linear-gradient(180deg, #FF9933 0%, #FFD700 50%, #FF6600 100%);
    border-radius: 6px 6px 0 0;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 153, 51, 0.3);
}
.char-mata .aura {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15), transparent);
    animation: auraBreath 2s ease-in-out infinite;
}
.char-mata .saree-drape {
    position: absolute;
    right: -12px;
    top: 5px;
    width: 15px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.6), rgba(255, 153, 51, 0.4));
    border-radius: 0 8px 8px 0;
    animation: sareeSway 2s ease-in-out infinite alternate;
}
@keyframes sareeSway {
    0% { transform: rotate(-5deg); }
    100% { transform: rotate(5deg); }
}
.char-mata .trishul {
    position: absolute;
    right: -20px;
    top: -10px;
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, #C0C0C0, #808080);
}
.char-mata .trishul::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 20px;
    height: 18px;
    background: linear-gradient(180deg, #C0C0C0, #A0A0A0);
    clip-path: polygon(50% 0%, 0% 100%, 20% 70%, 50% 100%, 80% 70%, 100% 100%);
    filter: drop-shadow(0 0 5px rgba(192, 192, 192, 0.7));
}
.char-bhairav {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 14;
    transition: all 0.8s ease;
}
.char-bhairav .head {
    width: 28px;
    height: 28px;
    background: radial-gradient(circle at 40% 35%, #3A1A4A, #1A0830);
    border-radius: 50%;
    border: 2px solid #6A2080;
    box-shadow: 0 0 10px rgba(106, 32, 128, 0.5);
}
.char-bhairav .hair {
    position: absolute;
    top: -5px;
    left: -3px;
    right: -3px;
    height: 15px;
    background: #0A0014;
    border-radius: 50% 50% 0 0;
}
.char-bhairav .body {
    width: 26px;
    height: 45px;
    background: linear-gradient(180deg, #1A0830 0%, #2D1060 50%, #1A0830 100%);
    border-radius: 6px 6px 0 0;
}
.char-bhairav .weapon {
    position: absolute;
    left: -18px;
    top: 0;
    width: 4px;
    height: 55px;
    background: linear-gradient(180deg, #808080, #404040);
    transform: rotate(-15deg);
}
.char-hanuman {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 15;
    transition: all 0.8s ease;
}
.char-hanuman .head {
    width: 26px;
    height: 26px;
    background: radial-gradient(circle at 40% 35%, #FF8C00, #FF6B00);
    border-radius: 50%;
    border: 2px solid #FFD700;
}
.char-hanuman .body {
    width: 24px;
    height: 40px;
    background: linear-gradient(180deg, #FF6B00 0%, #FF4500 50%, #CC3300 100%);
    border-radius: 6px 6px 0 0;
}
.char-hanuman .tail {
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 6px;
    height: 50px;
    background: linear-gradient(180deg, #FF6B00, #CC3300);
    border-radius: 3px;
    transform-origin: bottom;
    animation: tailSway 1.5s ease-in-out infinite alternate;
}
.char-hanuman .tail::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -4px;
    width: 14px;
    height: 14px;
    background: #FF4500;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 69, 0, 0.5);
}
@keyframes tailSway {
    0% { transform: rotate(-20deg); }
    100% { transform: rotate(20deg); }
}

/* Water Elements */
.water-flow {
    position: absolute;
    background: linear-gradient(90deg, transparent, #4FC3F7, #29B6F6, transparent);
    border-radius: 50%;
    animation: waterFlow 2s ease-in-out infinite;
}
@keyframes waterFlow {
    0% { transform: scaleX(0.8) scaleY(0.5); opacity: 0.5; }
    50% { transform: scaleX(1.1) scaleY(0.7); opacity: 1; }
    100% { transform: scaleX(0.8) scaleY(0.5); opacity: 0.5; }
}
.water-ripple {
    position: absolute;
    border: 2px solid rgba(79, 195, 247, 0.5);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
}
@keyframes ripple {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

/* Fire/Battle Effects */
.fire-effect {
    position: absolute;
    animation: fireRise 0.5s ease-in-out infinite alternate;
}
.fire-flame {
    width: 20px;
    height: 40px;
    background: linear-gradient(180deg, #FFD700 0%, #FF6B35 50%, #FF0000 100%);
    border-radius: 50% 50% 20% 20%;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.7);
}
@keyframes fireRise {
    0% { transform: scaleY(1) scaleX(0.9); }
    100% { transform: scaleY(1.1) scaleX(1.1); }
}

/* Divine Light Rays */
.divine-light-rays {
    position: absolute;
    inset: 0;
    background: conic-gradient(from 0deg at 50% 30%, transparent 0deg, rgba(255, 215, 0, 0.03) 10deg, transparent 20deg, transparent 30deg, rgba(255, 215, 0, 0.03) 40deg, transparent 50deg, transparent 60deg);
    animation: raysRotate 20s linear infinite;
}
@keyframes raysRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Dialog Bubbles */
.dialog-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1A0800;
    max-width: 180px;
    line-height: 1.4;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    z-index: 25;
    animation: dialogAppear 0.5s ease-out;
}
.dialog-bubble::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
}
.dialog-bubble.right::after {
    left: -6px;
    bottom: 12px;
    background: rgba(255, 255, 255, 0.95);
    clip-path: polygon(100% 0, 100% 100%, 0 50%);
}
.dialog-bubble.left::after {
    right: -6px;
    bottom: 12px;
    background: rgba(255, 255, 255, 0.95);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.dialog-bubble.top::after {
    bottom: -10px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@keyframes dialogAppear {
    0% { opacity: 0; transform: scale(0.8) translateY(-10px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Arrow/Projectile */
.arrow-projectile {
    position: absolute;
    z-index: 20;
}
.arrow-body {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8B4513, #FFD700, #8B4513);
    border-radius: 2px;
}
.arrow-head {
    position: absolute;
    right: -8px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 10px solid #FFD700;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}
.arrow-feather {
    position: absolute;
    left: 0;
    top: -4px;
    width: 14px;
    height: 10px;
    background: linear-gradient(135deg, #FF6B35, #FF9933);
    clip-path: polygon(0 50%, 100% 0, 70% 50%, 100% 100%);
}
.arrow-trail {
    position: absolute;
    right: 100%;
    top: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3));
}

/* Scene Narration */
.scene-narration {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-left: 4px solid #FFD700;
    border-radius: 0 10px 10px 0;
    padding: 14px 18px;
    z-index: 30;
    backdrop-filter: blur(10px);
}
.scene-narration p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}
.scene-narration .narration-title {
    color: #FFD700;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 4px;
    display: block;
}

/* Navigation Arrows */
.story-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.4);
    color: #FFD700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.story-nav-btn:hover {
    background: rgba(178, 34, 52, 0.7);
    border-color: #FFD700;
}
.story-nav-btn.prev { left: 16px; }
.story-nav-btn.next { right: 16px; }

/* Scene-specific particles */
.scene-particle {
    position: absolute;
    pointer-events: none;
}
.gold-sparkle {
    width: 5px;
    height: 5px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 8px #FFD700;
    animation: goldSparkle ease-in-out infinite;
}
@keyframes goldSparkle {
    0%, 100% { opacity: 0; transform: scale(0) translateY(0); }
    50% { opacity: 1; transform: scale(1) translateY(-10px); }
}

/* ============================================================
   ENHANCED SECTION - FEATURES STRIP
   ============================================================ */
.divine-features-strip {
    background: linear-gradient(90deg, #B22234, #7B1532, #B22234);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}
.features-scroll-track {
    display: flex;
    gap: 40px;
    animation: featureScroll 25s linear infinite;
    white-space: nowrap;
}
.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.feature-pill i {
    color: #FFD700;
    font-size: 1rem;
}
.feature-divider {
    color: rgba(255, 215, 0, 0.4);
    font-size: 1.2rem;
    flex-shrink: 0;
}
@keyframes featureScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   ENHANCED HOME PAGE SECTIONS
   ============================================================ */

/* Glowing section titles */
.divine-section-label {
    color: #FF9933;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}
.divine-section-title {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #B22234, #FF4081, #B22234);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 16px;
}

/* Dark themed sections */
.dark-section {
    background: linear-gradient(180deg, #0D0500 0%, #1A0800 100%);
    color: #fff;
    padding: 80px 0;
}

/* Gradient section */
.gradient-section {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF0E0 50%, #FFF8F0 100%);
    padding: 80px 0;
}

/* ============================================================
   TESTIMONIALS / YATRI CARDS
   ============================================================ */
.yatri-card {
    background: linear-gradient(135deg, #fff 0%, #FFF8F0 100%);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 40px rgba(178, 34, 52, 0.08);
    border: 1px solid rgba(212, 168, 83, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.yatri-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    color: rgba(212, 168, 83, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}
.yatri-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(178, 34, 52, 0.15);
}
.yatri-stars {
    color: #FFD700;
    font-size: 0.9rem;
    margin-bottom: 12px;
}
.yatri-text {
    color: #444;
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 16px;
}
.yatri-name {
    font-weight: 700;
    color: #B22234;
    font-size: 0.95rem;
}
.yatri-location {
    color: #888;
    font-size: 0.8rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .hero-divine-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-divine-right {
        display: none;
    }
    .hero-stats-row {
        justify-content: center;
    }
    .hero-divine-buttons {
        justify-content: center;
    }
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .story-teaser-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .hero-divine-title { font-size: 1.8rem; }
    .counter-grid { grid-template-columns: repeat(2, 1fr); }
    .deity-showcase { width: 280px; height: 350px; }
}

/* ============================================================
   PULSE GLOW ANIMATIONS
   ============================================================ */
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.7), 0 0 60px rgba(255, 153, 51, 0.3); }
}
@keyframes divineShine {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Animated border effect */
.animated-border {
    position: relative;
    z-index: 1;
}
.animated-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(90deg, #FFD700, #FF9933, #B22234, #FF9933, #FFD700);
    background-size: 300% 100%;
    animation: borderFlow 3s linear infinite;
    z-index: -1;
}
@keyframes borderFlow {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

/* Video section styles */
.video-showcase {
    background: linear-gradient(135deg, #0D0500 0%, #1A0800 100%);
    padding: 80px 0;
}
.video-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    align-items: center;
}
.video-main-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 215, 0, 0.3);
    aspect-ratio: 16/9;
    animation: videoPulse 4s ease-in-out infinite;
}
@keyframes videoPulse {
    0%, 100% { box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 30px rgba(255,215,0,0.1); }
    50% { box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 50px rgba(255,153,51,0.2); }
}
.video-main-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
}
.video-info { color: #fff; }
.video-info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700, #FF9933);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}
.video-info p {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 20px;
}
.aarti-times {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}
.aarti-times h4 {
    color: #FFD700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.aarti-time-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}
.aarti-time-item:last-child { border-bottom: none; }
.aarti-time-item .time {
    color: #FF9933;
    font-weight: 700;
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .video-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LIVE DARSHAN TIMER SECTION
   ============================================================ */
.darshan-timer-section {
    background: linear-gradient(135deg, #0D0500 0%, #1A0800 40%, #0D0500 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.darshan-timer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,153,51,0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Main grid */
.darshan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}
@media (max-width: 1024px) {
    .darshan-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .darshan-grid { grid-template-columns: 1fr; }
}

/* Status card (left) */
.darshan-status-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: border-color 0.5s;
}
.darshan-status-card.open { border-color: rgba(0,230,118,0.35); }
.darshan-status-card.closed { border-color: rgba(255,82,82,0.35); }

.darshan-status-card::before {
    content: '';
    position: absolute;
    top: -40px; left: -40px; right: -40px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.06;
    transition: background 0.5s;
}
.darshan-status-card.open::before { background: radial-gradient(circle, #00E676, transparent); }
.darshan-status-card.closed::before { background: radial-gradient(circle, #FF5252, transparent); }

.cave-icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
    display: block;
    animation: deityFloat 3s ease-in-out infinite;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.status-pill.open {
    background: rgba(0,230,118,0.15);
    color: #00E676;
    border: 1px solid rgba(0,230,118,0.4);
}
.status-pill.closed {
    background: rgba(255,82,82,0.15);
    color: #FF5252;
    border: 1px solid rgba(255,82,82,0.4);
}
.status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: statusPulse 1.2s ease-in-out infinite;
}
.status-pill.open .status-dot { background: #00E676; box-shadow: 0 0 8px #00E676; }
.status-pill.closed .status-dot { background: #FF5252; box-shadow: 0 0 8px #FF5252; }
@keyframes statusPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.6; }
}

.darshan-status-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.darshan-status-title {
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
}

/* Live IST clock */
.live-clock-box {
    background: rgba(255,215,0,0.07);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 14px;
    padding: 14px 18px;
    margin-bottom: 14px;
}
.live-clock-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}
.live-clock-time {
    font-size: 1.9rem;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #FFD700, #FF9933);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Courier New', monospace;
}
.live-clock-date {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    margin-top: 2px;
}

/* Countdown box */
.countdown-box {
    background: linear-gradient(135deg, rgba(255,153,51,0.1), rgba(255,215,0,0.05));
    border: 1px solid rgba(255,153,51,0.25);
    border-radius: 14px;
    padding: 14px 18px;
}
.countdown-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}
.countdown-aarti-name {
    color: #FF9933;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.countdown-timer {
    font-size: 1.6rem;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    color: #fff;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}
.countdown-timer span.unit {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
    letter-spacing: 1px;
    margin-left: 1px;
    font-family: inherit;
}

/* Prayer schedule card (middle) */
.prayer-schedule-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,215,0,0.12);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(10px);
}
.prayer-schedule-card h3 {
    color: #FFD700;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,215,0,0.1);
    padding-bottom: 12px;
}
.prayer-schedule-card h3 i { color: #FF9933; font-size: 0.9rem; }

.aarti-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s;
    border-radius: 8px;
    padding-left: 8px;
    padding-right: 8px;
}
.aarti-row:last-child { border-bottom: none; }
.aarti-row.current-aarti {
    background: rgba(255,215,0,0.08);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 10px;
    animation: aaartiHighlight 2s ease-in-out infinite alternate;
}
@keyframes aaartiHighlight {
    0% { background: rgba(255,215,0,0.06); }
    100% { background: rgba(255,215,0,0.14); }
}
.aarti-row-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.aarti-emoji { font-size: 1.1rem; }
.aarti-name { color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 600; }
.aarti-sub { color: rgba(255,255,255,0.45); font-size: 0.72rem; margin-top: 1px; }
.aarti-time-badge {
    font-size: 0.8rem;
    font-weight: 800;
    color: #FF9933;
    background: rgba(255,153,51,0.1);
    border: 1px solid rgba(255,153,51,0.25);
    padding: 3px 10px;
    border-radius: 20px;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.aarti-time-badge.next-badge {
    color: #FFD700;
    background: rgba(255,215,0,0.15);
    border-color: rgba(255,215,0,0.4);
    animation: nextBadgePulse 1.5s ease-in-out infinite;
}
@keyframes nextBadgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,215,0,0.4); }
    50% { box-shadow: 0 0 0 5px rgba(255,215,0,0); }
}

/* Quick Info card (right) */
.darshan-info-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,215,0,0.12);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(10px);
}
.darshan-info-card h3 {
    color: #FFD700;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,215,0,0.1);
    padding-bottom: 12px;
}
.info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.info-row:last-child { border-bottom: none; }
.info-row-icon {
    width: 34px; height: 34px;
    border-radius: 10px;
    background: rgba(255,153,51,0.12);
    display: flex; align-items: center; justify-content: center;
    color: #FF9933;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.info-row-text .label { color: rgba(255,255,255,0.5); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }
.info-row-text .value { color: rgba(255,255,255,0.9); font-size: 0.85rem; font-weight: 600; margin-top: 1px; }
.info-row-text .value.highlight { color: #FFD700; }

/* Floating live indicator */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,82,82,0.15);
    border: 1px solid rgba(255,82,82,0.35);
    border-radius: 50px;
    padding: 3px 10px;
    font-size: 0.68rem;
    color: #FF5252;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.live-indicator .dot {
    width: 6px; height: 6px;
    background: #FF5252;
    border-radius: 50%;
    animation: statusPulse 0.8s ease-in-out infinite;
}
