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

:root {
    --bg-crt: #0a0a0a;
    --bg-dark: #000000;
    --cyan: #00ffff;
    --magenta: #ff00ff;
    --blue: #0080ff;
    --purple: #9d4edd;
    --yellow: #ffff00;
    --text-primary: #e0e0e0;
    --text-offwhite: #f0f0f0;
    --text-muted: #888888;
    --border-thick: 3px;
}

body {
    font-family: 'Share Tech Mono', monospace;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* CRT Screen Container */
.crt-screen {
    position: relative;
    min-height: 100vh;
    background: var(--bg-crt);
    padding: 1.5rem;
    animation: crtBoot 1.5s ease-in;
    overflow: hidden;
}

@keyframes crtBoot {
    0% {
        opacity: 0;
        filter: brightness(0.5);
    }
    100% {
        opacity: 1;
        filter: brightness(1);
    }
}

/* Scanlines Effect - Heavy */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.3) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 1000;
    mix-blend-mode: multiply;
    opacity: 0.7;
}

/* Noise/Grain Overlay - Intense */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.2'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
    opacity: 0.5;
    animation: noise 0.1s infinite;
}

@keyframes noise {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.7; }
}

/* Dithering Pattern - Heavy */
.dither {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 255, 0.08) 2px, rgba(0, 255, 255, 0.08) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 0, 255, 0.08) 2px, rgba(255, 0, 255, 0.08) 4px);
    pointer-events: none;
    z-index: 998;
    opacity: 0.4;
}

/* Static Overlay */
.static {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(255, 255, 255, 0.05) 1px, rgba(255, 255, 255, 0.05) 2px),
        repeating-linear-gradient(90deg, transparent, transparent 1px, rgba(255, 255, 255, 0.05) 1px, rgba(255, 255, 255, 0.05) 2px);
    pointer-events: none;
    z-index: 997;
    animation: staticFlicker 0.08s infinite;
}

@keyframes staticFlicker {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.25; }
}

/* Halftone Pattern */
.halftone {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 8px 8px;
    pointer-events: none;
    z-index: 996;
    opacity: 0.3;
    mix-blend-mode: overlay;
}

/* Grunge Texture */
.grunge {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 0, 0, 0.1) 10px, rgba(0, 0, 0, 0.1) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0, 0, 0, 0.1) 10px, rgba(0, 0, 0, 0.1) 20px);
    pointer-events: none;
    z-index: 995;
    opacity: 0.2;
}

.container {
    position: relative;
    z-index: 10;
    max-width: 1600px;
    margin: 0 auto;
}

/* Decorative Background Elements */
.deco-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.pixel-grid {
    position: absolute;
    top: 200px;
    right: 100px;
    width: 150px;
    height: 150px;
    background-image: 
        repeating-linear-gradient(0deg, var(--cyan), var(--cyan) 1px, transparent 1px, transparent 10px),
        repeating-linear-gradient(90deg, var(--cyan), var(--cyan) 1px, transparent 1px, transparent 10px);
    opacity: 0.3;
    transform: rotate(45deg);
}

.circuit-pattern {
    position: absolute;
    top: 400px;
    left: 1200px;
    width: 200px;
    height: 100px;
    border: 2px solid var(--magenta);
    opacity: 0.4;
    transform: rotate(-15deg);
}

.circuit-pattern::before,
.circuit-pattern::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--magenta);
}

.circuit-pattern::before {
    top: 20px;
    left: -10px;
}

.circuit-pattern::after {
    bottom: 20px;
    right: -10px;
}

.retro-shape {
    position: absolute;
    border: 3px solid;
    opacity: 0.2;
}

.shape-1 {
    top: 100px;
    right: 200px;
    width: 80px;
    height: 80px;
    border-color: var(--blue);
    border-radius: 50%;
    transform: rotate(20deg);
}

.shape-2 {
    top: 600px;
    left: 1100px;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 60px solid var(--yellow);
    opacity: 0.25;
    transform: rotate(-30deg);
}

.shape-3 {
    top: 300px;
    right: 400px;
    width: 60px;
    height: 60px;
    border-color: var(--purple);
    transform: rotate(45deg);
}

