        :root {
            --osd-color: rgba(255, 255, 255, 0.9);
            --osd-glow: rgba(255, 255, 255, 0.4);
            --glitch-red: #ff003c;
            --glitch-blue: #00e1ff;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            user-select: none;
        }

        html {
            width: 100%;
            min-height: 100%;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            background-color: #000;
        }

        body {
            width: 100%;
            min-height: 100%;
            overflow-x: hidden;
            scrollbar-width: none;
            -ms-overflow-style: none;
            background-color: #000;
            font-family: 'Share Tech Mono', monospace;
            color: var(--osd-color);
            cursor: crosshair;
        }

        html::-webkit-scrollbar,
        body::-webkit-scrollbar {
            display: none;
            width: 0;
            height: 0;
        }

        .hero-section {
            position: relative;
            min-height: 100vh;
            min-height: 100svh;
            overflow: hidden;
            background-color: #050505;
        }

        .broadcast-section {
            position: relative;
            min-height: 100vh;
            min-height: 100svh;
            display: grid;
            place-items: center;
            overflow: hidden;
            padding: clamp(48px, 7vw, 110px) clamp(24px, 6vw, 96px);
            background-color: #000;
            isolation: isolate;
        }

        .broadcast-section::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -2;
            pointer-events: none;
            background:
                radial-gradient(circle at 78% 48%, rgba(255,255,255,0.035), transparent 34%),
                repeating-linear-gradient(0deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 4px);
        }

        .broadcast-section::after {
            content: 'CH 02 // UNITED STATES LIVE RELAY';
            position: absolute;
            right: clamp(20px, 3vw, 48px);
            bottom: 18px;
            color: rgba(255,255,255,0.22);
            font-size: 0.72rem;
            letter-spacing: 0.18em;
            pointer-events: none;
        }

        .broadcast-console {
            width: min(1380px, 100%);
            display: grid;
            grid-template-columns: minmax(220px, 0.3fr) minmax(0, 1fr);
            gap: clamp(32px, 6vw, 96px);
            align-items: center;
        }

        .channel-browser {
            position: relative;
            z-index: 4;
            text-shadow: 0 0 5px var(--osd-glow);
        }

        .channel-browser__eyebrow {
            margin-bottom: 28px;
            color: rgba(255,255,255,0.42);
            font-size: 0.78rem;
            letter-spacing: 0.22em;
            line-height: 1.6;
        }

        .channel-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .channel-button {
            appearance: none;
            position: relative;
            width: 100%;
            border: 0;
            padding: 4px 8px 4px 22px;
            background: transparent;
            color: rgba(255,255,255,0.55);
            font: inherit;
            font-size: clamp(0.86rem, 1.08vw, 1.08rem);
            letter-spacing: 0.08em;
            line-height: 1.35;
            text-align: left;
            text-transform: uppercase;
            cursor: pointer;
            transition: color 90ms linear, transform 90ms linear, text-shadow 90ms linear;
        }

        .channel-button::before {
            content: '>';
            position: absolute;
            left: 0;
            opacity: 0;
        }

        .channel-button:hover,
        .channel-button:focus-visible,
        .channel-button[aria-pressed='true'] {
            color: #fff;
            text-shadow: 2px 0 var(--glitch-red), -2px 0 var(--glitch-blue);
            transform: skewX(-8deg);
            outline: none;
        }

        .channel-button:hover::before,
        .channel-button:focus-visible::before,
        .channel-button[aria-pressed='true']::before {
            opacity: 1;
            animation: blink 0.35s step-end infinite;
        }

        .channel-button[aria-pressed='true']::after {
            content: ' LIVE';
            display: inline-block;
            margin-left: 10px;
            padding: 2px 5px;
            border: 1px solid rgba(255, 0, 60, 0.82);
            background: rgba(255, 0, 60, 0.2);
            color: #fff;
            font-size: 0.62em;
            font-weight: 700;
            letter-spacing: 0.12em;
            line-height: 1;
            text-shadow: 0 0 7px rgba(255, 0, 60, 0.95);
            vertical-align: middle;
        }

        .channel-browser__hint {
            margin-top: 32px;
            color: rgba(255,255,255,0.28);
            font-size: 0.7rem;
            letter-spacing: 0.12em;
            line-height: 1.6;
        }

        .signal-links {
            margin-top: 26px;
            padding-top: 18px;
            border-top: 1px solid rgba(255,255,255,0.12);
        }

        .signal-links__label {
            margin-bottom: 10px;
            color: rgba(255,255,255,0.3);
            font-size: 0.62rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }

        .signal-links__grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 7px;
        }

        .signal-link {
            position: relative;
            min-height: 38px;
            display: flex;
            align-items: center;
            gap: 9px;
            overflow: hidden;
            padding: 8px 10px;
            border: 1px solid rgba(255,255,255,0.16);
            color: rgba(255,255,255,0.62);
            background: rgba(255,255,255,0.025);
            font-size: 0.68rem;
            letter-spacing: 0.1em;
            text-decoration: none;
            text-transform: uppercase;
            clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
            transition: color 100ms linear, border-color 100ms linear, background 100ms linear, transform 100ms linear;
        }

        .signal-link small {
            min-width: 0;
            overflow: hidden;
            color: rgba(255,255,255,0.36);
            font-size: 0.58rem;
            letter-spacing: 0.02em;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .signal-link--disabled,
        .signal-link--value {
            cursor: default;
        }

        .signal-link--disabled {
            grid-column: 1 / -1;
            justify-content: center;
            color: rgba(255,255,255,0.3);
        }

        .signal-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--glitch-red), var(--glitch-blue));
            transition: width 120ms steps(4, end);
        }

        .signal-link:hover,
        .signal-link:focus-visible {
            color: #fff;
            border-color: rgba(255,255,255,0.46);
            background: rgba(255,255,255,0.07);
            outline: none;
            text-shadow: 1px 0 var(--glitch-red), -1px 0 var(--glitch-blue);
            transform: translateY(-1px);
        }

        .signal-link:hover::after,
        .signal-link:focus-visible::after {
            width: 100%;
        }

        .signal-link--disabled:hover,
        .signal-link--disabled:focus-visible,
        .signal-link--value:hover,
        .signal-link--value:focus-visible {
            border-color: rgba(255,255,255,0.16);
            background: rgba(255,255,255,0.025);
            color: rgba(255,255,255,0.42);
            outline: none;
            text-shadow: none;
            transform: none;
        }

        .signal-link--disabled:hover::after,
        .signal-link--disabled:focus-visible::after,
        .signal-link--value:hover::after,
        .signal-link--value:focus-visible::after {
            width: 0;
        }

        .signal-link__index {
            color: var(--glitch-red);
            font-size: 0.56rem;
            letter-spacing: 0;
            text-shadow: 0 0 7px rgba(255,0,60,0.72);
        }

        .tv-widget {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: clamp(12px, 1.5vw, 22px);
            border: 1px solid rgba(255,255,255,0.22);
            border-radius: 26px;
            background: linear-gradient(145deg, #151515 0%, #050505 62%, #101010 100%);
            box-shadow:
                0 34px 100px rgba(0,0,0,0.78),
                inset 0 1px 0 rgba(255,255,255,0.12),
                inset 0 -1px 0 rgba(255,255,255,0.05);
        }

        .tv-widget__topbar,
        .tv-widget__statusbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            color: rgba(255,255,255,0.48);
            font-size: clamp(0.66rem, 0.78vw, 0.8rem);
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }

        .tv-widget__topbar {
            min-height: 34px;
            padding: 0 8px 10px;
        }

        .tv-widget__brand {
            color: rgba(255,255,255,0.82);
        }

        .tv-widget__live {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .tv-widget__live::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--glitch-red);
            box-shadow: 0 0 10px var(--glitch-red);
            animation: blink 1.2s step-end infinite;
        }

        .tv-screen {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            border: 2px solid rgba(255,255,255,0.16);
            border-radius: 15px;
            background: #020202;
            box-shadow:
                inset 0 0 70px rgba(0,0,0,0.95),
                0 0 0 1px #000;
            transform: translateZ(0);
        }

        .tv-feed {
            width: 100%;
            height: 100%;
            border: 0;
            opacity: 0.82;
            filter: grayscale(0.35) contrast(1.14) saturate(0.72);
            transition: opacity 120ms linear, filter 120ms linear, transform 120ms linear;
        }

        .tv-screen__vignette,
        .tv-screen__scanlines,
        .tv-screen__static,
        .tv-screen__glitch-band {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .tv-screen__vignette {
            z-index: 3;
            border-radius: inherit;
            background: radial-gradient(ellipse at center, transparent 52%, rgba(0,0,0,0.8) 100%);
            box-shadow: inset 0 0 54px rgba(0,0,0,0.65);
        }

        .tv-screen__scanlines {
            z-index: 4;
            opacity: 0.34;
            background: repeating-linear-gradient(
                0deg,
                rgba(0,0,0,0.2) 0,
                rgba(0,0,0,0.2) 1px,
                transparent 1px,
                transparent 3px
            );
        }

        .tv-screen__static {
            z-index: 6;
            inset: -45%;
            opacity: 0;
            background-image:
                repeating-radial-gradient(circle at 18% 24%, transparent 0 1px, rgba(255,255,255,0.8) 1px 2px),
                repeating-linear-gradient(93deg, #000 0 2px, #fff 2px 3px, #171717 3px 5px);
            background-size: 5px 5px, 7px 7px;
            mix-blend-mode: screen;
            animation: tvStatic 180ms steps(2, end) infinite;
            transition: opacity 80ms linear;
        }

        .tv-screen__glitch-band {
            z-index: 7;
            top: 42%;
            bottom: auto;
            height: 14%;
            opacity: 0;
            background:
                linear-gradient(90deg, rgba(255,0,60,0.38), transparent 28%, rgba(0,225,255,0.35) 72%, transparent),
                rgba(255,255,255,0.16);
            mix-blend-mode: screen;
        }

        .tv-screen.is-switching .tv-feed {
            opacity: 0.08;
            filter: grayscale(1) contrast(2.4);
            transform: scale(1.04) skewX(-1deg);
        }

        .tv-screen.is-switching .tv-screen__static {
            opacity: 0.92;
        }

        .tv-screen.is-switching .tv-screen__glitch-band {
            opacity: 1;
            animation: glitchBand 140ms steps(2, end) infinite;
        }

        .tv-screen__osd {
            position: absolute;
            z-index: 8;
            top: 18px;
            left: 20px;
            display: flex;
            flex-direction: column;
            gap: 4px;
            color: #fff;
            font-size: clamp(0.7rem, 0.9vw, 0.92rem);
            letter-spacing: 0.13em;
            text-shadow: 2px 0 var(--glitch-red), -2px 0 var(--glitch-blue), 0 0 7px #000;
        }

        .tv-screen__osd small {
            color: rgba(255,255,255,0.55);
            font-size: 0.7em;
            letter-spacing: 0.18em;
        }

        .tv-widget__statusbar {
            min-height: 42px;
            padding: 12px 8px 0;
        }

        .signal-meter {
            width: min(140px, 28%);
            height: 8px;
            padding: 1px;
            border: 1px solid rgba(255,255,255,0.4);
            background: repeating-linear-gradient(90deg, rgba(255,255,255,0.75) 0 12%, transparent 12% 16%);
        }

        @keyframes tvStatic {
            0% { transform: translate(-4%, -6%) rotate(0deg); }
            33% { transform: translate(6%, 4%) rotate(0.4deg); }
            66% { transform: translate(-2%, 8%) rotate(-0.35deg); }
            100% { transform: translate(5%, -3%) rotate(0deg); }
        }

        @keyframes glitchBand {
            0% { top: 8%; transform: translateX(-4%); }
            25% { top: 72%; transform: translateX(5%); }
            50% { top: 36%; transform: translateX(-7%); }
            75% { top: 88%; transform: translateX(3%); }
            100% { top: 18%; transform: translateX(0); }
        }

        .market-section {
            position: relative;
            min-height: 100vh;
            min-height: 100svh;
            display: grid;
            place-items: center;
            overflow: hidden;
            padding: clamp(48px, 6vw, 92px) clamp(18px, 5vw, 78px);
            background: #030303;
            isolation: isolate;
        }

        .market-section::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -2;
            pointer-events: none;
            background:
                radial-gradient(circle at 50% 44%, rgba(255,255,255,0.045), transparent 42%),
                repeating-linear-gradient(0deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 4px);
        }

        .market-section::after {
            content: 'CH 03 // DECENTRALIZED MARKET MONITOR';
            position: absolute;
            right: clamp(20px, 3vw, 48px);
            bottom: 18px;
            color: rgba(255,255,255,0.2);
            font-size: 0.72rem;
            letter-spacing: 0.18em;
            pointer-events: none;
        }

        .market-terminal {
            width: min(1440px, 100%);
        }

        .market-terminal__header {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 28px;
            margin-bottom: 22px;
            text-shadow: 0 0 5px var(--osd-glow);
        }

        .market-terminal__eyebrow {
            margin-bottom: 8px;
            color: rgba(255,255,255,0.38);
            font-size: 0.74rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }

        .market-terminal__title {
            color: rgba(255,255,255,0.88);
            font-size: clamp(1.28rem, 2.2vw, 2.2rem);
            font-weight: 400;
            letter-spacing: 0.12em;
            line-height: 1;
            text-transform: uppercase;
        }

        .market-terminal__signal {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: rgba(255,255,255,0.5);
            font-size: 0.72rem;
            letter-spacing: 0.16em;
            white-space: nowrap;
        }

        .market-terminal__signal::before {
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #59ff91;
            box-shadow: 0 0 10px rgba(89,255,145,0.78);
            animation: blink 1.5s step-end infinite;
        }

        .dex-window {
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.22);
            border-radius: 10px;
            background: #070707;
            box-shadow:
                0 38px 110px rgba(0,0,0,0.82),
                inset 0 1px 0 rgba(255,255,255,0.08);
        }

        .dex-window__chrome,
        .dex-window__footer {
            display: none;
        }

        .dex-frame-wrap {
            position: relative;
            height: clamp(560px, 70vh, 760px);
            overflow: hidden;
            background: #050505;
        }

        .dex-frame-wrap::after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 3;
            pointer-events: none;
            opacity: 0.18;
            background: repeating-linear-gradient(
                0deg,
                rgba(0,0,0,0.16) 0,
                rgba(0,0,0,0.16) 1px,
                transparent 1px,
                transparent 3px
            );
        }

        .dex-frame {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            border: 0;
            opacity: 0;
            background: #050505;
            transition: opacity 240ms linear;
        }

        .dex-frame-wrap.is-ready .dex-frame {
            opacity: 1;
        }

        .dex-loader {
            position: absolute;
            inset: 0;
            z-index: 2;
            display: grid;
            place-content: center;
            gap: 14px;
            color: rgba(255,255,255,0.7);
            font-size: 0.82rem;
            letter-spacing: 0.16em;
            text-align: center;
            text-transform: uppercase;
            background:
                repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,0.018) 3px 4px),
                #050505;
            transition: opacity 180ms linear, visibility 180ms linear;
        }

        .dex-loader::before {
            content: '';
            width: 170px;
            height: 9px;
            margin: 0 auto;
            border: 1px solid rgba(255,255,255,0.38);
            background: linear-gradient(90deg, var(--glitch-red), var(--glitch-blue)) 0 0 / 34% 100% no-repeat;
            animation: dexLoading 1.1s steps(3, end) infinite;
        }

        .dex-frame-wrap.is-ready .dex-loader {
            opacity: 0;
            visibility: hidden;
        }

        .dex-loader.is-error {
            color: var(--glitch-red);
        }

        .dex-loader.is-error::before {
            animation: none;
            background: var(--glitch-red);
        }

        @keyframes dexLoading {
            0% { background-position: -55px 0; }
            50% { background-position: 70px 0; }
            100% { background-position: 180px 0; }
        }

        
        #webgl-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none; 
        }

        
        #crt-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
            background: 
                radial-gradient(circle at center, transparent 50%, rgba(0, 0, 0, 0.6) 100%),
                linear-gradient(rgba(255,255,255,0.03) 0%, transparent 10%, transparent 90%, rgba(255,255,255,0.02) 100%);
            box-shadow: inset 0 0 100px rgba(0,0,0,0.9);
        }

        
        #ui-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10;
            padding: 40px 50px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto 1fr auto;
            pointer-events: none; 
            text-shadow: 0 0 5px var(--osd-glow);
        }

        .osd-element {
            font-size: 1.2rem;
            letter-spacing: 0.1em;
            line-height: 1.4;
            pointer-events: auto;
            animation: textFlicker 4s infinite alternate;
        }

        .top-left {
            grid-column: 1;
            grid-row: 1;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .play-icon {
            font-size: 1.5rem;
            animation: blink 1s step-end infinite;
        }

        .top-right {
            grid-column: 2;
            grid-row: 1;
            text-align: right;
        }

        
        .center-stage {
            grid-column: 1 / -1;
            grid-row: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        
        .glitch-title {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 5vw;
            font-weight: 900;
            font-style: italic;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            
            
            color: transparent;
            -webkit-text-stroke: 2px rgba(255, 255, 255, 0.8);
            
            position: relative;
            pointer-events: auto;
            transition: all 0.2s ease;
        }

        
        .glitch-title::before,
        .glitch-title::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            -webkit-text-stroke: 2px transparent;
            opacity: 0.8;
            pointer-events: none;
        }

        .glitch-title::before {
            color: transparent;
            -webkit-text-stroke: 2px var(--glitch-red);
            z-index: -1;
            animation: textGlitchAnim 3s infinite linear alternate-reverse;
        }

        .glitch-title::after {
            color: transparent;
            -webkit-text-stroke: 2px var(--glitch-blue);
            z-index: -2;
            animation: textGlitchAnim2 2.5s infinite linear alternate-reverse;
        }

        .center-stage:hover .glitch-title::before {
            animation-duration: 0.2s;
            left: 5px;
        }
        .center-stage:hover .glitch-title::after {
            animation-duration: 0.3s;
            left: -5px;
        }

        
        .bottom-right {
            grid-column: 2;
            grid-row: 3;
            align-self: end;
            text-align: right;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 5px;
        }

        .record-button {
            min-width: 82px;
            height: 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            padding: 0 15px;
            border: 1px solid rgba(255,255,255,0.7);
            border-radius: 3px;
            background: var(--glitch-red);
            color: #fff;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-shadow: 0 1px 2px rgba(0,0,0,0.6);
            box-shadow: 0 0 14px rgba(255,0,60,0.65), inset 0 1px 0 rgba(255,255,255,0.28);
            animation: recordBlink 1.15s step-end infinite;
        }

        .record-button::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 0 7px rgba(255,255,255,0.9);
        }

        
        @keyframes blink {
            0%, 49% { opacity: 1; }
            50%, 100% { opacity: 0; }
        }

        @keyframes textFlicker {
            0% { opacity: 0.9; }
            5% { opacity: 0.8; text-shadow: none; }
            10% { opacity: 0.9; text-shadow: 0 0 5px var(--osd-glow); }
            50% { opacity: 0.95; }
            52% { opacity: 0.6; }
            54% { opacity: 0.9; }
            100% { opacity: 1; }
        }

        @keyframes recordBlink {
            0%, 44% {
                opacity: 1;
                box-shadow: 0 0 18px rgba(255,0,60,0.8), inset 0 1px 0 rgba(255,255,255,0.3);
            }
            45%, 67% {
                opacity: 0.32;
                box-shadow: 0 0 5px rgba(255,0,60,0.28), inset 0 1px 0 rgba(255,255,255,0.18);
            }
            68%, 100% {
                opacity: 1;
                box-shadow: 0 0 14px rgba(255,0,60,0.65), inset 0 1px 0 rgba(255,255,255,0.28);
            }
        }

        
        @keyframes textGlitchAnim {
            0% { clip-path: inset(10% 0 80% 0); transform: translate(-2px, 1px); }
            20% { clip-path: inset(80% 0 10% 0); transform: translate(2px, -1px); }
            40% { clip-path: inset(40% 0 50% 0); transform: translate(-2px, 2px); }
            60% { clip-path: inset(20% 0 60% 0); transform: translate(3px, -2px); }
            80% { clip-path: inset(90% 0 5% 0); transform: translate(-1px, 3px); }
            100% { clip-path: inset(30% 0 40% 0); transform: translate(2px, -1px); }
        }

        @keyframes textGlitchAnim2 {
            0% { clip-path: inset(20% 0 60% 0); transform: translate(2px, -1px); }
            20% { clip-path: inset(90% 0 5% 0); transform: translate(-2px, 2px); }
            40% { clip-path: inset(10% 0 80% 0); transform: translate(3px, -2px); }
            60% { clip-path: inset(50% 0 30% 0); transform: translate(-1px, 1px); }
            80% { clip-path: inset(5% 0 80% 0); transform: translate(2px, -3px); }
            100% { clip-path: inset(70% 0 20% 0); transform: translate(-2px, 1px); }
        }

        
        @media (max-width: 960px) {
            .broadcast-console {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .market-terminal__header {
                align-items: flex-start;
            }

            .channel-browser__eyebrow {
                margin-bottom: 16px;
            }

            .channel-list {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 8px 18px;
            }

            .channel-browser__hint {
                display: none;
            }

            .signal-links {
                margin-top: 20px;
            }

            .signal-links__grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
        }

        @media (max-width: 768px) {
            #ui-layer { padding: 20px; }
            .glitch-title { font-size: 8vw; }
            .top-right { display: none; } 

            .broadcast-section {
                align-items: start;
                padding: 42px 18px 64px;
            }

            .channel-list {
                grid-template-columns: 1fr;
                gap: 7px;
            }

            .channel-button {
                font-size: 0.78rem;
            }

            .signal-links__grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .tv-widget {
                padding: 9px;
                border-radius: 18px;
            }

            .tv-widget__topbar,
            .tv-widget__statusbar {
                font-size: 0.58rem;
                letter-spacing: 0.1em;
            }

            .tv-screen {
                border-radius: 10px;
            }

            .tv-screen__osd {
                top: 10px;
                left: 12px;
            }

            .broadcast-section::after {
                display: none;
            }

            .market-section {
                align-items: start;
                padding: 42px 12px 64px;
            }

            .market-terminal__header {
                flex-direction: column;
                gap: 12px;
                margin-bottom: 16px;
            }

            .market-terminal__signal {
                font-size: 0.62rem;
            }

            .dex-frame-wrap {
                height: 650px;
            }

            .dex-window__chrome,
            .dex-window__footer {
                padding-inline: 10px;
                font-size: 0.58rem;
                letter-spacing: 0.08em;
            }

            .dex-window__link {
                white-space: nowrap;
            }

            .market-section::after {
                display: none;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            .record-button,
            .tv-screen__static,
            .tv-screen__glitch-band,
            .market-terminal__signal::before,
            .dex-loader::before {
                animation: none !important;
            }
        }
