        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #85fff1;
            color: #2D2922;
            overflow: hidden; /* Lock the global body window to prevent double scrollbars */
            height: 100vh;
            -webkit-font-xloothing: antialiased;
        }

        /* Subtle Paper Grain Overlay Texture */
        .paper-grain-texture::before {
            content: "";
            position: fixed;
            top: 0; left: 0; width: 100vw; height: 100vh;
            opacity: 0.03;
            pointer-events: none;
            z-index: 999;
            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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        /* Master Multipage Canvas Rail */
        .master-viewport-window {
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            position: relative;
        }

        .page-view-container {
            display: flex;
            width: 600vw; /* 6 distinct full-width layout sections */
            height: 100%;
            transition: transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
            will-change: transform;
        }

        /* Independent Scroll Container Architecture per Page */
        .individual-page {
            width: 100vw;
            height: 100vh;
            flex-shrink: 0;
            overflow-y: auto; /* Enable native independent vertical deep scrolling */
            overflow-x: hidden;
            -webkit-overflow-scrolling: touch;
            padding-top: 110px; /* Secure space for sticky global menu bar */
            opacity: 0.15;
            transform: scale(0.985) translateY(10px);
            transition: opacity 0.7s ease, transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
            /* Hide scrollbar defaults across browsers while retaining native functionality */
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        .individual-page::-webkit-scrollbar {
            display: none;
        }

        .individual-page.active-page-state {
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        /* Sticky Navigation States */
        .sticky-navigation-blur {
            background-color: rgba(250, 243, 225, 0.92);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid rgba(45, 41, 34, 0.06);
        }

        /* Underline Typography Micro-Animations */
        .nav-link-underline {
            position: relative;
        }
        .nav-link-underline::after {
            content: '';
            position: absolute;
            width: 100%;
            transform: scaleX(0);
            height: 1px;
            bottom: -4px;
            left: 0;
            background-color: #FF5A5A;
            transform-origin: bottom center;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .nav-link-underline.active-nav::after,
        .nav-link-underline:hover::after {
            transform: scaleX(1);
        }

        /* Structural Editorial Motions */
        @keyframes floatDriftLoop {
            0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
            50% { transform: translateY(-15px) rotate(1.5deg) scale(1.02); }
        }
        .animate-card-drift {
            animation: floatDriftLoop 9s ease-in-out infinite;
        }

        @keyframes subtlePulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.02); opacity: 0.95; }
        }
        .animate-soft-pulse {
            animation: subtlePulse 3.5s infinite ease-in-out;
        }

        /* Bottom to Top Reveals */
        .editorial-reveal-entry {
            opacity: 0;
            transform: translateY(30px);
            animation: revealAnimation 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }
        @keyframes revealAnimation {
            to { opacity: 1; transform: translateY(0); }
        }
    </style>
