/* ============================================
   Alicia.css
   CORTANA-INSPIRED MEMORIAL THEME
   "I Am Everywhere" - Alicia Mae Foundation
   Holographic Pink HUD Style - Memorial Accents Only

   Enhanced: fluid typography, purple halo/angel
   layer, "everyone" aura, modern responsive
   patterns. Core style target unchanged.
   ============================================ */

/* ===== COLOR PALETTE ===== */
:root {
    /* Deep Space Base */
    --cosmos-deep: #0a0e27;
    --cosmos-mid: #1a1f3a;
    --cosmos-light: #2d3561;
    /* Holographic Pink (Cortana-inspired) */
    --holo-pink-bright: #ff6ec7;
    --holo-pink-mid: #ff9ec9;
    --holo-pink-soft: #ffb8dc;
    --holo-pink-glow: rgba(255, 110, 199, 0.6);
    /* Secondary Holographic Colors */
    --holo-purple: #c77dff;
    --holo-cyan: #7dd3fc;
    --holo-white: #e8f4ff;
    /* Angel / Halo Purple ("everyone" theme) */
    --halo-purple-bright: #d8b4fe;
    --halo-purple-mid: #b794f6;
    --halo-purple-deep: #8b7ec8;
    --halo-purple-glow: rgba(199, 125, 255, 0.55);
    --halo-gold: rgba(255, 226, 130, 0.7);
    /* Legacy nebula tokens (kept for shared components) */
    --nebula-purple: #8b7ec8;
    --nebula-soft: #d4c5f9;
    --nebula-lavender: #b8a9e8;
    --starlight: #e8e3f5;
    --cosmic-pink: #ff9ec9;
    --cosmic-cyan: #7dd3fc;
    --cosmic-gold: #ffd700;
    --scan-line-color: rgba(255, 110, 199, 0.15);
    /* Gradients */
    --gradient-holo: linear-gradient(135deg, #ff6ec7 0%, #c77dff 50%, #7dd3fc 100%);
    --gradient-nebula: linear-gradient(135deg, #8b7ec8 0%, #c77dff 50%, #7dd3fc 100%);
    --gradient-halo: linear-gradient(135deg, #d8b4fe 0%, #c77dff 45%, #ff9ec9 100%);
    --gradient-scan: linear-gradient(0deg, transparent 0%, var(--scan-line-color) 50%, transparent 100%);
    /* Fluid type scale */
    --fs-hero: clamp(28px, 6vw, 52px);
    --fs-heading: clamp(24px, 4vw, 32px);
    --fs-subtitle: clamp(18px, 2.6vw, 24px);
    --fs-quote: clamp(16px, 2.2vw, 22px);
    --fs-body: clamp(15px, 1.8vw, 18px);
    /* Motion */
    --ease-holo: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100dvh;
    background: radial-gradient(ellipse at 50% -10%, var(--cosmos-light) 0%, var(--cosmos-mid) 40%, var(--cosmos-deep) 100%) fixed;
    background-color: var(--cosmos-deep);
    color: var(--starlight);
    font-family: 'Fredoka', 'Comic Neue', Georgia, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Skip link for keyboard users */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    z-index: 2000;
    padding: 10px 20px;
    background: var(--cosmos-mid);
    color: var(--holo-white);
    border: 2px solid var(--holo-pink-bright);
    border-radius: 12px;
    text-decoration: none;
    transition: top 0.2s var(--ease-holo);
}

    .skip-link:focus-visible {
        top: 20px;
    }

/* ===== HOLOGRAPHIC PARTICLE SYSTEM ===== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(2px 2px at 20% 30%, var(--holo-pink-bright), transparent), radial-gradient(1px 1px at 60% 70%, var(--holo-cyan), transparent), radial-gradient(1px 1px at 50% 50%, var(--holo-purple), transparent), radial-gradient(2px 2px at 80% 10%, var(--holo-pink-mid), transparent), radial-gradient(1px 1px at 90% 60%, var(--holo-pink-bright), transparent), radial-gradient(1px 1px at 33% 80%, var(--holo-cyan), transparent), radial-gradient(2px 2px at 15% 90%, var(--holo-purple), transparent), radial-gradient(1px 1px at 70% 40%, var(--halo-purple-bright), transparent), radial-gradient(2px 2px at 40% 15%, var(--halo-purple-mid), transparent);
    background-size: 200% 200%;
    animation: holo-particles-drift 40s linear infinite;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

@keyframes holo-particles-drift {
    0% {
        background-position: 0% 0%;
        opacity: 0.4;
    }

    50% {
        background-position: 100% 100%;
        opacity: 0.6;
    }

    100% {
        background-position: 0% 0%;
        opacity: 0.4;
    }
}

/* ===== SCAN LINES EFFECT ===== */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient( 0deg, transparent 0px, var(--scan-line-color) 1px, transparent 2px, transparent 4px );
    animation: scan-lines 8s linear infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

@keyframes scan-lines {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(4px);
    }
}

/* ===== HOLOGRAPHIC GLOW LAYER ===== */
.cosmic-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient( ellipse at 50% 50%, var(--holo-pink-glow) 0%, rgba(199, 125, 255, 0.2) 40%, transparent 70% );
    animation: holo-pulse 6s ease-in-out infinite;
}

@keyframes holo-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

/* ===== "EVERYONE" HALO AURA =====
   A soft purple angel-light that breathes over the whole
   page — she is everywhere, in everyone. */
.halo-aura {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 0%, var(--halo-purple-glow) 0%, transparent 65%), radial-gradient(ellipse 40% 30% at 15% 85%, rgba(216, 180, 254, 0.18) 0%, transparent 70%), radial-gradient(ellipse 40% 30% at 85% 85%, rgba(255, 158, 201, 0.15) 0%, transparent 70%);
    animation: halo-aura-breathe 12s ease-in-out infinite;
    mix-blend-mode: screen;
}

