/* ═══════════════════════════════════════════════════════════════════════════════
   ANHAD HOMEPAGE — CINEMATIC DARBAR SAHIB EXPERIENCE WITH EXTREME CLAYMORPHISM
   Version: 12.0.0 — Ultimate Claymorphism UI Upgrade
   
   7-Layer Architecture:
   L0: Entry overlay (black fade-in)
   L1: Scene background (Darbar Sahib photo)
   L2: Color grading (time-of-day tint)
   L3: Vignette
   L4: Light source (sun/moon glow)
   L5: Stars canvas (night only)
   L6: Temple glow (golden haze)
   L7: UI layer (header, wave, footer) — NOW WITH EXTREME CLAYMORPHISM
   ═══════════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Noto+Sans+Gurmukhi:wght@400;500;600;700&display=swap');

/* ─────────────────────────────────────────────────────────────────────────────
   DESIGN TOKENS — Enhanced with Claymorphism Palette
   ───────────────────────────────────────────────────────────────────────────── */
:root {
    --bg-void: #0a0e1a;
    --gold-primary: #C9A227;
    --gold-light: #F5D47A;
    --gold-glow: rgba(201, 162, 39, 0.4);
    --text-primary: rgba(255, 255, 255, 0.95);
    --text-secondary: rgba(255, 255, 255, 0.65);
    --text-ghost: rgba(255, 255, 255, 0.3);
    --safe-top: env(safe-area-inset-top, 20px);
    --safe-bottom: env(safe-area-inset-bottom, 20px);
    --ease-ios: cubic-bezier(0.28, 0.11, 0.32, 1);
    --ease-spring: cubic-bezier(0.37, 0.01, 0.28, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* ═══════════════════════════════════════════════════════════════════════
       CLAYMORPHISM DESIGN TOKENS — Extreme 3D Depth System
       ═══════════════════════════════════════════════════════════════════════ */
    --clay-bg: rgba(255, 255, 255, 0.08);
    --clay-bg-strong: rgba(255, 255, 255, 0.12);
    --clay-border: rgba(255, 255, 255, 0.18);
    --clay-border-strong: rgba(255, 255, 255, 0.25);
    
    /* Double Shadow System — The Heart of Claymorphism */
    --clay-shadow-light: 8px 8px 16px rgba(0, 0, 0, 0.4);
    --clay-shadow-dark: -4px -4px 12px rgba(255, 255, 255, 0.05);
    --clay-shadow-outer: 12px 12px 24px rgba(0, 0, 0, 0.5), 
                          -6px -6px 16px rgba(255, 255, 255, 0.08);
    --clay-shadow-pressed: inset 6px 6px 12px rgba(0, 0, 0, 0.4),
                           inset -3px -3px 8px rgba(255, 255, 255, 0.05);
    --clay-shadow-gold: 0 8px 32px rgba(201, 162, 39, 0.4),
                        0 4px 16px rgba(201, 162, 39, 0.2);
    --clay-shadow-gold-strong: 0 12px 48px rgba(201, 162, 39, 0.5),
                              0 6px 24px rgba(201, 162, 39, 0.3);
    
    /* Blur & Depth */
    --clay-blur: blur(20px);
    --clay-blur-strong: blur(30px);
    --clay-radius-sm: 16px;
    --clay-radius-md: 24px;
    --clay-radius-lg: 32px;
    --clay-radius-xl: 50px;
    --clay-radius-full: 9999px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   APPLE-STYLE HANDWRITING ANIMATION (Removed)
   ───────────────────────────────────────────────────────────────────────────── */

/* ─────────────────────────────────────────────────────────────────────────────
   RESET & BASE
   ───────────────────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: var(--bg-void);
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    color: var(--text-primary);
    position: fixed;
    inset: 0;
    user-select: none;
}

.gurmukhi {
    font-family: 'Noto Sans Gurmukhi', sans-serif;
}

/* ─────────────────────────────────────────────────────────────────────────────
   L0: ENTRY OVERLAY (Removed)
   ───────────────────────────────────────────────────────────────────────────── */

/* ─────────────────────────────────────────────────────────────────────────────
   L1: SCENE BACKGROUND — Darbar Sahib
   ───────────────────────────────────────────────────────────────────────────── */
#scene-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    background-image: url('../assets/darbar-sahib-day.webp');
    opacity: 0;
    transform: scale(1.05);
    animation: sceneReveal 2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes sceneReveal {
    to {
        opacity: 1;
        transform: scale(1.0);
    }
}

#scene-bg.loaded {
    transform: scale(1.0);
}

/* ─────────────────────────────────────────────────────────────────────────────
   L2: COLOR GRADE — Time-of-Day Tint
   ───────────────────────────────────────────────────────────────────────────── */
#color-grade {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(10, 14, 26, 0.3) 0%,
        rgba(10, 14, 26, 0.1) 40%,
        rgba(10, 14, 26, 0.4) 100%
    );
    transition: background 3s ease;
    pointer-events: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   L3: VIGNETTE
   ───────────────────────────────────────────────────────────────────────────── */
