        :root {
            --deep-ink: #2A2F4F;
            --soft-violet: #917FB3;
            --light-lavender: #E5BEEC;
            --blush-pink: #FDE2F3;
        }

        * {
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: 'Victor Mono', monospace;
            background-color: var(--deep-ink);
            color: var(--deep-ink);
            overflow-x: hidden;
            scroll-behavior: smooth;
            margin: 0;
        }

        /* Continuous Flow Layout */
        .page-view {
            display: none;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .page-view.active {
            display: block;
            opacity: 1;
        }

        /* Dot Navigation */
        .dot-nav {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .dot-item {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            cursor: pointer;
            group: hover;
        }

        .dot-circle {
            width: 10px;
            height: 10px;
            border: 1px solid rgba(255,255,255,0.4);
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: transparent;
        }

        .dot-item:hover .dot-circle {
            background: white;
            transform: scale(1.8);
            border-color: white;
        }

        .dot-label {
            color: white;
            font-size: 10px;
            margin-right: 15px;
            opacity: 0;
            transform: translateX(10px);
            transition: 0.3s;
            text-transform: uppercase;
            letter-spacing: 2px;
            pointer-events: none;
        }

        .dot-item:hover .dot-label { opacity: 1; transform: translateX(0); }

        /* Expanding Market Grid */
        .market-grid {
            display: flex;
            gap: 20px;
            transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
            height: 600px;
            width: 100%;
        }

        .market-card {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
            background: white;
            cursor: crosshair;
        }

        .market-card:hover { flex: 3; }

        .market-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.2s ease;
            filter: grayscale(20%);
        }

        .market-card:hover img { transform: scale(1.05); filter: grayscale(0%); }

        .market-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(42, 47, 79, 0.9), transparent 60%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 40px;
            opacity: 0;
            transition: opacity 0.4s 0.2s;
        }

        .market-card:hover .market-overlay { opacity: 1; }

        /* Infinite Loop Strip */
        .loop-track {
            display: flex;
            white-space: nowrap;
            animation: infiniteScroll 40s linear infinite;
        }

        @keyframes infiniteScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Glassmorphism stack */
        .glass-stack {
            position: relative;
            width: 350px;
            height: 450px;
            margin: auto;
        }

        .glass-layer {
            position: absolute;
            inset: 0;
            border-radius: 24px;
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
        }

        .glass-stack:hover .layer-1 { transform: translate(-100px, -40px) rotate(-12deg); }
        .glass-stack:hover .layer-3 { transform: translate(100px, 40px) rotate(12deg); }

        /* Animations */
        @keyframes pulseBg {
            0% { transform: scale(1); opacity: 0.3; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        .pulse-circle {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: var(--soft-violet);
            animation: pulseBg 4s infinite;
        }

        /* Floating Bubbles */
        .bubble {
            position: absolute;
            padding: 15px 25px;
            background: white;
            border-radius: 40px;
            font-size: 13px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.5s ease;
            cursor: pointer;
        }

        .bubble:hover {
            transform: scale(1.2);
            z-index: 50;
            background: var(--deep-ink);
            color: white;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--deep-ink); }
        ::-webkit-scrollbar-thumb { background: var(--soft-violet); border-radius: 10px; }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s ease-out;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
