
        body { font-family: 'Inter', sans-serif; }
        
        /* Custom Animations */
        @keyframes breathe {
            0%, 100% { box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.3); }
            50% { box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.6); }
        }
        .breathing-glow {
            animation: breathe 4s ease-in-out infinite;
        }

        /* Ken Burns Effect for Static Image */
        @keyframes kenburns {
            0% { transform: scale(1.0); }
            100% { transform: scale(1.1); }
        }
        .ken-burns-effect {
            animation: kenburns 20s alternate infinite linear;
        }

        /* Smooth Anchor Scrolling */
        html { scroll-behavior: smooth; }
    