#vignette {
    position: fixed;
    inset: 0;
    z-index: 2;
    background: radial-gradient(
        ellipse 65% 55% at 50% 45%,
        transparent 0%,
        rgba(0, 0, 0, 0.55) 100%
    );
    pointer-events: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   L4: LIGHT SOURCE — Celestial Sun/Moon Glow
   ───────────────────────────────────────────────────────────────────────────── */
#light-source {
    position: fixed;
    z-index: 3;
    width: 300px;
    height: 300px;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 220, 120, 0.5) 0%,
        rgba(255, 200, 80, 0.2) 40%,
        transparent 70%
    );
    filter: blur(30px);
    pointer-events: none;
    transition: opacity 3s ease, top 3s ease;
}

/* ─────────────────────────────────────────────────────────────────────────────
   L5: STARS CANVAS (night only)
   ───────────────────────────────────────────────────────────────────────────── */
#stars-canvas {
    position: fixed;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    transition: opacity 3s ease;
}

#stars-canvas.visible {
    opacity: 1;
}

/* ─────────────────────────────────────────────────────────────────────────────
   L6: TEMPLE GLOW — Massive Ambient Illumination Layer
   Makes the Harimandir Sahib building glow intensely using blend modes.
   ───────────────────────────────────────────────────────────────────────────── */
#temple-glow {
    position: fixed;
    z-index: 5;
    bottom: 0;
    left: 50%;
    width: 150vw;
    height: 100vh;
    transform: translate(-50%, 0);
    background: radial-gradient(
        ellipse at 50% 65%,
        #FFE885 0%,
        rgba(201, 162, 39, 0.6) 30%,
        transparent 65%
    );
    mix-blend-mode: overlay;
    filter: blur(40px);
    pointer-events: none;
    opacity: 0.25;
    transition: opacity 1.5s ease;
}

/* ─────────────────────────────────────────────────────────────────────────────
   L7: UI LAYER — All interactive elements
   ───────────────────────────────────────────────────────────────────────────── */
#ui {
    position: fixed;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 24px;
    opacity: 0;
    animation: uiReveal 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.5s forwards;
}

