        :root {
            --bg-0: #071019;
            --bg-1: #10253a;
            --bg-2: #173451;
            --glass: rgba(7, 16, 25, 0.56);
            --glass-strong: rgba(7, 16, 25, 0.82);
            --line: rgba(182, 219, 255, 0.25);
            --text: #e9f4ff;
            --muted: #9fb7ce;
            --accent: #6ad3ff;
            --terminal-bg: #051017;
            --terminal-line: rgba(106, 211, 255, 0.22);
            --term-green: #49ff8d;
            --term-dim: #5ec9a3;
            --solid-desktop: #0d1f31;
            --solid-panel: rgba(11, 25, 39, 0.82);
            --solid-icon: rgba(26, 55, 80, 0.75);
            --solid-dock-item: rgba(24, 55, 84, 0.9);
        }

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

        body {
            min-height: 100vh;
            overflow: hidden;
            font-family: "Space Grotesk", sans-serif;
            color: var(--text);
            background: var(--solid-desktop);
        }

body.easter-mode {
    animation: easter-flicker 0.26s linear infinite;
}

body.easter-mode .terminal {
    box-shadow: 0 0 0 1px rgba(122, 255, 194, 0.25), 0 0 48px rgba(122, 255, 194, 0.35);
}

@keyframes easter-flicker {
    0% { filter: hue-rotate(0deg) saturate(1); }
    50% { filter: hue-rotate(80deg) saturate(1.5); }
    100% { filter: hue-rotate(0deg) saturate(1); }
}

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            opacity: 0.35;
            background: rgba(255, 255, 255, 0.015);
        }

        .desktop {
            position: relative;
            width: 100vw;
            height: 100vh;
        }

        .topbar {
            position: absolute;
            top: 12px;
            left: 50%;
            transform: translateX(-50%);
            width: min(1080px, calc(100vw - 20px));
            border: 1px solid var(--line);
            background: var(--glass);
            backdrop-filter: blur(14px);
            border-radius: 16px;
            padding: 10px 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 40;
        }

        .topbar-title {
            font-weight: 700;
            letter-spacing: 0.06em;
            font-size: 0.85rem;
            text-transform: uppercase;
        }

        .topbar-meta {
            display: flex;
            gap: 14px;
            align-items: center;
            color: var(--muted);
            font-size: 0.85rem;
        }

        .desktop-icons {
            position: absolute;
            top: 94px;
            left: 18px;
            display: grid;
            gap: 16px;
            z-index: 10;
        }

        .icon {
            width: 78px;
            text-align: center;
            color: #dbedff;
            font-size: 0.78rem;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
        }

        .icon-symbol {
            width: 52px;
            height: 52px;
            margin: 0 auto 6px;
            border-radius: 14px;
            background: var(--solid-icon);
            border: 1px solid rgba(222, 243, 255, 0.35);
            display: grid;
            place-items: center;
            color: #eaf6ff;
        }

        .icon-symbol svg {
            width: 24px;
            height: 24px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .window {
            position: absolute;
            border-radius: 14px;
            border: 1px solid var(--line);
            background: var(--solid-panel);
            box-shadow: 0 35px 60px rgba(0, 0, 0, 0.45);
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .window-header {
            height: 40px;
            display: flex;
            align-items: center;
            padding: 0 12px;
            gap: 12px;
            border-bottom: 1px solid rgba(203, 230, 255, 0.18);
            cursor: grab;
            user-select: none;
        }

        .window.dragging .window-header {
            cursor: grabbing;
        }

        .window-controls {
            display: flex;
            gap: 7px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 999px;
            border: 0;
            padding: 0;
            cursor: pointer;
        }

        .dot.red { background: #ff6057; }
        .dot.yellow { background: #ffbd2f; }
        .dot.green { background: #27c93f; }

        .window-title {
            font-size: 0.8rem;
            color: #c9def2;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .terminal {
            width: min(880px, calc(100vw - 40px));
            height: min(540px, calc(100vh - 170px));
            top: 16%;
            left: 24%;
            z-index: 20;
        }

        .window.minimized {
            height: 40px !important;
            overflow: hidden;
        }

        .window.minimized .terminal-body {
            display: none;
        }

        .window.maximized {
            top: 56px !important;
            left: 10px !important;
            width: calc(100vw - 20px) !important;
            height: calc(100vh - 78px) !important;
            border-radius: 12px;
        }

        .terminal-body {
            height: calc(100% - 40px);
            padding: 16px;
            background: var(--terminal-bg);
            font-family: "IBM Plex Mono", monospace;
            font-size: 0.95rem;
            border-top: 1px solid var(--terminal-line);
            overflow: auto;
        }

        .terminal-body::-webkit-scrollbar {
            width: 10px;
        }

        .terminal-body::-webkit-scrollbar-thumb {
            background: rgba(106, 211, 255, 0.25);
            border-radius: 999px;
        }

        .line {
            color: var(--term-dim);
            white-space: pre-wrap;
            margin-bottom: 7px;
            word-break: break-word;
        }

        .line.prompt {
            color: var(--term-green);
        }

        .line.command {
            color: #8ed8ff;
        }

        .input-row {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--term-green);
            margin-top: 6px;
        }

        .input-label {
            flex-shrink: 0;
        }

        .input-field {
            background: transparent;
            border: 0;
            color: #e6fbff;
            font-family: inherit;
            font-size: inherit;
            width: 100%;
            outline: none;
        }

        .dock {
            position: absolute;
            left: 50%;
            bottom: 12px;
            transform: translateX(-50%);
            z-index: 45;
            display: flex;
            gap: 10px;
            padding: 10px 14px;
            border-radius: 18px;
            border: 1px solid var(--line);
            background: var(--glass);
            backdrop-filter: blur(12px);
        }

        .dock-item {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            border: 1px solid rgba(215, 238, 255, 0.24);
            background: var(--solid-dock-item);
            display: grid;
            place-items: center;
            color: #eff7ff;
        }

        .dock-item svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        @media (max-width: 900px) {
            .topbar {
                border-radius: 12px;
                width: calc(100vw - 14px);
            }

            .terminal {
                width: calc(100vw - 14px);
                height: calc(100vh - 124px);
                left: 7px;
                top: 66px;
            }

            .desktop-icons {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                top: auto;
                left: 12px;
                bottom: 92px;
                right: 12px;
                gap: 10px;
            }

            .icon {
                width: auto;
                display: flex;
                align-items: center;
                gap: 8px;
                text-align: left;
            }

            .icon-symbol {
                margin: 0;
                width: 38px;
                height: 38px;
                border-radius: 10px;
            }

            .icon-symbol svg {
                width: 18px;
                height: 18px;
            }

            .dock {
                width: calc(100vw - 14px);
                justify-content: center;
            }
        }
