
:root {
    --bg-color: #f7f9fc;
    --text-color: #1a1a2e;
    --accent-color: #4a90e2;
    --panel-bg: rgba(255, 255, 255, 0.7);
    --panel-border: rgba(255, 255, 255, 0.74);
    --shadow-color: rgba(26, 26, 46, 0.14);
    --lamp-glow: rgba(255, 219, 87, 0.56);
    --wall-color: #eef3f7;
    --desk-color: #d6e1e8;
    --desk-edge: #8ca3b1;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html, body {
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 235, 149, 0.32), rgba(255, 235, 149, 0) 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.08) 62%),
        repeating-linear-gradient(90deg, rgba(74, 144, 226, 0.05) 0 1px, transparent 1px 74px),
        repeating-linear-gradient(0deg, rgba(42, 68, 87, 0.04) 0 1px, transparent 1px 74px),
        var(--bg-color);
    font-family: var(--font-main);
    overflow: hidden;
    color: var(--text-color);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    transition: background-color 0.5s ease, color 0.5s ease;
}

body.dark-mode {
    --bg-color: #101116;
    --text-color: #f0f0f0;
    --panel-bg: rgba(24, 25, 32, 0.76);
    --panel-border: rgba(255, 255, 255, 0.12);
    --shadow-color: rgba(0, 0, 0, 0.4);
    --lamp-glow: rgba(255, 219, 87, 0);
    --wall-color: #11141b;
    --desk-color: #202632;
    --desk-edge: #3a4758;
}

body.dark-mode .window-scene,
body.dark-mode .wall-shelf,
body.dark-mode .pegboard {
    opacity: 0.28;
}

body.dark-mode .fan-button {
    opacity: 0.74;
}

#ui-layer {
    position: absolute;
    top: 20px;
    right: 20px;
    left: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    z-index: 100;
    pointer-events: none;
}

.ui-button {
    min-height: 44px;
    background: var(--panel-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--panel-border);
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    color: var(--text-color);
    cursor: pointer;
    box-shadow: 0 8px 26px var(--shadow-color);
    transition: all 0.2s ease;
    pointer-events: auto;
}

.ui-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--shadow-color);
}

.ui-button:active {
    transform: translateY(0);
}

.physics-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 44px;
    padding: 8px 12px;
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    box-shadow: 0 8px 26px var(--shadow-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: auto;
}

.control {
    display: grid;
    grid-template-columns: auto 92px;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
}

.control input {
    width: 92px;
    accent-color: var(--accent-color);
    cursor: ew-resize;
}

.easter-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 8px;
    width: min(360px, calc(100vw - 40px));
    padding: 8px;
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    box-shadow: 0 12px 32px var(--shadow-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: auto;
}

.easter-menu.is-open {
    display: flex;
}

.easter-menu .physics-controls {
    width: 100%;
    justify-content: space-between;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.36);
}

.easter-button {
    flex: 1;
    min-height: 36px;
    padding: 8px 12px;
    border: 0;
    border-radius: 7px;
    background: rgba(26, 26, 46, 0.9);
    color: #fff;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.easter-button:hover {
    background: var(--accent-color);
}

#environment-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.window-scene {
    position: absolute;
    top: 84px;
    right: clamp(28px, 8vw, 128px);
    width: clamp(150px, 18vw, 230px);
    aspect-ratio: 1.3;
    border: 10px solid rgba(255, 255, 255, 0.78);
    border-radius: 8px;
    background: #9bd7ff;
    box-shadow:
        0 16px 40px rgba(67, 94, 113, 0.14),
        inset 0 0 0 2px rgba(54, 82, 102, 0.08);
    opacity: 0.86;
}

.window-scene::before,
.window-scene::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.78);
    z-index: 2;
}

.window-scene::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 8px;
    transform: translateX(-50%);
}

.window-scene::after {
    right: 0;
    left: 0;
    top: 50%;
    height: 8px;
    transform: translateY(-50%);
}