@keyframes uiReveal {
    to {
        opacity: 1;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   HEADER — Live Badge Only — EXTREME PREMIUM
   ───────────────────────────────────────────────────────────────────────────── */
#top-ui {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: calc(20px + var(--safe-top));
}

/* Live Badge — Ultra Premium Glassmorphism */
#live-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    /* Premium glassmorphism */
    background: linear-gradient(145deg,
        rgba(255, 59, 48, 0.3) 0%,
        rgba(255, 59, 48, 0.2) 50%,
        rgba(255, 59, 48, 0.1) 100%);
    border: 1.5px solid rgba(255, 59, 48, 0.4);
    border-radius: var(--clay-radius-full);
    box-shadow: 
        /* Outer shadows for depth */
        8px 8px 24px rgba(0, 0, 0, 0.5),
        -4px -4px 16px rgba(255, 255, 255, 0.1),
        /* Glow effect */
        0 0 30px rgba(255, 59, 48, 0.35),
        /* Inner highlight */
        inset 0 1px 2px rgba(255, 255, 255, 0.2),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
    animation: badgeReveal 1s var(--ease-ios) 1s forwards;
    transition: all 0.4s var(--ease-spring);
}

#live-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        12px 12px 32px rgba(0, 0, 0, 0.55),
        -6px -6px 20px rgba(255, 255, 255, 0.12),
        0 0 45px rgba(255, 59, 48, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.25),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 59, 48, 0.6);
}

@keyframes badgeReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

#live-badge .dot {
    width: 11px;
    height: 11px;
    background: #FF3B30;
    border-radius: 50%;
    animation: livePulse 1.8s ease-in-out infinite;
    box-shadow: 
        0 0 15px rgba(255, 59, 48, 0.9),
        0 0 30px rgba(255, 59, 48, 0.5),
        inset -1px -1px 3px rgba(0, 0, 0, 0.3),
        inset 1px 1px 3px rgba(255, 255, 255, 0.4);
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

#live-badge .label {
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.98);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* ─────────────────────────────────────────────────────────────────────────────
   CENTER — Gurbani Wave Visualizer
   ───────────────────────────────────────────────────────────────────────────── */
#wave-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER — Shabad + Enter Button — EXTREME CLAYMORPHISM UPGRADE
   ───────────────────────────────────────────────────────────────────────────── */
/* Bottom UI — Better spacing */
#bottom-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-bottom: calc(24px + var(--safe-bottom));
    text-align: center;
    padding-top: 10vh;
}

/* Shabad Container — Clean elegant style */
#shabad {
    font-size: 17px;
    font-weight: 500;
    color: var(--gold-light);
    text-shadow: 
        0 0 30px var(--gold-glow),
        2px 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.5;
    max-width: 320px;
    padding: 16px 24px;
    background: linear-gradient(145deg,
        rgba(201, 162, 39, 0.15) 0%,
        rgba(201, 162, 39, 0.08) 100%);
    border-radius: var(--clay-radius-lg);
    border: 1px solid rgba(201, 162, 39, 0.25);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s var(--ease-spring);
}

#shabad:hover {
    transform: translateY(-3px);
    box-shadow: 
        12px 12px 28px rgba(0, 0, 0, 0.45),
        -6px -6px 16px rgba(255, 255, 255, 0.08),
        0 0 30px rgba(201, 162, 39, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

@keyframes shabadReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered Card Fade-In Animations */
.card-fade-in {
    opacity: 0;
    transform: translateY(40px);
    animation: cardFadeInUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes cardFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered delays - total sequence 1-1.5 seconds */
.delay-0 { animation-delay: 0s; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }

/* Fireworks Particle Canvas */
#fireworks-canvas {
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
}

/* Translation — Clean sub-card style */
#translation {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-secondary);
    font-style: italic;
    max-width: 300px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--clay-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    line-height: 1.4;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ════════════════════════════════════════════════════════════════════════════
   ENTER BUTTON — EXTREME CLAYMORPHISM ULTIMATE EDITION
   ════════════════════════════════════════════════════════════════════════════ */
#enter-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 22px 56px;
    /* Multi-layer gradient for clay depth */
    background: linear-gradient(165deg, 
        #E8C547 0%,
        #D4B03A 25%,
        #C9A227 50%,
        #B89120 75%,
        #A6821B 100%);
    border-radius: var(--clay-radius-full);
    text-decoration: none;
    /* EXTREME Claymorphism Shadow Stack */
    box-shadow:
        /* Outer dark shadow (depth) */
        12px 16px 40px rgba(0, 0, 0, 0.5),
        8px 8px 24px rgba(0, 0, 0, 0.35),
        /* Outer light shadow (highlight) */
        -6px -6px 20px rgba(255, 255, 255, 0.15),
        -3px -3px 10px rgba(255, 255, 255, 0.08),
        /* Gold glow */
        0 0 50px rgba(201, 162, 39, 0.4),
        0 0 100px rgba(201, 162, 39, 0.2),
        /* Inner highlights (molded look) */
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15);
    transition: all 0.35s var(--ease-spring);
    opacity: 1;
    transform: translateY(0);
    position: relative;
    overflow: hidden;
}