.anime-silhouette {
    position: absolute;
    top: 500px;
    left: 1300px;
    width: 120px;
    height: 150px;
    background: linear-gradient(135deg, var(--magenta), var(--purple));
    opacity: 0.15;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: rotate(-10deg);
}

.globe-icon {
    position: absolute;
    top: 150px;
    left: 900px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--cyan);
    border-radius: 50%;
    opacity: 0.2;
    transform: rotate(15deg);
}

.globe-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--cyan);
    opacity: 0.3;
}

.crt-icon {
    position: absolute;
    top: 700px;
    right: 300px;
    width: 140px;
    height: 100px;
    border: 4px solid var(--yellow);
    background: var(--bg-dark);
    opacity: 0.2;
    transform: rotate(-5deg);
}

.crt-icon::after {
    content: 'CRT';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Press Start 2P', monospace;
    font-size: 0.4rem;
    color: var(--yellow);
    opacity: 0.5;
}

/* Scattered HUD Chips - Different Colors */
.hud-scatter {
    position: relative;
    height: 200px;
    margin-bottom: 2rem;
}

.hud-chip {
    position: absolute;
    background: var(--bg-dark);
    border: 2px solid;
    padding: 0.4rem 0.8rem;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.45rem;
    text-transform: uppercase;
    box-shadow: 0 0 8px currentColor;
    image-rendering: pixelated;
}

.chip-cyan {
    border-color: var(--cyan);
    color: var(--cyan);
    box-shadow: 0 0 8px var(--cyan), inset 0 0 8px rgba(0, 255, 255, 0.1);
}

.chip-magenta {
    border-color: var(--magenta);
    color: var(--magenta);
    box-shadow: 0 0 8px var(--magenta), inset 0 0 8px rgba(255, 0, 255, 0.1);
}

.chip-blue {
    border-color: var(--blue);
    color: var(--blue);
    box-shadow: 0 0 8px var(--blue), inset 0 0 8px rgba(0, 128, 255, 0.1);
}

.chip-yellow {
    border-color: var(--yellow);
    color: var(--yellow);
    box-shadow: 0 0 8px var(--yellow), inset 0 0 8px rgba(255, 255, 0, 0.1);
}

.chip-purple {
    border-color: var(--purple);
    color: var(--purple);
    box-shadow: 0 0 8px var(--purple), inset 0 0 8px rgba(157, 78, 221, 0.1);
}

.hud-label {
    color: var(--text-muted);
    margin-right: 0.4rem;
}

.hud-value {
    text-shadow: 0 0 5px currentColor;
}

/* Hero Section - Brutalist Typography */
.hero {
    margin-bottom: 4rem;
    position: relative;
    padding-left: 1rem;
    z-index: 10;
}

.hero-boot {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.55rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px currentColor;
    letter-spacing: 0.15em;
    animation: glitchText 4s infinite;
}

.boot-cyan {
    color: var(--cyan);
}

@keyframes glitchText {
    0%, 100% { transform: translateX(-5px); }
    20% { transform: translateX(-7px); }
    40% { transform: translateX(-3px); }
    60% { transform: translateX(-6px); }
    80% { transform: translateX(-4px); }
}

.hero-title {
    font-family: 'Black Ops One', 'Orbitron', sans-serif;
    font-weight: 400;
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.85;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
    text-shadow: 
        4px 4px 0 var(--cyan),
        8px 8px 0 var(--magenta);
    transform: rotate(-0.5deg);
}

.hero-title .line-1 {
    display: block;
    color: var(--cyan);
    text-shadow: 4px 4px 0 var(--magenta);
}

.hero-title .line-2 {
    display: block;
    color: var(--magenta);
    text-shadow: 4px 4px 0 var(--cyan);
    margin-left: 30px;
}

.hero-subtitle {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.65rem;
    color: var(--text-offwhite);
    letter-spacing: 0.2em;
    margin-top: 1rem;
}

.cursor {
    display: inline-block;
    width: 6px;
    height: 1em;
    background: var(--cyan);
    margin-left: 4px;
    animation: blink 1s infinite;
    box-shadow: 0 0 8px var(--cyan);
}

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

/* Decorative Elements */
.deco-pixel-bar {
    position: absolute;
    height: 4px;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    opacity: 0.6;
}

