        /* Core Brutalist & Experimental UI Typography Overrides */
        body, p, h1, h2, h3, h4, h5, h6, input, textarea, button, span, div, a {
            font-family: "Signika Negative", sans-serif;
            letter-spacing: -0.04em;
        }

        body {
            background-color: #111111;
            overflow-x: hidden;
        }

        /* Brutalist Outlined Typography Rules */
        .text-stroke-thick-black {
            -webkit-text-stroke: 4px #111111;
            color: transparent;
        }
        .text-stroke-thick-white {
            -webkit-text-stroke: 2px rgba(255, 255, 255, 0.15);
            color: transparent;
        }
        .text-stroke-orange {
            -webkit-text-stroke: 1.5px #FF6F3C;
            color: transparent;
        }

        /* Multipage Virtual Router Views Core Engine */
        .universe-page-view {
            display: none;
            opacity: 0;
            transform: translateY(40px) scale(0.99);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .universe-page-view.active-view-state {
            display: block;
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* Interactive Navigation Matrix Overlay Configurations */
        #interactive-nav-universe {
            clip-path: circle(0% at 95% 5%);
            transition: clip-path 0.9s cubic-bezier(0.86, 0, 0.07, 1);
        }
        #interactive-nav-universe.navigation-engaged {
            clip-path: circle(150% at 95% 5%);
        }

        /* Kinetic Scrolling Tracks Bar Optimization */
        ::-webkit-scrollbar {
            width: 12px;
        }
        ::-webkit-scrollbar-track {
            background: #111111;
        }
        ::-webkit-scrollbar-thumb {
            background: #DEE791;
            border: 3px solid #111111;
        }

        /* Cinematic Motion Keyframes */
        @keyframes orbitWave {
            0% { transform: translate(0px, 0px) scale(1) rotate(0deg); }
            50% { transform: translate(60px, -40px) scale(1.2) rotate(180deg); }
            100% { transform: translate(0px, 0px) scale(1) rotate(360deg); }
        }
        .animate-orbit-blob-orange {
            animation: orbitWave 20s infinite ease-in-out;
        }
        .animate-orbit-blob-lime {
            animation: orbitWave 28s infinite ease-in-out reverse;
        }

        @keyframes infiniteTicker {
            0% { transform: translateX(0%); }
            100% { transform: translateX(-50%); }
        }
        .animate-kinetic-ticker {
            display: inline-flex;
            white-space: nowrap;
            animation: infiniteTicker 35s linear infinite;
        }

        @keyframes mechanicalRotation {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .animate-orbital-system-core {
            animation: mechanicalRotation 80s linear infinite;
        }

        /* 3D Immersive Tunnel Perspective Settings */
        .cinematic-tunnel-container {
            perspective: 1200px;
        }
        .cinematic-tunnel-depth-panel {
            transform: translateZ(-200px) rotateY(-5deg);
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .cinematic-tunnel-depth-panel:hover {
            transform: translateZ(0px) rotateY(0deg);
        }