@keyframes halo-aura-breathe {
    0%, 100% {
        opacity: 0.35;
        transform: translateY(0);
    }

    50% {
        opacity: 0.6;
        transform: translateY(-12px);
    }
}

/* ===== ANGEL HALO + WINGS (photo frame) ===== */
.halo-frame {
    position: relative;
    width: fit-content;
    margin: 40px auto 30px;
}

.halo-ring {
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%) rotateX(65deg);
    width: 150px;
    height: 44px;
    border-radius: 50%;
    border: 5px solid transparent;
    background: linear-gradient(var(--cosmos-mid), var(--cosmos-mid)) padding-box, var(--gradient-halo) border-box;
    box-shadow: 0 0 25px var(--halo-purple-glow), 0 0 50px rgba(216, 180, 254, 0.4), inset 0 0 15px var(--halo-gold);
    filter: blur(0.5px);
    animation: halo-hover 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

    .halo-ring::after {
        content: '';
        position: absolute;
        inset: -12px;
        border-radius: 50%;
        background: radial-gradient(ellipse, var(--halo-purple-glow) 0%, transparent 70%);
        opacity: 0.6;
        animation: halo-shimmer 4s ease-in-out infinite;
    }

@keyframes halo-hover {
    0%, 100% {
        transform: translateX(-50%) rotateX(65deg) translateY(0);
        opacity: 0.9;
    }

    50% {
        transform: translateX(-50%) rotateX(65deg) translateY(-8px);
        opacity: 1;
    }
}

@keyframes halo-shimmer {
    0%, 100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

/* Soft luminous wings behind the frame */
.angel-wing {
    position: absolute;
    top: 50%;
    width: clamp(80px, 14vw, 140px);
    height: clamp(120px, 20vw, 200px);
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse 70% 100% at 100% 50%, var(--halo-purple-glow) 0%, rgba(216, 180, 254, 0.25) 40%, transparent 75%);
    filter: blur(8px);
    animation: wing-drift 6s ease-in-out infinite;
}

.wing-left {
    right: calc(100% - 30px);
    transform: translateY(-55%) rotate(-12deg);
    border-radius: 80% 20% 60% 40% / 60% 30% 70% 40%;
}

.wing-right {
    left: calc(100% - 30px);
    transform: translateY(-55%) rotate(12deg) scaleX(-1);
    border-radius: 80% 20% 60% 40% / 60% 30% 70% 40%;
}

