        /* teko-300 - latin */
        @font-face {
            font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
            font-family: 'Teko';
            font-style: normal;
            font-weight: 300;
            src: url('../fonts/teko-v23-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        }

        /* teko-regular - latin */
        @font-face {
            font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
            font-family: 'Teko';
            font-style: normal;
            font-weight: 400;
            src: url('../fonts/teko-v23-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        }

        /* teko-500 - latin */
        @font-face {
            font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
            font-family: 'Teko';
            font-style: normal;
            font-weight: 500;
            src: url('../fonts/teko-v23-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        }

        /* teko-600 - latin */
        @font-face {
            font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
            font-family: 'Teko';
            font-style: normal;
            font-weight: 600;
            src: url('../fonts/teko-v23-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        }

        /* teko-700 - latin */
        @font-face {
            font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
            font-family: 'Teko';
            font-style: normal;
            font-weight: 700;
            src: url('../fonts/teko-v23-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        }

        /* atkinson-hyperlegible-mono-regular - latin */
        @font-face {
            font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
            font-family: 'Atkinson Hyperlegible Mono';
            font-style: normal;
            font-weight: 400;
            src: url('../fonts/atkinson-hyperlegible-mono-v8-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        }

        /* atkinson-hyperlegible-mono-700 - latin */
        @font-face {
            font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
            font-family: 'Atkinson Hyperlegible Mono';
            font-style: normal;
            font-weight: 700;
            src: url('../fonts/atkinson-hyperlegible-mono-v8-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }
        
        html {
            width: 100%;
            height: 100%;
            height: 100vh;
            height: 100dvh; /* Dynamic viewport height for mobile browsers */
            overflow: hidden;
            margin: 0;
            padding: 0;
            position: fixed; /* Prevent scrolling */
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overscroll-behavior: none; /* Prevent pull-to-refresh and overscroll */
            -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
            touch-action: none; /* Prevent default touch behaviors */
        }
        
        body {
            width: 100%;
            height: 100%;
            height: 100vh;
            height: 100dvh; /* Dynamic viewport height for mobile browsers */
            overflow: hidden;
            background: #000;
            font-family: 'Atkinson Hyperlegible Mono', monospace;
            margin: 0;
            padding: 0;
            position: fixed; /* Prevent scrolling */
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overscroll-behavior: none; /* Prevent pull-to-refresh and overscroll */
            -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
            touch-action: none; /* Prevent default touch behaviors */
        }
        
        /* Handle address bar visibility */
        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            min-height: 100dvh;
        }
        
        body.address-bar-hidden {
            height: 100vh;
            height: 100dvh;
        }
        
        #webgl-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            height: 100vh;
            height: 100dvh; /* Dynamic viewport height for mobile browsers */
            z-index: 0;
            cursor: none;
            touch-action: none; /* Prevent default touch behaviors on canvas */
            -webkit-touch-callout: none; /* Disable iOS callout */
            -webkit-user-select: none; /* Disable text selection */
            user-select: none;
        }
        
        /* Adjust canvas when address bar is hidden */
        body.address-bar-hidden #webgl-canvas {
            height: 100vh;
            height: 100dvh;
        }
        
        /* Safe area insets for devices with notches - ensure content doesn't get cut off */
        @supports (padding: env(safe-area-inset-top)) {
            /* For full-screen canvas, we want it to extend into safe areas but ensure content is visible */
            /* Canvas extends full screen, safe area handled by content positioning */
            
            /* Ensure interactive elements respect safe areas */
            .logo-container,
            .story-container,
            .section-buttons,
            .hint,
            .audio-toggle,
            #audioToggle {
                padding-bottom: env(safe-area-inset-bottom);
            }
        }
        
        /* Custom cursor */
        .cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            border: 1px solid rgba(0, 255, 128, 0.5);
            border-radius: 50%;
            pointer-events: none;
            z-index: 1000;
            transition: transform 0.1s ease, border-color 0.3s ease;
            transform: translate(-50%, -50%);
        }
        
        .cursor.active {
            transform: translate(-50%, -50%) scale(2);
            border-color: rgba(0, 255, 128, 0.8);
            background: rgba(0, 255, 128, 0.1);
        }
        
        .cursor-dot {
            position: fixed;
            width: 4px;
            height: 4px;
            background: rgba(0, 255, 128, 0.8);
            border-radius: 50%;
            pointer-events: none;
            z-index: 1001;
            transform: translate(-50%, -50%);
        }
        
        /* Center logo - ghost visible */
        .logo-container {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 5;
            text-align: center;
            pointer-events: none;
            opacity: var(--logo-rest-opacity, 0);
            transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: transform;
            transform-style: preserve-3d;
            width: 90%;
            max-width: 600px;
        }
        
        .logo-container.revealed {
            opacity: 1;
        }
        
        .logo {
            font-family: 'Teko', sans-serif;
            font-size: clamp(10rem, 20vw, 14rem);
            font-weight: 400;
            letter-spacing: 0.1em;
            line-height: 1;
            user-select: none;
            /* Visibility is handled in HTML but keep it as a spacer */
            margin-bottom: 0.5rem;
        }
        
        .tagline {
            font-size: clamp(0.85rem, 2.5vw, 1rem);
            font-weight: 400;
            font-family: 'Atkinson Hyperlegible Mono', monospace;
            letter-spacing: 0.5em;
            color: rgba(0, 255, 128, 0.9);
            text-transform: uppercase;
            opacity: 0;
            transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .tagline.visible {
            opacity: 1;
        }
        
        .email {
            font-size: clamp(1rem, 2vw, 1.2rem);
            font-weight: 300;
            margin-top: 0.5rem;
            opacity: 0;
            transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            font-family: 'Atkinson Hyperlegible Mono', monospace;
        }
        
        .email.visible {
            opacity: 1;
        }
        
        .email a {
            color: rgba(0, 255, 128, 0.7);            text-decoration: none;
            transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .email a:hover {
            color: rgba(0, 255, 128, 1);
        }
        
        /* Dim logo, tagline, and email when CRT is shown - more aggressive dimming */
        body.crt-visible .logo-container.revealed {
            opacity: 0.15;
            transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        body.crt-visible .logo-container.revealed .logo::before,
        body.crt-visible .logo-container.revealed .logo::after {
            opacity: 0.1;
        }
        
        body.crt-visible .logo-container.revealed .tagline.visible {
            opacity: 0.15;
        }
        
        body.crt-visible .logo-container.revealed .email.visible {
            opacity: 0.15;
        }
        
        /* Story Container - top left */
        .story-container {
            position: fixed;
            top: 5%;
            left: 5%;
            z-index: 10;
            width: 90%;
            max-width: 1400px;
            text-align: left;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        @media (min-width: 769px) {
            .story-container {
                width: min(98vw, 1400px);
                max-width: 1400px;
                min-width: 800px;
            }
        }
        
        @media (max-width: 768px) {
            .story-container {
                left: 0;
                width: 100%;
                top: 0%;
            }
        }
        
        .story-container.visible {
            opacity: 1;
            pointer-events: auto;
        }
                
        /* CRT Canvas Wrapper - provides background with soft edges */
        .crt-canvas-wrapper {
            position: relative;
            width: 100%;
            max-width: 1400px;
            margin-top: 1rem;
        }
        
        /* CRT Text Canvas - adapts to content height, max width constraint */
        #crt-text-canvas {
            position: relative;
            top: 0;
            left: 0;
            width: 100%;
            max-width: 1400px;
            height: auto;
            pointer-events: none;
            display: block;
            background: transparent;
        }
        
        @media (max-width: 768px) {
            .crt-canvas-wrapper {
                width: 100vw !important;
                max-width: 100vw !important;
                margin-top: 0.25rem;
            }
            
            #crt-text-canvas {
                width: 100vw !important;
                max-width: 100vw !important;
            }
            
            .story-header {
                margin-bottom: 0.5rem;
            }
        }
        
        /* Section Buttons - appear just above the hint circle, unfold when holding */
        .section-buttons {
            position: fixed;
            bottom: calc(5% + 75px);
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .section-buttons.visible {
            opacity: 1;
            pointer-events: auto;
        }
        
        .section-buttons.unfolded {
            gap: 1.5rem;
        }
        
        /* Connecting lines between circles when unfolded - edge to edge */
        .section-buttons.unfolded::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            width: 25px;
            height: 1px;
            background: rgba(0, 255, 128, 0.7);
            transform: translate(calc(-50% - 37.5px), -50%);
            z-index: -1;
        }
        
        .section-buttons.unfolded::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            width: 25px;
            height: 1px;
            background: rgba(0, 255, 128, 0.7);
            transform: translate(calc(-50% + 37.5px), -50%);
            z-index: -1;
        }
        
        .section-button {
            background: transparent;
            border: 1px solid rgba(0, 255, 128, 0.7);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            padding: 0;
            cursor: pointer;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                        border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            transform-origin: center center;
            overflow: visible;
        }
        
        /* Hover ripple effect */
        .section-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 50px;
            height: 50px;
            border: 1px solid rgba(0, 255, 128, 0.7);
            border-radius: 50%;
            transform: translate(-50%, -50%) scale(1);
            opacity: 0;
            pointer-events: none;
            transition: none;
        }
        
        .section-button:hover::before,
        .section-button.hovered::before {
            animation: buttonRipple 1.5s ease-out forwards;
        }
        
        @keyframes buttonRipple {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.7;
            }
            100% {
                transform: translate(-50%, -50%) scale(5);
                opacity: 0;
            }
        }
        
        .section-buttons.unfolded .section-button:nth-child(1) {
            transform: translateX(calc(-50% - 75px));
        }
        
        .section-buttons.unfolded .section-button:nth-child(2) {
            transform: translateX(-50%);
        }
        
        .section-buttons.unfolded .section-button:nth-child(3) {
            transform: translateX(calc(-50% + 75px));
        }
        
        .section-button svg {
            width: 24px;
            height: 24px;
            fill: none;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .section-button:hover,
        .section-button.hovered {
            border-color: rgba(0, 255, 128, 1);
        }
        
        .section-buttons.unfolded .section-button:nth-child(1):hover,
        .section-buttons.unfolded .section-button:nth-child(1).hovered {
            transform: translateX(calc(-50% - 75px)) scale(1.1);
        }
        
        .section-buttons.unfolded .section-button:nth-child(2):hover,
        .section-buttons.unfolded .section-button:nth-child(2).hovered {
            transform: translateX(-50%) scale(1.1);
        }
        
        .section-buttons.unfolded .section-button:nth-child(3):hover,
        .section-buttons.unfolded .section-button:nth-child(3).hovered {
            transform: translateX(calc(-50% + 75px)) scale(1.1);
        }
        
        /* Touch/click hint - always visible in base state */
        .hint {
            position: fixed;
            bottom: 10%;
            left: 50%;
            transform: translateX(-50%);
            z-index: 99;
            text-align: center;
            opacity: 1;
            transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            pointer-events: none;
            width: max-content;
            max-width: 95vw;
        }
        
        .hint.hidden {
            opacity: 0;
        }
        
        .hint-ring {
            width: 50px;
            height: 50px;
            border: 1px solid rgba(0, 255, 128, 0.7);
            border-radius: 50%;
            margin: 0 auto 1rem;
            position: relative;
            animation: hintPulse 2.5s ease-in-out infinite;
        }
        
        .hint-ring::before {
            content: '10101';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 0.5rem;
            color: rgba(0, 255, 128, 0.9);
            letter-spacing: 0.05em;
        }
        
        .hint span {
            display: block;
            font-size: clamp(0.85rem, 2.5vw, 1rem);
            font-weight: 400;
            font-family: 'Atkinson Hyperlegible Mono', monospace;
            letter-spacing: 0.5em;
            color: rgba(0, 255, 128, 0.688);
            text-transform: uppercase;
            white-space: nowrap;
        }
        
        @keyframes hintPulse {
            0%, 100% { 
                transform: scale(1);
                opacity: 0.3;
            }
            50% { 
                transform: scale(1.15);
                opacity: 0.6;
            }
        }
        
        /* Binary trail effect */
        .binary-trail {
            position: fixed;
            font-size: 1.2rem;
            color: rgba(0, 255, 128, 0.7);
            pointer-events: none;
            z-index: 99;
            /* font-family: 'Atkinson Hyperlegible Mono', monospace; */
            animation: trailFade 1.2s ease-out forwards;
        }
        
        @keyframes trailFade {
            0% {
                opacity: 0.9;
                transform: translateY(0) scale(1);
            }
            50% {
                opacity: 0.8;
                transform: translateY(-10px) scale(0.9);
            }
            100% {
                opacity: 0;
                transform: translateY(-25px) scale(0.6);
            }
        }
        
        /* Ripple on reveal */
        .ripple {
            position: fixed;
            border-radius: 50%;
            border: 1px solid rgba(0, 255, 128, 0.6);
            pointer-events: none;
            z-index: 100;
            animation: rippleOut 1.2s ease-out forwards;
        }
        
        @keyframes rippleOut {
            0% {
                width: 0;
                height: 0;
                opacity: 0.8;
            }
            100% {
                width: 300px;
                height: 300px;
                opacity: 0;
            }
        }
        
        /* Scanlines */
        .scanlines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 50;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 0, 0, 0.02) 2px,
                rgba(0, 0, 0, 0.02) 4px
            );
            opacity: 0.5;
        }
        
        
        /* Mobile responsive */
        @media (max-width: 768px) {
            .cursor, .cursor-dot {
                display: none;
            }
            
            #webgl-canvas {
                cursor: default;
            }
            
            
            .section-buttons {
                bottom: 22%;
            }
        }
        
        /* @media (max-width: 480px) {
            .story-container {
                top: 10%;
                width: 90%;
            }
            
            .story-header {
                font-size: clamp(0.65rem, 3.5vw, 0.8rem);
                margin-bottom: 0.4rem;
            }
            
            .story-content {
                font-size: clamp(0.75rem, 4vw, 0.9rem);
                padding: 0.4rem 0.5rem;
                min-height: 2em;
            }
            
            .logo {
                font-size: clamp(2.5rem, 18vw, 5rem);
            }
            
            .tagline {
                font-size: 0.6rem;
                letter-spacing: 0.3em;
            }
            
            .email {
                font-size: clamp(0.55rem, 3vw, 0.7rem);
            }
        } */
        
        /* Adjust for very small screens */
        @media (max-height: 500px) {
            .story-container {
                top: 8%;
            }
        }
        
        /* Audio Toggle Button */
        .audio-toggle,
        #audioToggle {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 10001;
            cursor: pointer;
            color: rgba(0, 255, 128, 0.7);
            background: transparent;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                        color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                        opacity 0.3s ease;
            overflow: visible;
            pointer-events: auto;
            opacity: 0;
        }
        
        .audio-toggle.loaded,
        #audioToggle.loaded {
            opacity: 1;
        }

        /* Animated ring when muted - like hint ring */
        .audio-toggle.muted::before,
        #audioToggle.muted::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 50px;
            height: 50px;
            border: 1px solid rgba(0, 255, 128, 0.7);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            animation: audioRingPulse 2.5s ease-in-out infinite;
        }
        
        @keyframes audioRingPulse {
            0%, 100% { 
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.3;
            }
            50% { 
                transform: translate(-50%, -50%) scale(1.15);
                opacity: 0.6;
            }
        }

        /* Hover ripple effect - same as section buttons */
        .audio-toggle::after,
        #audioToggle::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 50px;
            height: 50px;
            border: 1px solid rgba(0, 255, 128, 0.7);
            border-radius: 50%;
            transform: translate(-50%, -50%) scale(1);
            opacity: 0;
            pointer-events: none;
            transition: none;
        }

        .audio-toggle:hover::after,
        #audioToggle:hover::after {
            animation: buttonRipple 1.5s ease-out forwards;
        }

        .audio-toggle:hover,
        #audioToggle:hover {
            color: rgba(0, 255, 128, 1);
            transform: scale(1.1);
        }

        .audio-toggle svg,
        #audioToggle svg {
            width: 24px;
            height: 24px;
            fill: none;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @media (max-width: 768px) {
            .audio-toggle,
            #audioToggle {
                top: 15px;
                right: 15px;
                width: 50px;
                height: 50px;
            }
            
            .audio-toggle.muted::before,
            #audioToggle.muted::before,
            .audio-toggle::after,
            #audioToggle::after {
                width: 50px;
                height: 50px;
            }
        }
        
        /* Logo mask canvas - hidden but used for WebGL */
        #logo-mask-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            opacity: 0;
        }
        
        /* Page Loader - Old School Video Game Style */
        .page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            height: 100vh;
            height: 100dvh;
            background: #000;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: opacity 0.3s ease-out;
            pointer-events: none;
            image-rendering: pixelated;
            image-rendering: -moz-crisp-edges;
            image-rendering: crisp-edges;
        }
        
        .page-loader.loaded {
            opacity: 0;
            pointer-events: none;
        }
        
        .loader-scanlines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 255, 128, 0.03) 2px,
                rgba(0, 255, 128, 0.03) 4px
            );
            pointer-events: none;
            animation: scanlineMove 0.1s linear infinite;
        }
        
        @keyframes scanlineMove {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(4px);
            }
        }
        
        .loader-content {
            text-align: center;
            width: 90%;
            max-width: 500px;
            position: relative;
            z-index: 1;
        }
        
        .loader-game-title {
            font-family: 'Teko', sans-serif;
            font-size: clamp(4rem, 12vw, 8rem);
            font-weight: 700;
            letter-spacing: 0.15em;
            line-height: 1;
            color: #00ff80;
            margin-bottom: 2rem;
            text-shadow: 
                0 0 10px #00ff80,
                0 0 20px #00ff80,
                0 0 30px #00ff80,
                3px 3px 0 #000,
                4px 4px 0 #00ff80;
            user-select: none;
            opacity: 0;
            transition: opacity 0.3s ease;
            animation: gameTitleFlicker 0.15s infinite;
            transform: scale(1);
        }
        
        .loader-game-title.font-loaded {
            opacity: 1;
        }
        
        @keyframes gameTitleFlicker {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.95;
            }
        }
        
        .loader-binary {
            font-family: 'Atkinson Hyperlegible Mono', monospace;
            font-size: clamp(2rem, 6vw, 4rem);
            font-weight: 700;
            color: #00ff80;
            margin-bottom: 1.5rem;
            letter-spacing: 0.3em;
            text-shadow: 
                0 0 10px #00ff80,
                0 0 20px #00ff80,
                3px 3px 0 #000;
            user-select: none;
            text-align: center;
            font-variant-numeric: tabular-nums;
            perspective: 200px;
            display: inline-block;
            min-width: 5ch;
        }
        
        .loader-binary.flipping {
            animation: binaryFlip 0.8s ease-in-out;
        }
        
        @keyframes binaryFlip {
            0% {
                transform: rotateY(0deg) scaleX(1);
                opacity: 1;
            }
            50% {
                transform: rotateY(90deg) scaleX(0.1);
                opacity: 0.3;
            }
            100% {
                transform: rotateY(0deg) scaleX(1);
                opacity: 1;
            }
        }
        
        .loader-progress-container {
            margin-bottom: 1.5rem;
        }
        
        .loader-progress-frame {
            width: 100%;
            height: 20px;
            border: 3px solid #00ff80;
            background: #000;
            position: relative;
            box-shadow: 
                inset 0 0 10px rgba(0, 255, 128, 0.3),
                0 0 10px rgba(0, 255, 128, 0.5);
            margin-bottom: 0.5rem;
        }
        
        .loader-progress-bar {
            height: 100%;
            width: 0%;
            background: repeating-linear-gradient(
                90deg,
                #00ff80 0px,
                #00ff80 8px,
                #00cc66 8px,
                #00cc66 16px
            );
            transition: width 0.1s linear;
            position: relative;
            box-shadow: 
                inset 0 0 5px rgba(0, 255, 128, 0.8),
                0 0 10px rgba(0, 255, 128, 0.6);
        }
        
        .loader-progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 4px;
            height: 100%;
            background: #00ff80;
            box-shadow: 0 0 10px #00ff80;
            animation: progressEndPulse 0.5s ease-in-out infinite;
        }
        
        @keyframes progressEndPulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.6;
            }
        }
        
        .loader-percent {
            font-family: 'Atkinson Hyperlegible Mono', monospace;
            font-size: clamp(0.8rem, 1.8vw, 1rem);
            color: #00ff80;
            text-align: right;
            letter-spacing: 0.1em;
            text-shadow: 0 0 5px #00ff80;
        }
        
        .loader-footer {
            font-family: 'Atkinson Hyperlegible Mono', monospace;
            font-size: clamp(0.7rem, 1.5vw, 0.9rem);
            color: #00ff80;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            opacity: 0.7;
            animation: footerBlink 1.5s ease-in-out infinite;
            text-shadow: 0 0 5px #00ff80;
        }
        
        @keyframes footerBlink {
            0%, 100% {
                opacity: 0.7;
            }
            50% {
                opacity: 1;
            }
        }