/* ================================================
   TÃO LINDA THERAPIES - MODERN WELLNESS EFFECTS
   Ultra-Modern, Viral Design System
   ================================================ */

:root {
    /* === Original Color Palette (Preserved) === */
    --cream-bg: rgb(253, 246, 235);
    --dark-text: rgb(64, 64, 65);
    --white: #FFFFFF;
    --black: #000000;
    --primary-pink: #D88EB0;
    
    /* === Extended Wellness Palette === */
    --blush: #E8C4D4;
    --rose-gold: #B76E79;
    --sage: #9CAF88;
    --lavender: #C8A2C8;
    --warm-gold: #C9A961;
    
    /* === Aurora & Glow Effects === */
    --aurora-1: rgba(216, 142, 176, 0.15);
    --aurora-2: rgba(200, 162, 200, 0.12);
    --aurora-3: rgba(156, 175, 136, 0.10);
    --glow-pink: rgba(216, 142, 176, 0.6);
    --glow-soft: rgba(216, 142, 176, 0.25);
    --glow-intense: rgba(216, 142, 176, 0.8);
    
    /* === Glassmorphism === */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: rgba(0, 0, 0, 0.08);
    --glass-blur: 20px;
    
    /* === Premium Shadows === */
    --shadow-sm: 0 2px 8px rgba(64, 64, 65, 0.06);
    --shadow-md: 0 8px 30px rgba(64, 64, 65, 0.10);
    --shadow-lg: 0 20px 60px rgba(64, 64, 65, 0.15);
    --shadow-glow: 0 0 40px var(--glow-soft);
    --shadow-float: 0 30px 60px rgba(64, 64, 65, 0.18);
    
    /* === Animation Easings === */
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-zen: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* === Timing === */
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.8s;
    --duration-zen: 1.2s;
}

/* ================================================
   KEYFRAME ANIMATIONS
   ================================================ */

/* Aurora Wave - Peaceful flowing gradient */
@keyframes auroraWave {
    0%, 100% { 
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    25% { background-position: 50% 0%; }
    50% { 
        background-position: 100% 50%;
        filter: hue-rotate(10deg);
    }
    75% { background-position: 50% 100%; }
}

/* Gentle Float - Wellness breathing rhythm */
@keyframes gentleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(1deg); }
    50% { transform: translateY(-10px) rotate(-0.5deg); }
    75% { transform: translateY(-25px) rotate(0.5deg); }
}

/* Lotus Bloom - Petal unfolding */
@keyframes lotusBloom {
    0% { transform: scale(0.8) rotate(-45deg); opacity: 0; }
    50% { opacity: 0.9; }
    100% { transform: scale(1) rotate(360deg); opacity: 0; }
}

/* Zen Pulse - 4-second breathing */
@keyframes zenPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 var(--glow-soft);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.02);
        box-shadow: 0 0 40px 15px var(--glow-soft);
    }
}

/* Shimmer Sweep */
@keyframes shimmerSweep {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Morphing Organic Shape */
@keyframes morphShape {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 60% / 30% 50% 70% 50%; }
    75% { border-radius: 60% 30% 60% 50% / 60% 40% 50% 30%; }
}

/* Energy Flow */
@keyframes energyFlow {
    0% { 
        transform: translateX(-100%) skewX(-15deg);
        opacity: 0;
    }
    50% { opacity: 0.8; }
    100% { 
        transform: translateX(100%) skewX(-15deg);
        opacity: 0;
    }
}

/* Magnetic Hover */
@keyframes magneticReturn {
    0% { transform: translate(var(--mx, 0), var(--my, 0)); }
    100% { transform: translate(0, 0); }
}

/* Ripple Expand */
@keyframes rippleExpand {
    0% { transform: scale(0); opacity: 0.6; }
    100% { transform: scale(4); opacity: 0; }
}

