        /* Custom Fine-Tuned Typography Scaffolding & Dynamic Fluid Scaling */
        body {
            font-family: 'Inter', sans-serif;
            background-color: #050505;
            color: #FFFFFF;
            overflow-x: hidden;
            font-weight: 200;
            letter-spacing: 0.02em;
        }

        /* Outline Text Utilities for Futuristic Look */
        .text-outline {
            color: transparent;
            -webkit-text-stroke: 1.5px #FFFFFF;
        }
        .text-outline-lime {
            color: transparent;
            -webkit-text-stroke: 1.5px #D6FB61;
        }
        .text-outline-dark {
            color: transparent;
            -webkit-text-stroke: 1.5px #050505;
        }

        /* Dynamic Continuous CSS Marquees */
        @keyframes marquee-left {
            0% { transform: translateX(0%); }
            100% { transform: translateX(-50%); }
        }
        @keyframes marquee-right {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0%); }
        }
        .animate-marquee-fast {
            display: flex;
            width: max-content;
            animation: marquee-left 14s linear infinite;
        }
        .animate-marquee-slow {
            display: flex;
            width: max-content;
            animation: marquee-right 22s linear infinite;
        }

        /* Tech Engine Floating & Particle Canvas Overlays */
        @keyframes morph-shape {
            0% { border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%; transform: translate(0px, 0px) rotate(0deg); }
            50% { border-radius: 70% 30% 52% 48% / 60% 40% 60% 40%; transform: translate(40px, -60px) rotate(180deg); }
            100% { border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%; transform: translate(0px, 0px) rotate(360deg); }
        }
        .morphing-glow {
            animation: morph-shape 18s ease-in-out infinite;
            filter: blur(80px);
            mix-blend-mode: screen;
        }

        /* Custom Interactive Fluid Layout Elements */
        .custom-scrollbar::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        .custom-scrollbar::-webkit-scrollbar-track {
            background: #050505;
        }
        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: #D6FB61;
            border-radius: 3px;
        }

        /* Framework Router Switcher System */
        .app-view { display: none; }
        .app-view.view-active { display: block; }

        /* Noise Texture Layer Overlay */
        .noise-overlay {
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3 Trickling%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            opacity: 0.035;
        }