.window-sky {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 2px;
    background:
        linear-gradient(180deg, #8fd2ff 0%, #d6f2ff 62%, #b9d9c7 100%);
}

.sun {
    position: absolute;
    top: 18%;
    left: 16%;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffd45f;
    box-shadow: 0 0 28px rgba(255, 212, 95, 0.8);
}

.cloud {
    position: absolute;
    height: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow:
        14px -8px 0 rgba(255, 255, 255, 0.84),
        30px 0 0 rgba(255, 255, 255, 0.84);
}

.cloud-one {
    top: 28%;
    left: 47%;
    width: 46px;
}

.cloud-two {
    top: 62%;
    left: 20%;
    width: 38px;
    opacity: 0.68;
}

.wall-shelf {
    position: absolute;
    top: clamp(112px, 19vh, 170px);
    left: clamp(28px, 7vw, 110px);
    width: clamp(150px, 18vw, 230px);
    height: 14px;
    border-radius: 6px;
    background: linear-gradient(180deg, #ffffff, #b8c8d4);
    box-shadow: 0 12px 24px rgba(52, 75, 91, 0.14);
}

.wall-shelf span {
    position: absolute;
    bottom: 14px;
    width: 28px;
    border-radius: 5px 5px 2px 2px;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.5);
}

.wall-shelf span:nth-child(1) {
    left: 18px;
    height: 48px;
    background: #4ecdc4;
}

.wall-shelf span:nth-child(2) {
    left: 56px;
    height: 66px;
    background: #ff8fcf;
}

.wall-shelf span:nth-child(3) {
    left: 96px;
    height: 38px;
    background: #ffe66d;
}

.pegboard {
    position: absolute;
    right: clamp(28px, 7vw, 100px);
    bottom: clamp(122px, 21vh, 176px);
    width: clamp(130px, 15vw, 190px);
    aspect-ratio: 1.25;
    border-radius: 8px;
    background:
        radial-gradient(circle, rgba(73, 88, 101, 0.22) 0 2px, transparent 2px) 0 0 / 22px 22px,
        linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(210, 222, 231, 0.74));
    box-shadow: inset 0 0 0 1px rgba(82, 98, 113, 0.1), 0 16px 34px rgba(53, 70, 84, 0.1);
    opacity: 0.72;
}

.discard-tube {
    position: absolute;
    right: 38px;
    top: auto;
    bottom: 108px;
    width: 126px;
    height: 126px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 46% 48%, rgba(6, 18, 26, 0.94) 0 42%, rgba(24, 49, 61, 0.9) 43% 54%, transparent 55%),
        radial-gradient(circle at 44% 48%, rgba(235, 252, 255, 0.86) 0 55%, rgba(109, 137, 149, 0.58) 56% 63%, rgba(229, 247, 252, 0.72) 64% 74%, rgba(67, 94, 106, 0.36) 75% 100%);
    border: 3px solid rgba(92, 120, 132, 0.42);
    box-shadow:
        inset 14px 0 18px rgba(255, 255, 255, 0.34),
        inset -18px 0 18px rgba(34, 57, 69, 0.3),
        0 0 0 7px rgba(217, 241, 247, 0.38),
        0 18px 28px rgba(37, 55, 72, 0.15);
    opacity: 0.96;
}

.discard-tube::before {
    content: "";
    position: absolute;
    inset: -11px;
    border-radius: 50%;
    background:
        linear-gradient(132deg, rgba(255, 255, 255, 0.36) 0 12%, transparent 13% 28%, rgba(43, 66, 77, 0.22) 29% 39%, transparent 40%),
        radial-gradient(circle, transparent 0 62%, rgba(99, 126, 137, 0.4) 63% 68%, rgba(237, 252, 255, 0.72) 69% 78%, transparent 79%);
    box-shadow:
        inset 11px 0 14px rgba(255, 255, 255, 0.3),
        inset -13px 0 15px rgba(26, 45, 56, 0.24);
}

.discard-tube::after {
    content: "";
    position: absolute;
    left: 28px;
    top: 24px;
    width: 74px;
    height: 78px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 45% 43%, rgba(10, 25, 34, 0.96) 0 60%, rgba(5, 15, 22, 0.98) 100%);
    box-shadow:
        inset -11px 7px 13px rgba(0, 0, 0, 0.34),
        inset 9px -6px 16px rgba(56, 88, 100, 0.28);
    opacity: 0.98;
}