/* Text Reveal with Blur */
@keyframes textRevealBlur {
    0% { 
        opacity: 0; 
        transform: translateY(40px);
        filter: blur(20px);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Stagger Cascade */
@keyframes staggerCascade {
    0% { 
        opacity: 0; 
        transform: translateY(60px) scale(0.9);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1);
    }
}

/* Sparkle Twinkle */
@keyframes sparkleTwinkle {
    0%, 100% { 
        opacity: 0; 
        transform: scale(0) rotate(0deg);
    }
    50% { 
        opacity: 1; 
        transform: scale(1) rotate(180deg);
    }
}

/* Gradient Rotate for Borders */
@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Card Lift 3D */
@keyframes cardLift3D {
    0% { transform: perspective(1000px) rotateX(0) rotateY(0) translateZ(0); }
    100% { transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateZ(20px); }
}

/* Divider Wave */
@keyframes dividerWave {
    0%, 100% { 
        d: path("M0,80 C200,120 400,40 600,80 C800,120 1000,40 1200,80 L1200,120 L0,120 Z");
    }
    50% { 
        d: path("M0,80 C200,40 400,120 600,80 C800,40 1000,120 1200,80 L1200,120 L0,120 Z");
    }
}

/* Scroll Progress */
@keyframes scrollProgress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* Cursor Trail Fade */
@keyframes cursorFade {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}

/* Icon Bounce */
@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Logo Gradient Shift */
@keyframes logoGradientShift {
    0%, 100% { filter: hue-rotate(0deg) brightness(1); }
    50% { filter: hue-rotate(15deg) brightness(1.05); }
}

/* Particle Float */
@keyframes particleFloat {
    0% { 
        transform: translate(0, 100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { 
        transform: translate(var(--drift, 0), -100vh) rotate(360deg);
        opacity: 0;
    }
}

/* ================================================
   CURSOR GLOW TRAIL
   ================================================ */

.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        var(--glow-soft) 0%,
        rgba(216, 142, 176, 0.1) 30%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none !important;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-smooth);
    mix-blend-mode: screen;
}

.cursor-glow.active {
    opacity: 1;
    animation: zenPulse 4s ease-in-out infinite;
}

/* Cursor sparkle trail */
.cursor-sparkle {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--primary-pink);
    border-radius: 50%;
    pointer-events: none !important;
    z-index: 1;
    transform: translate(-50%, -50%);
    animation: cursorFade 0.6s ease-out forwards;
}

/* ================================================
   FLOATING WELLNESS PARTICLES
   ================================================ */

.wellness-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.lotus-petal {
    position: absolute;
    width: 25px;
    height: 35px;
    background: linear-gradient(
        135deg,
        var(--primary-pink) 0%,
        var(--blush) 50%,
        rgba(255, 255, 255, 0.8) 100%
    );
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0;
    filter: blur(0.5px);
    animation: particleFloat var(--duration, 20s) linear infinite;
    animation-delay: var(--delay, 0s);
    left: var(--start, 50%);
    --drift: var(--horizontal, 50px);
}

.lotus-petal:nth-child(odd) {
    background: linear-gradient(
        135deg,
        var(--blush) 0%,
        var(--lavender) 50%,
        rgba(255, 255, 255, 0.6) 100%
    );
    animation-duration: calc(var(--duration, 20s) * 1.3);
}

.lotus-petal:nth-child(3n) {
    width: 18px;
    height: 26px;
    filter: blur(1px);
}

/* Energy orbs */
.energy-orb {
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(
        circle,
        var(--primary-pink) 0%,
        rgba(216, 142, 176, 0.5) 50%,
        transparent 70%
    );
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat var(--duration, 25s) linear infinite;
    animation-delay: var(--delay, 0s);
    left: var(--start, 50%);
}

/* ================================================
   GLASSMORPHISM COMPONENTS
   ================================================ */

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.glass-nav {
    background: rgba(253, 246, 235, 0.85);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.glass-modal {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-lg);
}

/* ================================================
   AURORA BACKGROUND EFFECTS
   ================================================ */

