        body {
            background-color: #000000;
            color: #FFFFFF;
            font-family: "Lilita One", sans-serif;
            overflow-x: hidden;
        }
        /* Radical Fine Line Typographic Outlines */
        .text-stroke-thick {
            -webkit-text-stroke: 3px #FFFFFF;
            color: transparent;
        }
        .text-stroke-black {
            -webkit-text-stroke: 3px #000000;
            color: transparent;
        }
        .text-stroke-lime {
            -webkit-text-stroke: 2px #D6FB61;
            color: transparent;
        }
        .text-stroke-blue {
            -webkit-text-stroke: 2px #4BB8FA;
            color: transparent;
        }
        
        /* Deactivate Standard Scroll Indicators */
        ::-webkit-scrollbar {
            display: none;
        }
        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        
        /* Interactive Graphic Film-Strip Linear Track Animation loops */
        @keyframes horizontalMarquee {
            0% { transform: translateX(0%); }
            100% { transform: translateX(-50%); }
        }
        .animate-film-track {
            animation: horizontalMarquee 26s linear infinite;
        }

        /* Subtle Retro High-Fashion Grain Texturing Matrix */
        .grain-overlay {
            position: fixed;
            top: 0; left: 0; width: 100vw; height: 100vh;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            opacity: 0.04;
            pointer-events: none;
            z-index: 9999;
        }
        
        /* Custom Column Adjustments for Editorial Layouts */
        .editorial-cols-2 {
            column-count: 1;
            column-gap: 2rem;
        }
        @media(min-width: 768px) {
            .editorial-cols-2 {
                column-count: 2;
            }
        }