.tube-lip {
    position: absolute;
    left: 12px;
    top: 10px;
    width: 102px;
    height: 106px;
    border-radius: 50%;
    border: 10px solid rgba(226, 247, 252, 0.74);
    border-left-color: rgba(120, 151, 163, 0.48);
    border-right-color: rgba(55, 82, 95, 0.34);
    box-shadow:
        inset -9px 0 13px rgba(55, 78, 90, 0.2),
        inset 9px 0 11px rgba(255, 255, 255, 0.24);
}

.tube-window {
    position: absolute;
    left: 22px;
    top: 17px;
    width: 70px;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(105deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.08));
    transform: rotate(-18deg);
}

.tube-glow {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(95, 237, 255, 0.5), rgba(64, 224, 255, 0.18) 46%, transparent 70%);
    opacity: 0;
    transition: opacity 0.18s ease;
    mix-blend-mode: screen;
}

.discard-tube.is-active .tube-glow {
    opacity: 0.9;
}

.discard-poof {
    position: absolute;
    z-index: 12;
    pointer-events: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(84, 238, 255, 0.78);
    box-shadow: 0 0 16px rgba(84, 238, 255, 0.9);
    animation: discard-poof 520ms ease-out forwards;
}

@keyframes discard-poof {
    to {
        opacity: 0;
        transform: translate(var(--dx), var(--dy)) scale(0.2);
    }
}

.desk-surface {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: clamp(76px, 15vh, 128px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 18%),
        linear-gradient(180deg, var(--desk-color), #b8c7d2);
    border-top: 8px solid var(--desk-edge);
    box-shadow: 0 -20px 36px rgba(48, 71, 90, 0.1);
}

.desk-surface::after {
    content: "";
    position: absolute;
    inset: 20px 0 auto;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
}

.fan-button {
    position: absolute;
    left: -104px;
    bottom: clamp(16px, 4vh, 34px);
    width: 174px;
    height: 172px;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 35;
    pointer-events: auto;
    color: #0b1430;
    filter: drop-shadow(0 18px 24px rgba(11, 20, 48, 0.24));
}

.fan-button::before {
    display: none;
}

.fan-button::after {
    display: none;
}

.fan-button:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 8px;
    border-radius: 12px;
}

.fan-cage {
    position: absolute;
    top: 6px;
    left: 0;
    width: 158px;
    height: 158px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, #1165ff 0 13px, #0636d8 14px 23px, transparent 24px),
        repeating-radial-gradient(circle at 50% 50%, transparent 0 9px, rgba(0, 65, 255, 0.9) 10px 12px),
        repeating-conic-gradient(from 0deg, rgba(0, 65, 255, 0.95) 0 1.4deg, transparent 1.4deg 9deg),
        radial-gradient(circle, rgba(255,255,255,0.84) 0 47%, rgba(10,16,26,0.12) 48% 58%, #090b10 59% 100%);
    border: 8px solid #07090d;
    box-shadow:
        inset 0 0 0 6px rgba(0, 65, 255, 0.88),
        inset -18px 0 28px rgba(0, 0, 0, 0.28),
        0 0 0 3px rgba(255, 255, 255, 0.12);
    transform: rotate(-8deg);
}

.fan-cage::before {
    content: "";
    position: absolute;
    inset: 19px;
    border: 5px solid rgba(0, 65, 255, 0.92);
    border-radius: 50%;
    box-shadow:
        inset 0 0 0 17px rgba(0, 65, 255, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.55);
}

.fan-cage::after {
    content: "";
    position: absolute;
    top: 17px;
    right: 12px;
    width: 24px;
    height: 16px;
    border-radius: 10px 12px 7px 7px;
    background: linear-gradient(135deg, #1c61ff, #0625b8);
    transform: rotate(20deg);
    box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.24);
}

.fan-blades {
    position: absolute;
    inset: 31px;
    border-radius: 50%;
    animation: fan-spin 1s linear infinite paused;
}

.fan-blades span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 68px;
    margin-left: -10px;
    margin-top: -61px;
    border-radius: 70% 70% 48% 48%;
    background: linear-gradient(90deg, #fbfcff, #c8d0db 58%, #7d8b98);
    transform-origin: 50% 61px;
    box-shadow: inset 4px 0 0 rgba(255, 255, 255, 0.66);
}

.fan-blades span:nth-child(1) {
    transform: rotate(0deg);
}

.fan-blades span:nth-child(2) {
    transform: rotate(120deg);
}

.fan-blades span:nth-child(3) {
    transform: rotate(240deg);
}

.fan-neck {
    display: none;
}

.fan-base {
    display: none;
}

.fan-gust {
    position: absolute;
    top: 44px;
    left: 66px;
    width: clamp(180px, 32vw, 440px);
    height: 86px;
    border-radius: 50%;
    background:
        repeating-linear-gradient(2deg, rgba(0, 65, 255, 0.2) 0 2px, transparent 2px 20px);
    opacity: 0;
    transform: skewX(-10deg);
    transition: opacity 0.2s ease;
    pointer-events: none;
    mask-image: linear-gradient(90deg, #000, transparent);
}

.fan-button.is-on .fan-blades {
    animation-duration: 0.2s;
    animation-play-state: running;
}

.fan-button.is-on .fan-gust {
    opacity: 0.52;
    animation: gust-flow 620ms linear infinite;
}

@keyframes fan-spin {
    to { transform: rotate(360deg); }
}

@keyframes gust-flow {
    to { background-position: 48px 0; }
}

#physics-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 10;
}

.physics-element {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: auto;
    will-change: transform;
    transform-origin: center center;

}

#background-layer {
    position: absolute;
    top: 253px;
    left: 0;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transform: translateX(250px) translateY(15px);
}