.aurora-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: morphShape 20s ease-in-out infinite, gentleFloat 15s ease-in-out infinite;
}

.aurora-blob-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.aurora-blob-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--aurora-2), var(--aurora-3));
    bottom: -150px;
    left: -150px;
    animation-delay: -5s;
}

.aurora-blob-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--aurora-3), var(--aurora-1));
    top: 40%;
    left: 50%;
    animation-delay: -10s;
}

/* ================================================
   SHIMMER TEXT EFFECT
   ================================================ */

.shimmer-text {
    background: linear-gradient(
        90deg,
        var(--dark-text) 0%,
        var(--dark-text) 35%,
        var(--primary-pink) 50%,
        var(--dark-text) 65%,
        var(--dark-text) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerSweep 5s linear infinite;
}

.shimmer-text-slow {
    animation-duration: 8s;
}

/* ================================================
   GRADIENT BORDER EFFECT
   ================================================ */

.gradient-border {
    position: relative;
    background: var(--cream-bg);
    z-index: 1;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -3px;
    padding: 3px;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        var(--primary-pink),
        var(--blush),
        var(--lavender),
        var(--primary-pink)
    );
    background-size: 300% 300%;
    animation: gradientRotate 4s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-smooth);
}

.gradient-border:hover::before,
.gradient-border:focus-within::before {
    opacity: 1;
}

/* ================================================
   MAGNETIC BUTTON EFFECT
   ================================================ */

.magnetic-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--dark-text) 0%, #2a2a2b 100%);
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-smooth);
    will-change: transform;
}

.magnetic-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, var(--primary-pink), var(--rose-gold));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s var(--ease-smooth), height 0.6s var(--ease-smooth);
    z-index: 0;
}

.magnetic-btn:hover::before {
    width: 400px;
    height: 400px;
}

.magnetic-btn span {
    position: relative;
    z-index: 1;
}

.magnetic-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(64, 64, 65, 0.25), var(--shadow-glow);
}

/* ================================================
   3D TILT CARD
   ================================================ */

.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.tilt-card-inner {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(64, 64, 65, 0.06);
    transition: all var(--duration-normal) var(--ease-smooth);
    transform-style: preserve-3d;
}

.tilt-card:hover .tilt-card-inner {
    box-shadow: var(--shadow-float), var(--shadow-glow);
}

/* Card shine effect */
.card-shine {
    position: relative;
    overflow: hidden;
}

.card-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-25deg);
    transition: none;
    z-index: 10;
    pointer-events: none;
}

.card-shine:hover::after {
    animation: energyFlow 0.8s ease-out;
}

/* ================================================
   RIPPLE CLICK EFFECT
   ================================================ */

.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(216, 142, 176, 0.4);
    transform: scale(0);
    animation: rippleExpand 0.6s ease-out;
    pointer-events: none;
}

/* ================================================
   SCROLL REVEAL ANIMATIONS
   ================================================ */

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(60px);
    transition: all var(--duration-zen) var(--ease-smooth);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-fade {
    opacity: 0;
    transition: opacity var(--duration-zen) var(--ease-smooth);
}

.reveal-fade.visible {
    opacity: 1;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all var(--duration-zen) var(--ease-smooth);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-blur {
    opacity: 0;
    filter: blur(20px);
    transform: translateY(30px);
    transition: all var(--duration-zen) var(--ease-smooth);
}

.reveal-blur.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(40px);
}

.stagger-children.visible > * {
    animation: staggerCascade 0.8s var(--ease-smooth) forwards;
}

.stagger-children.visible > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { animation-delay: 0.6s; }
.stagger-children.visible > *:nth-child(7) { animation-delay: 0.7s; }
.stagger-children.visible > *:nth-child(8) { animation-delay: 0.8s; }

/* ================================================
   BREATHING BUTTON
   ================================================ */

.breathing-btn {
    animation: zenPulse 4s ease-in-out infinite;
}

