        :root {
            --olive: #BBCB2E;
            --fog: #ECECEC;
            --blush: #FFD8DF;
            --dark: #1A1A1A;
        }

        body {
            font-family: 'Asap', sans-serif;
            background-color: var(--fog);
            color: var(--dark);
            overflow-x: hidden;
            margin: 0;
            cursor: crosshair;
        }

        /* --- UI Elements --- */
        .wordmark {
            position: fixed;
            top: -40px;
            right: 40px;
            font-weight: 900;
            letter-spacing: -0.05em;
            font-size: 1.5rem;
            z-index: 1000;
            pointer-events: none;
        }

        .side-nav {
            position: fixed;
            bottom: 40px;
            left: 40px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .nav-item {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            font-weight: 700;
            writing-mode: vertical-lr;
            transform: rotate(180deg);
            cursor: pointer;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            color: rgba(0,0,0,0.3);
            padding: 10px 0;
        }

        .nav-item:hover {
            color: var(--olive);
            transform: rotate(180deg) translateY(-10px);
        }

        .nav-item.active {
            color: var(--dark);
        }

        /* --- Fragments --- */
        .fragment {
            position: absolute;
            filter: blur(20px);
            opacity: 0;
            transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
            pointer-events: auto;
        }

        .fragment.visible {
            filter: blur(0px);
            opacity: 1;
        }

        .fragment:hover {
            transform: scale(1.05) rotate(1deg);
            z-index: 50;
        }

        /* --- Typography Art --- */
        .text-object {
            position: absolute;
            font-weight: 900;
            line-height: 0.8;
            letter-spacing: -0.08em;
            pointer-events: none;
            white-space: nowrap;
        }

        .stretch-word {
            display: inline-block;
            transform: scaleX(1.5);
            transform-origin: left;
        }

        /* --- Sections / Spaces --- */
        .memory-space {
            position: relative;
            min-height: 120vh;
            width: 100vw;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* --- Scroll Progress Dot --- */
        #cursor-follower {
            position: fixed;
            width: 10px;
            height: 10px;
            background: var(--olive);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: difference;
            transition: transform 0.1s ease;
        }

        /* --- Modal Experience --- */
        #immersive-overlay {
            position: fixed;
            inset: 0;
            background: rgba(24, 14, 14, 0.98);
            z-index: 2000;
            display: none;
            opacity: 0;
            transition: opacity 0.8s ease;
            padding: 8%;
        }

        #immersive-overlay {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

#immersive-overlay::-webkit-scrollbar {
    display: none;
}

        /* Custom Scroll Logic */
        .scroll-container {
            height: 100vh;
            overflow-y: scroll;
            scroll-snap-type: y proximity;
        }
        .scroll-space {
            scroll-snap-align: start;
        }

        /* --- Animations --- */
        @keyframes float-drift {
            0% { transform: translate(0, 0); }
            50% { transform: translate(15px, -20px); }
            100% { transform: translate(0, 0); }
        }

        .floating { animation: float-drift 8s ease-in-out infinite; }

        .data-tag {
            background: var(--olive);
            color: white;
            padding: 4px 10px;
            font-size: 10px;
            font-weight: 900;
            text-transform: uppercase;
            position: absolute;
            top: -10px;
            right: -10px;
        }