.plain-text {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 3rem;
    color: var(--text-color);
    opacity: 0.24;
}

.plain-icon {
    width: 50px;
    height: 50px;
    margin-left: 10px;
    color: var(--text-color);
    opacity: 0.24;
    transition: opacity 0.3s, color 0.3s;
}

.plain-icon:hover {
    opacity: 1;
    color: var(--accent-color);
}

.block {
    border-radius: 20%;
    box-shadow:
        inset 0 2px 4px rgba(255,255,255,0.48),
        inset 0 -10px 18px rgba(0,0,0,0.08),
        0 10px 20px rgba(26, 26, 46, 0.12);
}

.golden-block {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.8), inset 0 2px 4px rgba(255,255,255,0.8) !important;
    border: 2px solid #FFF8DC;
    z-index: 50;
}

@keyframes discoBg {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

body.disco-mode {
    animation: discoBg 3s linear infinite;
    background-color: #222;
    --text-color: #f0f0f0;
}
body.disco-mode .block {
    box-shadow: 0 0 15px rgba(255,255,255,0.5);
}

.lamp-wire {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    pointer-events: none;
    overflow: visible;
}

.lamp-wire path {
    fill: none;
    stroke: #4f5661;
    stroke-width: 4;
    stroke-linecap: round;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.18));
}

.lamp-wire path::selection {
    background: transparent;
}

.lamp-bulb {
    width: 60px;
    height: 60px;
    background:
        radial-gradient(circle at 34% 28%, #ffffff 0 10%, #fff6bd 22%, #ffd34d 58%, #c88812 100%);
    border-radius: 50%;
    box-shadow:
        0 0 34px 12px var(--lamp-glow),
        0 0 100px 34px rgba(255, 211, 77, 0.22),
        inset -9px -11px 18px rgba(145, 92, 14, 0.26),
        inset 7px 8px 12px rgba(255, 255, 255, 0.45);
    z-index: 6;
    transition: background 0.3s, box-shadow 0.3s, opacity 0.3s;
    cursor: grab;
}

.lamp-bulb::before {
    content: "";
    position: absolute;
    top: -10%;
    left: 28%;
    width: 44%;
    height: 22%;
    background: linear-gradient(#6b707a, #3c424a);
    border-radius: 5px 5px 2px 2px;
    box-shadow: inset 0 2px 1px rgba(255, 255, 255, 0.22);
}

.lamp-bulb::after {
    content: "";
    position: absolute;
    top: 18%;
    left: 24%;
    width: 18%;
    height: 16%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.58);
}

body.dark-mode .lamp-bulb {
    background: radial-gradient(circle at 34% 28%, #6b6b6b 0 8%, #34363b 42%, #15161a 100%);
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.5);
}

.lamp-bulb.broken {
    background: radial-gradient(circle at 50% 44%, #34363b 0 18%, #111216 64%, #08080a 100%) !important;
    box-shadow: inset 0 4px 11px rgba(0,0,0,0.72) !important;
    border-top: 3px solid #666;
    opacity: 0.8;
}

.spark,
.glass-shard {
    position: absolute;
    z-index: 9;
    pointer-events: none;
    transform-origin: center;
}

.spark {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff3a1;
    box-shadow: 0 0 12px rgba(255, 216, 76, 0.9);
    animation: spark-pop 650ms ease-out forwards;
}

.glass-shard {
    width: 12px;
    height: 8px;
    background: rgba(202, 232, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.5);
    clip-path: polygon(50% 0, 100% 100%, 0 75%);
    animation: shard-fall 900ms cubic-bezier(.2, .65, .3, 1) forwards;
}

@keyframes spark-pop {
    to {
        opacity: 0;
        transform: translate(var(--dx), var(--dy)) scale(0.25);
    }
}

@keyframes shard-fall {
    to {
        opacity: 0;
        transform: translate(var(--dx), var(--dy)) rotate(var(--rot));
    }
}

.static-phrase-render {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 85px;
    color: var(--text-color);
    white-space: pre;
    line-height: 85px;
    pointer-events: none;
    z-index: 5;
}

.letter {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 3.5rem;
    color: var(--text-color);
    line-height: 1;
    white-space: pre;
    cursor: grab;

    width: 85px;
    height: 85px;

    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.letter.space {
    width: 30px;
}

.letter:active, .block:active, .social-icon:active {
    cursor: grabbing;
}

#intro-text {
    display: none;
}

.social-icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    cursor: grab;
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--accent-color);
}

