        body {
            font-family: 'JetBrains Mono', monospace;
            background-color: #FFFFFF;
            color: #2D2D2D;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Spacious body elements and reveals */
        .reveal-element {
            opacity: 0;
            transform: translateY(30px);
            filter: blur(4px);
            transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-element.active {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }

        /* Sticky blurred header styling */
        header {
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, border-color 0.4s ease;
        }
        header.header-hidden {
            transform: translateY(-100%);
        }

        /* Active Navigation Underlines */
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 100%;
            transform: scaleX(0);
            height: 2px;
            bottom: -6px;
            left: 0;
            background-color: #FFB22C;
            transform-origin: bottom center;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .nav-link.active-nav::after {
            transform: scaleX(1);
        }

        /* Page View Switch Transitions */
        .page-view {
            transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
        }
        .page-view.hidden-view {
            display: none;
            opacity: 0;
            transform: translateY(10px);
        }
        .page-view.active-view {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        /* Soft gold glow hover states */
        .glow-hover:hover {
            box-shadow: 0 0 25px rgba(255, 178, 44, 0.25);
            border-color: #FFB22C;
        }

        /* Horizontal timeline progress lines */
        .progress-line-path {
            stroke-dasharray: 8 4;
            animation: lineDash 2s infinite linear;
        }
        @keyframes lineDash {
            to {
                stroke-dashoffset: -40;
            }
        }

        /* Custom scrollbar hiding */
        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Slider range customization */
        input[type="range"] {
            -webkit-appearance: none;
            width: 100%;
            background: transparent;
        }
        input[type="range"]:focus {
            outline: none;
        }
        input[type="range"]::-webkit-slider-runnable-track {
            width: 100%;
            height: 2px;
            cursor: pointer;
            background: #EAEAEA;
            border-radius: 1px;
        }
        input[type="range"]::-webkit-slider-thumb {
            height: 14px;
            width: 14px;
            border-radius: 50%;
            background: #FFB22C;
            cursor: pointer;
            -webkit-appearance: none;
            margin-top: -6px;
            transition: transform 0.1s;
        }
        input[type="range"]::-webkit-slider-thumb:hover {
            transform: scale(1.2);
        }