.bar-1 {
    top: 120px;
    left: 0;
    width: 200px;
    transform: rotate(-2deg);
}

.bar-2 {
    top: 180px;
    right: 300px;
    width: 150px;
    background: var(--magenta);
    box-shadow: 0 0 10px var(--magenta);
    transform: rotate(1.5deg);
}

.deco-coord {
    position: absolute;
    top: 150px;
    right: 100px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.4rem;
    color: var(--text-muted);
    transform: rotate(5deg);
}

.sticker {
    position: absolute;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.5rem;
    padding: 0.3rem 0.6rem;
    border: 2px solid;
    transform: rotate(-12deg);
}

.sticker-1 {
    top: 200px;
    left: 400px;
    background: var(--yellow);
    color: var(--bg-dark);
    border-color: var(--yellow);
}

.arrow {
    position: absolute;
    font-family: 'VT323', monospace;
    font-size: 2rem;
    color: var(--magenta);
    text-shadow: 0 0 10px var(--magenta);
}

.arrow-1 {
    top: 250px;
    left: 600px;
    transform: rotate(45deg);
}

/* Data Card */
.data-card {
    position: absolute;
    background: var(--bg-dark);
    border: 3px solid var(--cyan);
    padding: 1rem;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.4rem;
    box-shadow: 0 0 15px var(--cyan);
    z-index: 8;
}

.card-cyan {
    border-color: var(--cyan);
    box-shadow: 0 0 15px var(--cyan);
}

.card-header {
    color: var(--cyan);
    text-align: center;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--cyan);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-line {
    display: flex;
    gap: 0.5rem;
}

.card-line .label {
    color: var(--text-muted);
}

.card-line .value {
    color: var(--cyan);
}

/* Collage Panels - Different Colors, Overlapping */
.panels-collage {
    position: relative;
    margin-bottom: 4rem;
    min-height: 800px;
}

.retro-panel {
    background: var(--bg-dark);
    border: var(--border-thick) solid;
    box-shadow: 
        0 0 15px currentColor,
        inset 0 0 15px rgba(0, 0, 0, 0.3);
    position: absolute;
    overflow: visible;
    image-rendering: pixelated;
    width: 320px;
}

.panel-cyan {
    border-color: var(--cyan);
}

.panel-magenta {
    border-color: var(--magenta);
}

.panel-blue {
    border-color: var(--blue);
}

.panel-purple {
    border-color: var(--purple);
}

.panel-yellow {
    border-color: var(--yellow);
}

/* Rough Title Bars - Different Colors */
.panel-title-bar {
    padding: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.5rem;
    position: relative;
    border-bottom: 2px solid currentColor;
}

.bar-cyan {
    background: var(--cyan);
    color: var(--bg-dark);
}

.bar-magenta {
    background: var(--magenta);
    color: var(--bg-dark);
}

.bar-blue {
    background: var(--blue);
    color: var(--bg-dark);
}

.bar-purple {
    background: var(--purple);
    color: var(--bg-dark);
}

.bar-yellow {
    background: var(--yellow);
    color: var(--bg-dark);
}