.social-icon svg {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

@media (max-width: 760px) {
    #ui-layer {
        top: 12px;
        right: 12px;
        left: 12px;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .physics-controls {
        width: 100%;
        justify-content: space-between;
    }

    .control {
        grid-template-columns: auto minmax(72px, 1fr);
        flex: 1;
    }

    .ui-button {
        padding: 10px 13px;
        font-size: 13px;
    }

    .easter-menu {
        top: calc(100% + 8px);
        right: 0;
        width: min(366px, calc(100vw - 24px));
    }

    .window-scene {
        top: 122px;
        right: 18px;
        width: 118px;
        opacity: 0.44;
    }

    .wall-shelf,
    .pegboard {
        display: none;
    }

    .discard-tube {
        right: 20px;
        top: auto;
        bottom: 102px;
        width: 88px;
        height: 88px;
        border-radius: 50%;
        border-width: 2px;
        box-shadow:
            inset 10px 0 12px rgba(255, 255, 255, 0.32),
            inset -12px 0 13px rgba(34, 57, 69, 0.3),
            0 0 0 5px rgba(217, 241, 247, 0.36),
            0 14px 22px rgba(37, 55, 72, 0.14);
    }

    .discard-tube::before {
        inset: -8px;
    }

    .discard-tube::after {
        left: 19px;
        top: 17px;
        width: 52px;
        height: 54px;
    }

    .tube-lip {
        left: 8px;
        top: 7px;
        width: 72px;
        height: 74px;
        border-width: 7px;
    }

    .tube-window {
        left: 15px;
        top: 12px;
        width: 48px;
        height: 10px;
    }

    .tube-glow {
        left: 13px;
        top: 13px;
        width: 62px;
        height: 62px;
    }

    .desk-surface {
        height: 76px;
    }

    .fan-button {
        left: -74px;
        bottom: 12px;
        width: 118px;
        height: 112px;
    }

    .fan-cage {
        top: 4px;
        width: 104px;
        height: 104px;
        border-width: 5px;
    }

    .fan-button::before {
        display: none;
    }

    .fan-button::after {
        display: none;
    }

    .fan-cage::before {
        inset: 13px;
        border-width: 4px;
    }

    .fan-cage::after {
        top: 12px;
        right: 8px;
        width: 20px;
        height: 13px;
    }

    .fan-blades {
        inset: 21px;
    }

    .fan-blades span {
        width: 13px;
        height: 44px;
        margin-left: -6px;
        margin-top: -40px;
        transform-origin: 50% 40px;
    }

    .fan-neck {
        display: none;
    }

    .fan-base {
        display: none;
    }

    .fan-gust {
        top: 29px;
        left: 41px;
        width: 220px;
        height: 54px;
    }
}