/* Shimmer effect overlay */
#enter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%);
    transition: left 0.6s ease;
}

#enter-btn:hover::before {
    left: 100%;
}

@keyframes btnReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover State — Elevated Clay */
#enter-btn:hover {
    transform: scale(1.06) translateY(-4px);
    box-shadow:
        /* Elevated shadows */
        20px 24px 60px rgba(0, 0, 0, 0.55),
        12px 12px 32px rgba(0, 0, 0, 0.4),
        -8px -8px 24px rgba(255, 255, 255, 0.18),
        -4px -4px 12px rgba(255, 255, 255, 0.1),
        /* Enhanced gold glow */
        0 0 70px rgba(201, 162, 39, 0.55),
        0 0 140px rgba(201, 162, 39, 0.3),
        /* Inner highlights */
        inset 0 2px 4px rgba(255, 255, 255, 0.5),
        inset 0 -2px 4px rgba(0, 0, 0, 0.12);
    background: linear-gradient(165deg, 
        #F0D050 0%,
        #E0B840 25%,
        #D4AC30 50%,
        #C49C28 75%,
        #B08A20 100%);
}

/* Active/Pressed State — Pressed Clay */
#enter-btn:active {
    transform: scale(0.96) translateY(2px);
    box-shadow:
        /* Inset shadows for pressed look */
        inset 8px 8px 20px rgba(0, 0, 0, 0.4),
        inset 4px 4px 12px rgba(0, 0, 0, 0.25),
        inset -4px -4px 10px rgba(255, 255, 255, 0.05),
        /* Reduced outer glow */
        0 0 30px rgba(201, 162, 39, 0.3),
        /* Inner gradient shift */
        inset 0 3px 6px rgba(0, 0, 0, 0.2);
    background: linear-gradient(165deg, 
        #B89120 0%,
        #C9A227 50%,
        #D4B03A 100%);
}

/* Focus state for accessibility */
#enter-btn:focus-visible {
    outline: 3px solid rgba(201, 162, 39, 0.6);
    outline-offset: 4px;
}

.enter-btn-main {
    font-size: 18px;
    font-weight: 800;
    color: #0a0e1a;
    letter-spacing: 1px;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

/* Tap Hint — Clean style */
#tap-hint {
    font-size: 12px;
    color: var(--text-ghost);
    letter-spacing: 0.5px;
    padding: 8px 16px;
    margin-top: 8px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   AUDIO PLAYING STATE — Enhanced Clay Glow
   ───────────────────────────────────────────────────────────────────────────── */
body.audio-playing #temple-glow {
    opacity: 0.95;
    animation: templeAuraPulse 4s ease-in-out infinite alternate;
}

@keyframes templeAuraPulse {
    0% { opacity: 0.7; transform: translate(-50%, 0) scale(1); filter: blur(35px); }
    100% { opacity: 1; transform: translate(-50%, 0) scale(1.08); filter: blur(55px); }
}