@keyframes wing-drift {
    0%, 100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.85;
    }
}

/* ===== HOLOGRAPHIC CARDS ===== */
.cosmic-card {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid var(--holo-pink-mid);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 20px var(--holo-pink-glow), inset 0 0 20px rgba(255, 110, 199, 0.1), 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s var(--ease-holo), box-shadow 0.3s var(--ease-holo), border-color 0.3s var(--ease-holo);
    position: relative;
    overflow: hidden;
}

    .cosmic-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient( circle, var(--holo-pink-glow) 0%, transparent 60% );
        animation: holo-card-drift 10s ease-in-out infinite;
        pointer-events: none;
    }

@keyframes holo-card-drift {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.2;
    }

    50% {
        transform: translate(20%, 20%) rotate(180deg);
        opacity: 0.4;
    }
}

.cosmic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px var(--holo-pink-glow), inset 0 0 30px rgba(255, 110, 199, 0.15), 0 12px 40px rgba(255, 110, 199, 0.3);
    border-color: var(--holo-pink-bright);
}

/* ===== DATA STREAM EFFECT ===== */
.cosmic-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient( 90deg, transparent, var(--holo-pink-glow), transparent );
    animation: data-stream 3s ease-in-out infinite;
}

@keyframes data-stream {
    0% {
        left: -100%;
    }

    50%, 100% {
        left: 100%;
    }
}

/* ===== HOLOGRAPHIC BUTTONS ===== */
.btn-cosmic {
    background: var(--gradient-holo);
    color: white;
    border: 2px solid var(--holo-pink-bright);
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
    transition: transform 0.3s var(--ease-holo), box-shadow 0.3s var(--ease-holo);
    box-shadow: 0 0 15px var(--holo-pink-glow), inset 0 0 10px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    min-height: 48px; /* touch target */
}

    .btn-cosmic::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient( circle, rgba(255, 255, 255, 0.3) 0%, transparent 70% );
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .btn-cosmic:hover::before {
        opacity: 1;
        animation: holo-button-pulse 1.5s ease-in-out infinite;
    }

@keyframes holo-button-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.btn-cosmic:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--holo-pink-glow), 0 0 50px rgba(255, 110, 199, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.2);
}

/* ===== MEMORIAL CONTENT WITH HUD EFFECT ===== */
.memorial-content {
    max-width: 900px;
    width: 100%;
    background: rgba(26, 31, 58, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: clamp(30px, 6vw, 60px) clamp(20px, 5vw, 50px);
    box-shadow: 0 0 40px var(--holo-pink-glow), inset 0 0 40px rgba(255, 110, 199, 0.1), 0 20px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--holo-pink-mid);
}

    /* HUD Corner Brackets */
    .memorial-content::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 20px;
        width: 60px;
        height: 60px;
        border-top: 3px solid var(--holo-pink-bright);
        border-left: 3px solid var(--holo-pink-bright);
        box-shadow: 0 0 10px var(--holo-pink-glow);
        animation: hud-flicker 3s ease-in-out infinite;
    }

    .memorial-content::after {
        content: '';
        position: absolute;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        border-bottom: 3px solid var(--holo-pink-bright);
        border-right: 3px solid var(--holo-pink-bright);
        box-shadow: 0 0 10px var(--holo-pink-glow);
        animation: hud-flicker 3s ease-in-out infinite 1.5s;
    }

@keyframes hud-flicker {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* ===== PHOTO FRAME HOLOGRAPHIC ===== */
.photo-frame {
    width: clamp(150px, 30vw, 220px);
    aspect-ratio: 1;
    height: auto;
    margin: 0 auto;
    border-radius: 50%;
    border: 4px solid var(--holo-pink-bright);
    background: var(--gradient-holo);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px var(--holo-pink-glow), inset 0 0 30px rgba(255, 110, 199, 0.2), 0 10px 40px rgba(255, 110, 199, 0.4);
    overflow: hidden;
    position: relative;
    z-index: 1;
    animation: holo-frame-pulse 4s ease-in-out infinite;
}

@keyframes holo-frame-pulse {
    0%, 100% {
        box-shadow: 0 0 30px var(--holo-pink-glow), inset 0 0 30px rgba(255, 110, 199, 0.2), 0 10px 40px rgba(255, 110, 199, 0.4);
    }

    50% {
        box-shadow: 0 0 50px var(--halo-purple-glow), inset 0 0 50px rgba(199, 125, 255, 0.3), 0 10px 60px rgba(216, 180, 254, 0.6);
    }
}

.photo-frame::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient( from 0deg, transparent, var(--holo-pink-bright), transparent, var(--halo-purple-bright), transparent, var(--holo-cyan), transparent );
    animation: holo-frame-rotate 4s linear infinite;
    opacity: 0.6;
}