.breathing-btn:hover {
    animation: none;
    transform: scale(1.05);
    box-shadow: 0 15px 40px var(--glow-pink);
}

/* ================================================
   ZEN LOADER
   ================================================ */

.zen-loader {
    position: relative;
    width: 80px;
    height: 80px;
}

.zen-loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary-pink);
    animation: spin 1.5s linear infinite;
}

.zen-loader-ring:nth-child(2) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-top-color: var(--blush);
    animation-duration: 2s;
    animation-direction: reverse;
}

.zen-loader-ring:nth-child(3) {
    width: 30%;
    height: 30%;
    top: 35%;
    left: 35%;
    border-top-color: var(--lavender);
    animation-duration: 1s;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ================================================
   SCROLL PROGRESS BAR
   ================================================ */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--lavender), var(--primary-pink));
    background-size: 200% 100%;
    transform-origin: left;
    transform: scaleX(0);
    z-index: 9999;
    animation: gradientRotate 3s ease infinite;
}

/* ================================================
   WAVE SECTION DIVIDER
   ================================================ */

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-divider .wave-fill {
    fill: var(--cream-bg);
}

.wave-divider-top {
    top: 0;
    bottom: auto;
    transform: rotate(180deg);
}

/* ================================================
   FLOATING ACTION BUTTONS
   ================================================ */

.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-pink), var(--rose-gold));
    color: var(--white);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-normal) var(--ease-bounce);
    animation: gentleFloat 6s ease-in-out infinite;
}

.fab-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: var(--shadow-float), 0 0 50px var(--glow-pink);
}

/* ================================================
   SPARKLE DECORATION
   ================================================ */

.sparkle-container {
    position: relative;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-pink);
    border-radius: 50%;
    animation: sparkleTwinkle 2s ease-in-out infinite;
    pointer-events: none;
}

.sparkle::before,
.sparkle::after {
    content: '';
    position: absolute;
    background: inherit;
    border-radius: inherit;
}

.sparkle::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.sparkle::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

/* ================================================
   HOVER GLOW EFFECT
   ================================================ */

.hover-glow {
    position: relative;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.hover-glow::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: inherit;
    background: var(--glow-soft);
    filter: blur(15px);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-smooth);
    z-index: -1;
}

.hover-glow:hover::before {
    opacity: 1;
}

/* ================================================
   INPUT FOCUS ANIMATIONS
   ================================================ */

.input-modern {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid rgba(64, 64, 65, 0.1);
    border-radius: 16px;
    font-size: 1rem;
    background: var(--white);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.input-modern:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 5px rgba(216, 142, 176, 0.15), var(--shadow-md);
    transform: translateY(-2px);
}

.input-modern::placeholder {
    color: rgba(64, 64, 65, 0.4);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.input-modern:focus::placeholder {
    opacity: 0.6;
    transform: translateX(10px);
}

/* ================================================
   TOOLTIP MODERN
   ================================================ */

.tooltip-modern {
    position: relative;
}

.tooltip-modern::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    padding: 10px 16px;
    background: var(--dark-text);
    color: var(--white);
    font-size: 0.85rem;
    border-radius: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-bounce);
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.tooltip-modern::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--dark-text);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-bounce);
}

.tooltip-modern:hover::after,
.tooltip-modern:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ================================================
   REDUCED MOTION
   ================================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .cursor-glow,
    .lotus-petal,
    .energy-orb,
    .aurora-blob {
        display: none !important;
    }
}

/* ================================================
   MOBILE OPTIMIZATIONS
   ================================================ */

@media (max-width: 768px) {
    .cursor-glow {
        display: none;
    }
    
    .lotus-petal,
    .energy-orb {
        opacity: 0.5;
    }
    
    .aurora-blob {
        filter: blur(60px);
        opacity: 0.3;
    }
    
    .magnetic-btn {
        padding: 16px 32px;
    }
    
    .tilt-card-inner {
        padding: 24px;
    }
}