.panel-title {
    flex: 1;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.panel-icon {
    font-size: 0.6rem;
    opacity: 0.7;
}

/* Panel Content - Different Backgrounds */
.panel-content {
    padding: 1.5rem;
    min-height: 180px;
    position: relative;
}

.content-cyan {
    background: repeating-linear-gradient(
        45deg,
        var(--bg-dark),
        var(--bg-dark) 8px,
        rgba(0, 255, 255, 0.05) 8px,
        rgba(0, 255, 255, 0.05) 16px
    );
}

.content-magenta {
    background: repeating-linear-gradient(
        135deg,
        var(--bg-dark),
        var(--bg-dark) 8px,
        rgba(255, 0, 255, 0.05) 8px,
        rgba(255, 0, 255, 0.05) 16px
    );
}

.content-blue {
    background: repeating-linear-gradient(
        90deg,
        var(--bg-dark),
        var(--bg-dark) 8px,
        rgba(0, 128, 255, 0.05) 8px,
        rgba(0, 128, 255, 0.05) 16px
    );
}

.content-purple {
    background: repeating-linear-gradient(
        60deg,
        var(--bg-dark),
        var(--bg-dark) 8px,
        rgba(157, 78, 221, 0.05) 8px,
        rgba(157, 78, 221, 0.05) 16px
    );
}

.content-yellow {
    background: repeating-linear-gradient(
        30deg,
        var(--bg-dark),
        var(--bg-dark) 8px,
        rgba(255, 255, 0, 0.05) 8px,
        rgba(255, 255, 0, 0.05) 16px
    );
}

/* Panel Content Items */
.log-entry {
    margin-bottom: 1rem;
    padding-left: 0.8rem;
    border-left: 2px solid currentColor;
}

.log-date {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.35rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.3rem;
}

.log-text {
    font-family: 'VT323', monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.mission-item {
    margin-bottom: 0.8rem;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.4rem;
}

.mission-status {
    color: var(--magenta);
    margin-right: 0.5rem;
}

.mission-text {
    color: var(--text-primary);
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.archive-item {
    background: var(--bg-dark);
    border: 1px solid var(--blue);
    padding: 1rem;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.35rem;
    color: var(--text-muted);
    text-align: center;
}

.project-item {
    margin-bottom: 0.8rem;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.4rem;
    display: flex;
    justify-content: space-between;
}

.project-name {
    color: var(--text-primary);
}

.project-status {
    color: var(--purple);
}

.system-line {
    margin-bottom: 0.8rem;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.4rem;
}

.sys-label {
    color: var(--text-muted);
    margin-right: 0.5rem;
}

.sys-value {
    color: var(--yellow);
}

.panel-link {
    display: inline-block;
    margin-top: 1rem;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.4rem;
    color: currentColor;
    text-decoration: none;
    text-shadow: 0 0 5px currentColor;
    transition: transform 0.2s;
}

.panel-link:hover {
    transform: translateX(5px);
}

.panel-sticker {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--cyan);
    color: var(--bg-dark);
    padding: 0.3rem 0.6rem;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.35rem;
    border: 2px solid var(--cyan);
    transform: rotate(12deg);
    box-shadow: 0 0 10px var(--cyan);
}

.error-tag {
    position: absolute;
    bottom: -15px;
    left: 10px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.35rem;
    color: var(--yellow);
    background: var(--bg-dark);
    padding: 0.3rem 0.6rem;
    border: 1px solid var(--yellow);
    text-shadow: 0 0 5px var(--yellow);
    transform: rotate(-3deg);
}

.access-denied {
    position: absolute;
    bottom: -15px;
    right: 10px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.4rem;
    color: var(--magenta);
    background: var(--bg-dark);
    padding: 0.3rem 0.6rem;
    border: 1px solid var(--magenta);
    text-shadow: 0 0 8px var(--magenta);
    transform: rotate(2deg);
}

/* Scattered Decorative Elements */
.scatter-elements {
    position: relative;
    height: 200px;
    margin: 3rem 0;
}

.pixel-divider {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        var(--cyan),
        var(--cyan) 6px,
        var(--magenta) 6px,
        var(--magenta) 12px
    );
    opacity: 0.5;
    transform: rotate(0.3deg);
}

.data-label {
    position: absolute;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.4rem;
    color: var(--text-muted);
    padding: 0.3rem 0.6rem;
    background: var(--bg-dark);
    border: 1px solid var(--text-muted);
    transform: rotate(-2deg);
}

.label-1 {
    top: 50px;
    left: 100px;
    border-color: var(--cyan);
    color: var(--cyan);
}

.label-2 {
    top: 70px;
    right: 150px;
    border-color: var(--blue);
    color: var(--blue);
    transform: rotate(1.5deg);
}

.label-3 {
    top: 90px;
    left: 500px;
    border-color: var(--purple);
    color: var(--purple);
    transform: rotate(-1deg);
}

.scanline-deco {
    position: absolute;
    bottom: 0;
    left: 200px;
    width: 300px;
    height: 1px;
    background: var(--magenta);
    box-shadow: 0 0 5px var(--magenta);
    transform: rotate(1deg);
}

.pixel-art {
    position: absolute;
    font-family: 'Press Start 2P', monospace;
    font-size: 1.5rem;
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan);
    opacity: 0.4;
}

.pixel-1 {
    top: 30px;
    left: 800px;
    transform: rotate(20deg);
}