@keyframes holo-frame-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border-radius: 50%;
}

/* ===== HOLOGRAPHIC TEXT EFFECTS ===== */
h1, h2, h3 {
    color: var(--holo-pink-soft);
    text-shadow: 0 0 20px var(--holo-pink-glow), 0 0 40px rgba(255, 110, 199, 0.3);
    text-wrap: balance;
}

.memorial-content h1 {
    font-size: var(--fs-hero);
    color: var(--holo-white);
    text-shadow: 0 0 30px var(--holo-pink-glow), 0 0 60px rgba(255, 110, 199, 0.4), 0 2px 4px rgba(0, 0, 0, 0.8);
    animation: holo-text-flicker 5s ease-in-out infinite;
}

.section-heading {
    color: var(--holo-pink-soft);
    font-size: var(--fs-heading);
    margin-top: 50px;
    margin-bottom: 25px;
}

@keyframes holo-text-flicker {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 30px var(--holo-pink-glow), 0 0 60px rgba(255, 110, 199, 0.4);
    }

    50% {
        opacity: 0.95;
        text-shadow: 0 0 40px var(--holo-pink-glow), 0 0 80px rgba(255, 110, 199, 0.5);
    }
}

/* ===== QUOTE WITH HUD STYLING ===== */
.quote {
    font-size: var(--fs-quote);
    color: var(--holo-pink-soft);
    font-style: italic;
    margin: 35px 0;
    padding: 25px;
    background: rgba(255, 110, 199, 0.05);
    border-radius: 15px;
    border: 2px solid var(--holo-pink-mid);
    box-shadow: 0 0 20px rgba(255, 110, 199, 0.2), inset 0 0 20px rgba(255, 110, 199, 0.05);
    position: relative;
    text-shadow: 0 0 10px rgba(255, 110, 199, 0.3);
}

    .quote::before,
    .quote::after {
        color: var(--holo-pink-bright);
        opacity: 0.4;
        text-shadow: 0 0 15px var(--holo-pink-glow);
    }

/* "Everyone" signature quote — purple angel glow */
.everyone-quote {
    color: var(--halo-purple-bright);
    border-color: var(--halo-purple-mid);
    background: rgba(199, 125, 255, 0.06);
    box-shadow: 0 0 25px var(--halo-purple-glow), inset 0 0 25px rgba(199, 125, 255, 0.06);
    text-shadow: 0 0 12px var(--halo-purple-glow);
    animation: everyone-glow 8s ease-in-out infinite;
}

@keyframes everyone-glow {
    0%, 100% {
        box-shadow: 0 0 25px var(--halo-purple-glow), inset 0 0 25px rgba(199, 125, 255, 0.06);
    }

    50% {
        box-shadow: 0 0 45px var(--halo-purple-glow), 0 0 70px rgba(216, 180, 254, 0.3), inset 0 0 35px rgba(199, 125, 255, 0.1);
    }
}