body.audio-playing #live-badge {
    background: linear-gradient(145deg,
        rgba(255, 59, 48, 0.4) 0%,
        rgba(255, 59, 48, 0.25) 50%,
        rgba(255, 59, 48, 0.12) 100%);
    box-shadow: 
        10px 10px 28px rgba(0, 0, 0, 0.5),
        -5px -5px 16px rgba(255, 255, 255, 0.12),
        0 0 40px rgba(255, 59, 48, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 59, 48, 0.5);
}

body.audio-playing #live-badge .dot {
    box-shadow: 
        0 0 20px rgba(255, 59, 48, 0.9),
        inset -1px -1px 2px rgba(0, 0, 0, 0.3),
        inset 1px 1px 2px rgba(255, 255, 255, 0.4);
}

/* Audio playing — Enter button glows brighter */
body.audio-playing #enter-btn {
    box-shadow:
        12px 16px 40px rgba(0, 0, 0, 0.5),
        8px 8px 24px rgba(0, 0, 0, 0.35),
        -6px -6px 20px rgba(255, 255, 255, 0.15),
        0 0 70px rgba(201, 162, 39, 0.6),
        0 0 120px rgba(201, 162, 39, 0.35),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15);
    animation: btnGoldPulse 3s ease-in-out infinite;
}

@keyframes btnGoldPulse {
    0%, 100% { 
        box-shadow: 
            12px 16px 40px rgba(0, 0, 0, 0.5),
            0 0 70px rgba(201, 162, 39, 0.6),
            0 0 120px rgba(201, 162, 39, 0.35);
    }
    50% { 
        box-shadow: 
            12px 16px 40px rgba(0, 0, 0, 0.5),
            0 0 90px rgba(201, 162, 39, 0.8),
            0 0 160px rgba(201, 162, 39, 0.45);
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   TIME-OF-DAY VARIANTS
   ───────────────────────────────────────────────────────────────────────────── */
body.time-night #color-grade {
    background: linear-gradient(
        180deg,
        rgba(5, 5, 20, 0.6) 0%,
        rgba(5, 5, 20, 0.3) 40%,
        rgba(5, 5, 20, 0.7) 100%
    );
}

body.time-night #light-source {
    background: radial-gradient(
        circle,
        rgba(200, 210, 255, 0.3) 0%,
        rgba(180, 200, 255, 0.1) 40%,
        transparent 70%
    );
    top: 12%;
}

body.time-amritvela #color-grade {
    background: linear-gradient(
        180deg,
        rgba(10, 5, 30, 0.5) 0%,
        rgba(20, 10, 40, 0.2) 40%,
        rgba(10, 5, 20, 0.6) 100%
    );
}

body.time-evening #color-grade {
    background: linear-gradient(
        180deg,
        rgba(40, 15, 10, 0.4) 0%,
        rgba(30, 10, 5, 0.15) 40%,
        rgba(20, 8, 15, 0.5) 100%
    );
}

body.time-evening #light-source {
    background: radial-gradient(
        circle,
        rgba(255, 160, 60, 0.45) 0%,
        rgba(255, 120, 40, 0.15) 40%,
        transparent 70%
    );
    top: 15%;
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 380px) {
    #ik-onkar .gurmukhi { font-size: 38px; }
    #shabad { font-size: 15px; max-width: 280px; padding: 14px 20px; }
    #translation { font-size: 12px; max-width: 260px; padding: 10px 16px; }
    #enter-btn { padding: 18px 40px; }
    .enter-btn-main { font-size: 15px; }
    #bottom-ui { padding-top: 8vh; gap: 10px; }
}

@media (min-width: 500px) {
    #ik-onkar .gurmukhi { font-size: 56px; }
    #shabad { font-size: 19px; max-width: 380px; padding: 18px 28px; }
    #translation { font-size: 14px; max-width: 340px; padding: 14px 24px; }
    #bottom-ui { gap: 14px; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   REDUCED MOTION
   ───────────────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    #gurbani-wave span { animation: none !important; }
    #temple-glow { animation: none !important; }
}