.pixel-2 {
    top: 120px;
    right: 400px;
    color: var(--magenta);
    text-shadow: 0 0 10px var(--magenta);
    transform: rotate(-15deg);
}

.pixel-3 {
    top: 80px;
    left: 1200px;
    color: var(--blue);
    text-shadow: 0 0 10px var(--blue);
    transform: rotate(30deg);
}

.scribble {
    position: absolute;
    font-family: 'VT323', monospace;
    font-size: 2rem;
    color: var(--text-muted);
    opacity: 0.3;
    transform: rotate(-20deg);
}

.scribble-1 {
    top: 40px;
    left: 600px;
}

.scribble-2 {
    top: 100px;
    right: 600px;
    transform: rotate(25deg);
}

.underline {
    position: absolute;
    height: 2px;
    background: var(--yellow);
    opacity: 0.5;
}

.underline-1 {
    top: 60px;
    left: 400px;
    width: 100px;
    transform: rotate(-5deg);
}

.underline-2 {
    top: 140px;
    right: 300px;
    width: 80px;
    transform: rotate(3deg);
}

.stamp {
    position: absolute;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.4rem;
    padding: 0.4rem 0.8rem;
    border: 2px dashed;
    transform: rotate(-15deg);
    background: var(--bg-dark);
}

.stamp-1 {
    top: 20px;
    right: 200px;
    border-color: var(--yellow);
    color: var(--yellow);
}

.stamp-2 {
    top: 160px;
    left: 300px;
    border-color: var(--magenta);
    color: var(--magenta);
    transform: rotate(12deg);
}

/* Terminal Footer - Rough */
.terminal-footer {
    position: relative;
    padding: 1.2rem;
    background: var(--bg-dark);
    border: 2px solid var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    overflow: hidden;
}

.terminal-line {
    color: var(--cyan);
    text-shadow: 0 0 5px var(--cyan);
    position: relative;
    z-index: 2;
}

.term-prompt {
    color: var(--cyan);
    margin-right: 0.5rem;
}

.term-text {
    color: var(--text-offwhite);
    animation: typewriter 3s steps(30) infinite;
}

@keyframes typewriter {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.terminal-glitch {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 0, 255, 0.1),
        transparent
    );
    animation: glitchScan 2s infinite;
    pointer-events: none;
}

@keyframes glitchScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.terminal-coords {
    position: absolute;
    bottom: 5px;
    right: 10px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.35rem;
    color: var(--text-muted);
    transform: rotate(1deg);
}

/* Hover Effects - Glitchy */
.retro-panel:hover {
    animation: panelGlitch 0.4s;
    filter: brightness(1.1);
}

@keyframes panelGlitch {
    0%, 100% { transform: translate(0, 0) rotate(var(--rotation, 0deg)); }
    10% { transform: translate(-2px, 1px) rotate(calc(var(--rotation, 0deg) - 0.5deg)); }
    20% { transform: translate(2px, -1px) rotate(calc(var(--rotation, 0deg) + 0.5deg)); }
    30% { transform: translate(-1px, 2px) rotate(calc(var(--rotation, 0deg) - 0.3deg)); }
    40% { transform: translate(1px, -2px) rotate(calc(var(--rotation, 0deg) + 0.3deg)); }
    50% { transform: translate(-2px, -1px) rotate(calc(var(--rotation, 0deg) - 0.2deg)); }
    60% { transform: translate(2px, 1px) rotate(calc(var(--rotation, 0deg) + 0.2deg)); }
    70% { transform: translate(-1px, -2px) rotate(calc(var(--rotation, 0deg) - 0.1deg)); }
    80% { transform: translate(1px, 2px) rotate(calc(var(--rotation, 0deg) + 0.1deg)); }
    90% { transform: translate(-2px, 0) rotate(var(--rotation, 0deg)); }
}

/* Responsive - Still Scrappy */
@media (max-width: 1200px) {
    .panels-collage {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .retro-panel {
        position: relative;
        margin: 1rem 0;
        width: 90%;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .crt-screen {
        padding: 1rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hud-scatter {
        height: auto;
        position: static;
    }

    .hud-chip {
        position: static;
        display: inline-block;
        margin: 0.5rem;
    }

    .deco-bg {
        display: none;
    }
}