/* ===== FLOATING ACTION BUTTON (HOLOGRAPHIC) ===== */
.donation-fab {
    position: fixed;
    bottom: max(30px, env(safe-area-inset-bottom, 0px) + 20px);
    right: max(30px, env(safe-area-inset-right, 0px) + 20px);
    width: 70px;
    height: 70px;
    background: var(--gradient-holo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px var(--holo-pink-glow), 0 6px 30px rgba(255, 110, 199, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: transform 0.3s var(--ease-holo), box-shadow 0.3s var(--ease-holo);
    z-index: 1000;
    text-decoration: none;
    border: 3px solid var(--holo-pink-bright);
    animation: fab-holo-pulse 3s ease-in-out infinite;
}

@keyframes fab-holo-pulse {
    0%, 100% {
        box-shadow: 0 0 30px var(--holo-pink-glow), 0 6px 30px rgba(255, 110, 199, 0.6);
    }

    50% {
        box-shadow: 0 0 50px var(--holo-pink-glow), 0 8px 40px rgba(255, 110, 199, 0.8);
    }
}

.donation-fab:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 0 60px var(--holo-pink-glow), 0 10px 50px rgba(255, 110, 199, 0.8);
}

/* ===== NAVIGATION HOLOGRAPHIC (Page-level nav, not starfield) ===== */
.memorial-nav {
    background: rgba(26, 31, 58, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 0 20px rgba(255, 110, 199, 0.3), 0 5px 30px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    border: 2px solid var(--holo-pink-mid);
    padding: 12px 25px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

    .memorial-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, var(--holo-pink-glow), transparent );
        animation: nav-data-stream 4s ease-in-out infinite;
    }

@keyframes nav-data-stream {
    0% {
        left: -100%;
    }

    50%, 100% {
        left: 100%;
    }
}

.memorial-nav-items .nav-link:hover {
    background: rgba(255, 110, 199, 0.15);
    color: var(--holo-pink-soft);
    box-shadow: 0 0 15px rgba(255, 110, 199, 0.3), inset 0 0 10px rgba(255, 110, 199, 0.1);
}

/* ===== DIVIDERS WITH DIGITAL EFFECT ===== */
.cosmic-divider,
.divider {
    margin: 30px auto;
    width: min(60%, 500px);
    height: 2px;
    border: none;
    background: linear-gradient( to right, transparent, var(--holo-pink-bright), var(--halo-purple-bright), var(--holo-cyan), var(--holo-pink-bright), transparent );
    box-shadow: 0 0 10px var(--holo-pink-glow);
    animation: divider-glow 3s ease-in-out infinite;
}

@keyframes divider-glow {
    0%, 100% {
        opacity: 0.5;
        box-shadow: 0 0 10px var(--holo-pink-glow);
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 0 20px var(--holo-pink-glow);
    }
}

/* ===== BACKDROP-FILTER FALLBACK ===== */
@supports not (backdrop-filter: blur(1px)) {
    .cosmic-card,
    .memorial-content,
    .memorial-nav {
        background: rgba(26, 31, 58, 0.92);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 480px) {
    .memorial-content {
        border-radius: 20px;
    }

        .memorial-content::before,
        .memorial-content::after {
            width: 40px;
            height: 40px;
            top: 15px;
            left: 15px;
        }

        .memorial-content::after {
            top: auto;
            left: auto;
            bottom: 15px;
            right: 15px;
        }

    .halo-ring {
        width: 110px;
        height: 32px;
        top: -26px;
    }

    .donation-fab {
        width: 60px;
        height: 60px;
    }
}

/* ===== ACCESSIBILITY ===== */
.btn-cosmic:focus-visible,
.donation-fab:focus-visible,
a:focus-visible {
    outline: 3px solid var(--holo-pink-bright);
    outline-offset: 4px;
    border-radius: 8px;
}

@media (prefers-contrast: more) {
    :root {
        --scan-line-color: transparent;
    }

    body::before,
    .halo-aura,
    .cosmic-overlay {
        opacity: 0.15;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    body::before,
    body::after,
    .cosmic-overlay,
    .halo-aura,
    .halo-ring,
    .halo-ring::after,
    .angel-wing,
    .cosmic-card::before,
    .cosmic-card::after,
    .btn-cosmic::before,
    .memorial-content::before,
    .memorial-content::after,
    .photo-frame,
    .photo-frame::before,
    .memorial-content h1,
    .everyone-quote,
    .donation-fab,
    .memorial-nav::before,
    .cosmic-divider,
    .divider {
        animation: none !important;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}

/* ===== PRINT ===== */
@media print {
    body::before,
    body::after,
    .cosmic-overlay,
    .halo-aura,
    .angel-wing,
    .donation-fab {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}
