 
 
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Outfit", sans-serif;
        }
        h3 {
        font-weight: 300;
        font-size: 12;
        padding-bottom: 1rem;
        color: var(--muted);
        }
        
        .o-container {
            max-width: 40rem;
        }

        :root {
            --bg: #0a0a0a;
            --text: #f0f0f0;
            --accent: #00ff88;
            --muted: #666;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
        }

        /* Scroll container */
        .scroll-container {
            position: relative;
            height: 250vh; /* Reduced for faster frame changes */
        }

        /* Canvas container - stays fixed */
        .canvas-wrapper {
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #0a0a0a 100%);
        }

        canvas {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
            pointer-events: none;
        }

        /* Loading state */
        .loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 10;
        }

        .loading-bar {
            width: 240px;
            height: 3px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
            margin: 20px auto 0;
        }

        .loading-progress {
            height: 100%;
            background: var(--accent);
            width: 0%;
            transition: width 0.3s ease;
            box-shadow: 0 0 20px var(--accent);
        }

        .loading-text {
            font-size: 14px;
            color: var(--muted);
            margin-top: 12px;
            font-weight: 300;
            letter-spacing: 1px;
        }

        /* Content overlays */
        .content-section {
            position: absolute;
            width: 100%;
            padding: 0 40px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.6s ease;
        }

        .content-section.active {
            opacity: 1;
            pointer-events: auto;
        }

        .content-section h2 {
            font-size: 5rem;
            font-weight: 400;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .btn {
            z-index: 1;
            position: relative;
            padding: 1rem;
            background: none;
            color: var(--text);
            font-size: 1.5rem;
            border-width: 1px;
            border-style: solid;
            text-decoration: none;
            border-image: linear-gradient(109deg,rgba(250, 0, 8, 1) 0%, rgba(255, 255, 255, 0.5) 39%) 1;
            font-weight: 100 !important;
        }
        .btn::before {
            position: absolute;
            content: "";
            background: linear-gradient(109deg,rgba(250, 0, 8, 0.15) 0%, rgba(255, 255, 255, 0) 39%);
            filter: blur(8px);
            z-index: -1;
            inset: -8px;
            position: absolute;
        }

        .content-section p {
            font-size: 18px;
            line-height: 1.6;
            color: var(--muted);
            font-weight: 300;
        }

        .content-section__description {
            padding: 2rem 0rem;
        }

        /* Position content at different scroll points */
        .content-0 { top: 70%; transform: translateY(-50%); margin: auto 0; text-align: center;}
        .content-1 { bottom: 25%; right: 0%; margin: 0 5rem; text-align: right; }
        .content-2 { top: 50%; transform: translateY(-50%); text-align: left; margin: 0 5rem; }
        .content-3 { bottom: 10%; margin: 5rem; right: 0%; text-align: right; }
        .content-4 { top: 50%; transform: translateY(-50%); margin: 5rem; text-align: left; }

        /* Debug info */
        .debug {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.8);
            padding: 16px 20px;
            border-radius: 12px;
            font-size: 13px;
            font-family: 'Courier New', monospace;
            color: var(--accent);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 255, 136, 0.2);
            z-index: 100;
        }

        .debug-toggle {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid rgba(0, 255, 136, 0.2);
            color: var(--accent);
            padding: 8px 16px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 12px;
            font-family: 'Outfit', sans-serif;
            z-index: 101;
        }

        .debug-toggle:hover {
            background: rgba(0, 255, 136, 0.1);
        }

        /* Instructions */
        .instructions {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            z-index: 10;
            animation: bounce 2s ease-in-out infinite;
        }

        .instructions p {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 8px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 300;
        }

        .scroll-indicator {
            width: 24px;
            height: 40px;
            border: 2px solid var(--accent);
            border-radius: 20px;
            margin: 0 auto;
            position: relative;
        }

        .scroll-indicator::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 8px;
            background: var(--accent);
            border-radius: 4px;
            animation: scroll-dot 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-10px); }
        }

        @keyframes scroll-dot {
            0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
            50% { transform: translateX(-50%) translateY(16px); opacity: 0.3; }
        }

        /* Footer */
        #site-footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #000;
            opacity: 0;
            pointer-events: none;
            z-index: 50;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 2.5rem;
        }

        .footer-copy {
            font-size: 13px;
            color: var(--muted);
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        .footer-nav {
            display: flex;
            gap: 2rem;
        }

        .footer-nav a {
            font-size: 13px;
            color: var(--muted);
            text-decoration: none;
            font-weight: 300;
            letter-spacing: 0.5px;
            transition: color 0.2s ease;
        }

        .footer-nav a:hover {
            color: var(--text);
        }

        @media (max-width: 768px) {
            .content-section {
                padding: 0 20px;
            }
            
            .debug {
                font-size: 11px;
                padding: 12px 16px;
            }
        }