.animation-container {
    width: 930px;
    margin: 30px auto;
    height: 750px;
    background: #0d2b0d;
    border: 2px solid var(--border-color);
    position: relative;
}

/* Desk Clock */
.desk-clock {
    position: absolute;
    bottom: 225px;
    left: 60px;
    width: 100px;
    height: 40px;
    z-index: 0;
}

.digital-clock {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #000, #001a00);
    border: 3px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 255, 13, 0.4), inset 0 0 15px rgba(0, 255, 13, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.time-display {
    display: flex;
    align-items: center;
    font-family: 'Courier New', monospace;
    font-size: 20px;
    font-weight: bold;
    color: var(--text-color);
    text-shadow: 0 0 10px var(--text-color), 0 0 20px var(--border-color);
    animation: flicker 0.1s infinite alternate;
}

.digitH,
.digitM {
    display: inline-block;
    width: 15px;
    text-align: center;
}

.separator {
    animation: blink-colon 1s infinite;
    margin: 0 2px;
}

@keyframes blink-colon {

    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

/* Desk */
.desk {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 870px;
    height: 200px;
    background: linear-gradient(180deg, #1a3d1a 0%, #0f2a0f 100%);
    border: 3px solid var(--border-color);
    box-shadow: inset 0 0 20px rgba(0, 255, 13, 0.15);
    border-radius: 5px 5px 0 0;
    z-index: 0;
}

/* Speaker */
.speaker {
    position: absolute;
    width: 60px;
    height: 90px;
    background: rgba(0, 0, 0, 0.575);
    border: 2px solid var(--border-color);
    border-radius: 2px;
    transition: transform 1s ease;
    box-shadow: inset 0 2px 10px rgba(0, 255, 13, 0.1);
}

.speaker::before,
.speaker::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, #111 40%, #444 70%, #111 90%);
    box-shadow: 0 0 8px #000 inset;
}

.speaker::before {
    top: 10px;
    width: 25px;
    height: 25px;
}

.speaker::after {
    bottom: 10px;
    width: 40px;
    height: 40px;
}

.speaker1 {
    bottom: 220px;
    left: 185px;
}

.speaker2 {
    bottom: 220px;
    right: 275px;
}

@keyframes pulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.1);
    }
}

.speaker.playing::after {
    animation: pulse 0.6s infinite ease-in-out;
}

/* Floating music notes */
.music-note {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 9999;
    transform-origin: center;
    will-change: transform, opacity, left, top;
    opacity: 0.7;
    animation-name: floatNote;
    animation-duration: 10s;
    color: white;
}

@keyframes floatNote {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.7;
    }

    60% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(-110px) translateX(20px) rotate(15deg) scale(1.2);
        opacity: 0;
    }
}

/* Mug */
.mug {
    position: absolute;
    bottom: 220px;
    right: 205px;
    width: 40px;
    height: 45px;
    background: linear-gradient(180deg, #001a00, #000a00);
    border: 2px solid var(--border-color);
    border-radius: 0 0 8px 8px;
    transition: transform 1s ease;
    box-shadow: inset 0 2px 10px rgba(0, 255, 13, 0.1);
}

.mug::before {
    content: '';
    position: absolute;
    right: -18px;
    top: 12px;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-left: none;
    border-radius: 0 50% 50% 0;
    box-shadow: 0 0 8px rgba(0, 255, 13, 0.2);
}

.steam {
    position: absolute;
    top: -25px;
    left: 12px;
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, var(--text-color), transparent);
    opacity: 0.6;
    border-radius: 50%;
    transition: --tilt 1s ease-in-out;
    animation: steam-rise 2.5s ease-in-out infinite;
    --tilt: 0deg;
}

.mug:hover .steam {
    --tilt: 15deg;
}

@keyframes steam-rise {
    0% {
        transform: translateY(0) rotate(var(--tilt)) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translateY(-25px) rotate(var(--tilt)) scale(0.3);
        opacity: 0;
    }
}

.mug:hover {
    transform: rotate(-15deg) translate(-3px, -4px);
}

.mug:not(:hover) {
    animation: settle 0.5s cubic-bezier(0.45, 1.6, 0.55, 1) 0s;
}

@keyframes settle {
    0% {
        transform: rotate(-15deg) translate(-3px, -4px);
    }

    10% {
        transform: rotate(-10deg) translate(0, 0);
    }

    40% {
        transform: rotate(0deg) translate(2px, -2px);
    }

    60% {
        transform: rotate(5deg) translate(2px, -2px);
    }

    100% {
        transform: rotate(0deg) translate(0, 0);
    }
}

/* Keyboard */
.keyboard {
    position: absolute;
    bottom: 50px;
    left: 40%;
    transform: translateX(-50%);
    width: 360px;
    height: 125px;
    background: linear-gradient(145deg, #000a00, #000500);
    border: 3px solid var(--border-color);
    box-shadow: inset 0 2px 15px rgba(0, 255, 13, 0.1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px 5px 10px 5px;
    z-index: 10;
    cursor: pointer;
}

.key-row {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.key {
    text-align: center;
    width: 20px;
    height: 20px;
    background: linear-gradient(145deg, #001a00, #000d00);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5), 0 0 8px rgba(0, 255, 13, 0.2);
    position: relative;
}

.key::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 40%;
    background: linear-gradient(180deg, rgba(0, 255, 13, 0.1), transparent);
    border-radius: 2px;
}

.key.active {
    background: linear-gradient(145deg, #003300, #001a00);
    box-shadow: 0 0 15px var(--text-color), 0 0 25px var(--border-color), inset 0 0 10px rgba(0, 255, 13, 0.3);
    transform: translateY(2px);
}

.key.wide {
    width: 48px;
}

.key.wider {
    width: 65px;
}

.key.wider2 {
    width: 31px;
}

.key.extra-wide {
    width: 100px;
}

/* Background effects */
.bg-code {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    font-family: monospace;
    color: var(--text-color);
    font-size: 11px;
    overflow: hidden;
    pointer-events: none;
}

.bg-line {
    position: absolute;
    white-space: nowrap;
    animation: bg-scroll 20s linear infinite;
    text-shadow: 0 0 5px var(--text-color);
}

.bg-line:first-child {
    top: 50px;
}

.bg-line:last-child {
    top: 250px;
    animation-delay: -10s;
}

@keyframes bg-scroll {
    from {
        transform: translateX(400%);
    }

    to {
        transform: translateX(-150%);
    }
}

/* Mouse */
.mouse {
    position: absolute;
    bottom: 110px;
    transform: rotate(-10deg);
    right: 280px;
    width: 50px;
    height: 70px;
    background: linear-gradient(145deg, #001a00, #000d00);
    border: 2px solid var(--border-color);
    border-radius: 20px 20px 25px 25px;
    box-shadow: 0 0 15px rgba(0, 255, 13, 0.3), inset 0 2px 10px rgba(0, 255, 13, 0.1);
    z-index: 10;
    transition: transform 0.05s linear;
    cursor: pointer;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 20px;
    background: var(--border-color);
    opacity: 0.5;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 12px;
    background: var(--text-color);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--text-color);
    animation: mouse-scroll 4s ease-in-out infinite;
}

@keyframes mouse-scroll {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(8px);
    }

    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(0);
    }
}

/* Mousepad */
.mousepad {
    background-color: #000;
    position: absolute;
    bottom: 30px;
    right: 170px;
    width: 650px;
    height: 180px;
    z-index: 9;
    border-radius: 10px;
    border: #0c790c 2px solid;
}

#eShark-logo {
    position: absolute;
    height: 15px;
    bottom: 10px;
    left: 10px;
    filter: brightness(0.9);
}

/* Desklamp */
#lampbase {
    bottom: 220px;
    right: 80px;
    position: absolute;
    height: 7px;
    width: 80px;
    background-color: #000;
    border: 2px solid #22ac22;
    border-radius: 2px;
}

#lampbase::after {
    filter: blur(1px);
    content: "";
    position: absolute;
    right: 10px;
    top: -185px;
    width: 90px;
    height: 170px;
    border: 4px solid #000;
    border-color: transparent transparent transparent rgb(0, 0, 0);
    border-radius: 0 0 0 99px;
    transform: rotate(180deg);
}

#lampbase::before {
    filter: blur(1px);
    content: "";
    position: absolute;
    right: 5px;
    top: -180px;
    width: 110px;
    height: 170px;
    border: 4px solid #000;
    border-color: transparent transparent rgb(0, 0, 0) transparent;
    border-radius: 0 0 0 100px;
    transform: rotate(180deg);
}

#lamp {
    bottom: 400px;
    right: 180px;
    position: absolute;
    height: 7px;
    width: 80px;
    background-color: #000;
    border: 2px solid var(--border-color);
    border-radius: 2px;
    z-index: 10;
}

/* Light */
#lamp::after {
    content: "";
    position: absolute;
    top: 8px;
    right: -30px;
    width: 140px;
    height: 150px;
    background: radial-gradient(ellipse at top, rgba(145, 255, 145, 0.308) 0%, rgba(0, 255, 0, 0) 80%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 100%, 0% 100%);
    animation: lamp-flicker 1s infinite;
}

#lamp.off::after {
    opacity: 0;
    transition: opacity 0.3s;
    animation: none !important;
}

/* Blob */
#lamp::before {
    content: "";
    position: absolute;
    left: 150px;
    top: 164px;
    width: 25px;
    height: 14px;
    border-radius: 7px 7px 0 0;
    background-color: #000;
    border: 2px solid #187418;
    z-index: 100;
    border-bottom: none;
}

@keyframes lamp-flicker {

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        opacity: 1;
    }

    20%,
    22%,
    24%,
    55% {
        opacity: 0.2;
    }
}

/* Watering Can & Water */
.watering-can-wrapper {
    position: absolute;
    left: 90px;
    top: 90px;
    width: 70px;
    height: 55px;
    z-index: 100;
}

.watering-can {
    position: absolute;
    width: 70px;
    height: 55px;
    background: rgb(187, 30, 103);
    border-radius: 30px 30px 10px 10px;
    transform-origin: right center;
    transform: rotate(0deg) scaleX(-1);
    box-shadow:
        0 0 10px rgba(0, 0, 0, 0.3),
        inset 0 -10px 20px rgb(82, 1, 78);
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 2;
    opacity: 0;
}

.watering-can::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 20px;
    width: 30px;
    height: 15px;
    background: rgb(187, 30, 103);
    border-radius: 5px;
    transform: rotate(10deg);
    box-shadow:
        0 0 10px rgba(0, 0, 0, 0.3),
        inset 0 0 10px black;
}

.watering-can::before {
    content: '';
    position: absolute;
    left: -20px;
    top: -15px;
    width: 70px;
    height: 60px;
    border: 5px solid rgb(190, 22, 100);
    border-right: none;
    border-bottom: none;
    border-radius: 50%;
    box-sizing: border-box;
    transform: rotate(-5deg);
}

.watering-can.pour {
    transform: rotate(-25deg) scaleX(-1);
    opacity: 1;
}

.drops {
    position: absolute;
    top: 35px;
    left: 55px;
    z-index: 1;
    pointer-events: none;
}

.drops .drop {
    position: absolute;
    width: 6px;
    height: 10px;
    background: #66ccff;
    border-radius: 50%;
    opacity: 0;
}

.drops.active .drop {
    animation: water 1s linear infinite;
}

.drops .drop:nth-child(1) {
    animation-delay: 0s;
}

.drops .drop:nth-child(2) {
    animation-delay: 0.2s;
}

.drops .drop:nth-child(3) {
    animation-delay: 0.4s;
}

.drops .drop:nth-child(4) {
    animation-delay: 0.6s;
}

.drops .drop:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes water {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 1;
    }

    20% {
        transform: translateY(10px) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(80px) scale(0.7);
        opacity: 0;
    }
}

/* Water Overflow Animation */
.water-overflow1,
.water-overflow2 {
    position: absolute;
    background: red;
    border-radius: 4px;
    opacity: 1;
    pointer-events: none;
    z-index: 10;
}

.water-overflow1 {
    top: 170px;
    left: 100px;
    width: 70px;
    height: 15px;
}

.water-overflow1.active {
    animation: flow1 2s forwards;
}

@keyframes flow1 {
    0% {
        top: 60px;
        left: 100px;
        height: 0;
        opacity: 1;
    }

    30% {
        height: 20px;
    }

    60% {
        top: 165px;
        left: 100px;
        width: 70px;
        height: 15px;
    }

    100% {
        top: 200px;
        left: 140px;
        height: 60px;
        opacity: 0;
    }
}

.plant,
.plant-rim,
.plant-pot {
    position: absolute;
    cursor: pointer;
}

/* Sunflower on watering can */
.sunflower {
    position: relative;
    margin: 10px auto;
    height: 10px;
    width: 10px;
    filter: brightness(0.9);
}

.sunflower-center {
    position: relative;
    background-color: brown;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    border: 1px solid black;
    z-index: 2;
    transform: translate(30px, 20px);
}

.petal {
    border: 1px solid black;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 13px;
    background-color: gold;
    border-radius: 50% 50% 0 0;
    transform-origin: center bottom;
    z-index: 1;
}

.petal:nth-child(1) {
    transform: translate(-50%, -100%) rotate(0deg);
}

.petal:nth-child(2) {
    transform: translate(-50%, -100%) rotate(60deg);
}

.petal:nth-child(3) {
    transform: translate(-50%, -100%) rotate(120deg);
}

.petal:nth-child(4) {
    transform: translate(-50%, -100%) rotate(180deg);
}

.petal:nth-child(5) {
    transform: translate(-50%, -100%) rotate(240deg);
}

.petal:nth-child(6) {
    transform: translate(-50%, -100%) rotate(300deg);
}

/* Shelf */
.shelf {
    position: absolute;
    top: 240px;
    left: 80px;
    height: 10px;
    width: 300px;
    background-color: #3d2d00;
    border: 2px solid #815112;
    border-radius: 2px;
    box-shadow: 0px 25px 30px #000000a4;
}

.shelf::before,
.shelf::after {
    content: "";
    position: absolute;
    top: 10px;
    height: 10px;
    width: 30px;
    background-color: #3d3200;
    border: 2px solid #815a12;
    border-top: none;
    filter: brightness(0.7);
    box-shadow: 0px 25px 30px #000000a4;
}

.shelf::before {
    left: 30px;
}

.shelf::after {
    right: 30px;
}

/* Plant */
.plant {
    position: absolute;
    top: 130px;
    left: 130px;
    width: 10px;
    height: 60px;
    background-color: #037d12;
    border-radius: 10px;
    transform-origin: bottom center;
    z-index: 5;
    animation: sway 4s ease-in-out infinite alternate;
}

.plant::before {
    content: "";
    position: absolute;
    bottom: 40px;
    left: -20px;
    width: 20px;
    height: 50px;
    background-color: #05a61a;
    border-radius: 50% 50% 0 50%;
    transform: rotate(-35deg);
    box-shadow: inset -3px -3px 5px #003f07;
}

.plant::after {
    content: "";
    position: absolute;
    bottom: 40px;
    right: -20px;
    width: 20px;
    height: 50px;
    background-color: #05a61a;
    border-radius: 50% 50% 50% 0;
    transform: rotate(35deg);
    box-shadow: inset 3px -3px 5px #003f07;
}

@keyframes sway {

    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

.plant-pot {
    position: absolute;
    top: 175px;
    left: 100px;
    height: 60px;
    width: 70px;
    background-color: #3b230c;
    border: 3px solid #663c15;
    border-radius: 2px;
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
    transform: rotate(180deg);
    z-index: 100;
}

.plant-rim {
    position: absolute;
    top: 175px;
    left: 90px;
    height: 18px;
    width: 90px;
    background-color: #502f11;
    border: 1px solid #502f11;
    border-radius: 2px;
    z-index: 10;
    box-shadow: 0px 5px 10px #00000034;
    z-index: 101;
}

/* Books on shelf */
.book {
    position: absolute;
    width: 20px;
    height: 80px;
    border-radius: 2px;
    filter: grayscale(0.5);
    perspective: 800px;
    transform-origin: left center;
}

.book::after {
    position: absolute;
    content: "";
    bottom: 75%;
    background: rgb(228, 228, 228);
    width: 20px;
    height: 5px;
}

.book-cover,
.book-pages {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    backface-visibility: hidden;
}

.book-cover {
    background-color: #4495ff;
    border: 1px solid #0055cc;
    transform-origin: left center;
    transform: rotateY(0deg);
    transition: transform 1s ease;
}

.book-pages {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fcf0c2;
    z-index: -1;
    pointer-events: none;
}

/* Scribble lines */
.book-pages::before,
.book-pages::after {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    height: 1px;
    background: black;
    top: 20%;
    box-shadow:
        0 5px black,
        0 10px black,
        0 15px black,
        0 20px black,
        0 25px black,
        0 30px black,
        0 35px black,
        0 40px black,
        0 45px black,
        0 50px black;
    opacity: 0.3;
}


.book1-hitbox:hover .book-cover,
.book2-hitbox:hover .book-cover,
.book3-hitbox:hover .book-cover,
.book4-hitbox:hover .book-cover {
    transform: rotateY(-130deg);
}

.book::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #ff8800;
    transform: translateX(-50%);
    box-shadow: 0 0 10px #000000, 0 0 20px #000000;
}

/* book1 */
.book1 {
    right: -20px;
    top: 10px;
    transform: rotate(-90deg);
    transition: transform 2s ease, right 1s ease, top 1s ease, width 1s ease;
    z-index: 10;
    transform-origin: bottom left;
}

.book1-hitbox:hover .book1,
.book2-hitbox:hover .book2,
.book3-hitbox:hover .book3 {
    right: 0px;
    transform: rotate(0deg);
    top: 0px;
    width: 100px;
    z-index: 1000;
}

.book1-hitbox {
    position: absolute;
    /*background-color: red;*/
    height: 90px;
    width: 100px;
    top: 147px;
    left: 180px;
}

/* book2 */
.book2 {
    top: 97px;
    left: 0px;
    transition: right 1s ease, top 1s ease, width 1s ease, left 0.5s ease, transform 1s ease;
}

.book2-hitbox {
    position: absolute;
    /*background-color: rgb(229, 255, 0);*/
    height: 180px;
    width: 20px;
    top: 60px;
    left: 283px;
}

/* book3 */
.book3 {
    top: 97px;
    left: 0.5px;
    transition: transform 1s ease, right 1s ease, top 1s ease, width 1s ease, left 0.5s ease;
}

.book3-hitbox {
    position: absolute;
    /*background-color: rgb(0, 238, 255);*/
    height: 180px;
    width: 20px;
    top: 60px;
    left: 306px;
}

/* book4 */
.book4 {
    top: 98px;
    left: 6px;
    transform: rotate(-10deg);
    transition: transform 1s ease, left 1s ease, top 1s ease, width 1s ease;
}

.book4-hitbox {
    position: absolute;
    /*background-color: rgb(0, 255, 13);*/
    height: 180px;
    width: 35px;
    top: 60px;
    left: 330px;
}

.book4-hitbox:hover .book4 {
    left: 0px;
    transform: rotate(0deg);
    top: 0px;
    width: 100px;
}

/* Pictures & Frames & Images */
.pic {
    border: 2px solid #05a61a;
    background-color: #000;
    position: absolute;
}

.frame {
    position: relative;
    border: 1px solid #05a61a;
    margin: auto;
    margin-top: 9px;
    background:
        radial-gradient(circle at top left, #05a61a55, transparent 60%),
        radial-gradient(circle at bottom right, #00ff9955, transparent 60%);
    box-shadow:
        inset 0 0 15px #05a61a44,
        0 0 20px #05a61a33;
    z-index: 100;
}

#img1,
#img2,
#img3,
#img4,
#img5,
#img6 {
    filter: brightness(0.5) grayscale(0.6);
}

/* Top Big */
.pic1 {
    right: 145px;
    height: 110px;
    width: 140px;
    top: 35px;
}

.frame1,
#img1 {
    height: 90px;
    width: 120px;
}

#img1 {
    transform: translate(10px, -90px);
    position: relative;
    z-index: 1;
}

/* Top Right Medium */
.pic2 {
    right: 35px;
    height: 100px;
    width: 100px;
    top: 35px;
}

.frame2,
#img2 {
    height: 80px;
    width: 80px;
}

#img2 {
    transform: translate(10px, -80px);
    position: relative;
    z-index: 1;
}

/* Top Tall */
.pic3 {
    right: 395px;
    height: 120px;
    width: 80px;
    top: 35px;
}

.frame3,
#img3 {
    height: 100px;
    width: 60px;
}

#img3 {
    transform: translate(10px, -100px);
    position: relative;
    z-index: 1;
}

/* Top Left Medium */
.pic4 {
    right: 295px;
    height: 70px;
    width: 90px;
    top: 35px;
}

.frame4,
#img4 {
    height: 50px;
    width: 70px;
}

#img4 {
    transform: translate(10px, -50px);
    position: relative;
    z-index: 1;
}

/* Bottom Tall */
.pic5 {
    right: 35px;
    height: 110px;
    width: 80px;
    top: 145px;
}

.frame5,
#img5 {
    height: 90px;
    width: 60px;
}

#img5 {
    transform: translate(10px, -90px);
    position: relative;
    z-index: 1;
}

/* Bottom Wide */
.pic6 {
    right: 125px;
    height: 80px;
    width: 190px;
    top: 155px;
}

.frame6,
#img6 {
    height: 60px;
    width: 170px;
}

#img6 {
    transform: translate(10px, -60px);
    position: relative;
    z-index: 1;
}

/* Power Button */
.power-button {
    position: absolute;
    bottom: 0px;
    width: 15px;
    height: 7px;
    right: 6px;
    background-color: rgb(170, 0, 0);
    z-index: 10000;
    border: 1px black solid;
    cursor: pointer;
    border-radius: 50px;
    transition: background-color 0.2s ease-in-out;
}

.power-button:hover {
    background-color: red;
}

/* Monitor */
.monitor {
    position: absolute;
    bottom: 230px;
    left: 45%;
    transform: translateX(-50%);
    width: 320px;
    height: 200px;
    background: black;
    border: 4px solid var(--border-color);
    box-shadow: 0 0 40px rgba(0, 255, 13, 0.6), inset 0 0 15px rgba(0, 255, 13, 0.2);
    border-radius: 8px 8px 0 0;
}

.monitor::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: black;
    border: 2px solid var(--border-color);
    border-top: none;
}

/* Overlay */
.monitor-zoom-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.monitor-zoom-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* LG logo */
#LG-logo {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    height: 10px;
    filter: brightness(0.8);
    cursor: pointer;
}

#LG-logo:hover {
    filter: brightness(1.2);
}

.screen {
    width: 96%;
    height: 90%;
    margin: 2%;
    background: #051505;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(0, 255, 13, 0.5);
    border-radius: 4px;
    border: 1px solid black;
}

/* Code on screen */
@keyframes flicker {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.90;
    }
}

@keyframes screen-scroll {

    0%,
    100% {
        transform: translateY(100%);
    }

    50% {
        transform: translateY(-200%);
    }
}

.code-line {
    color: var(--text-color);
    font-size: 8px;
    font-family: monospace;
    text-shadow: 0 0 5px var(--text-color);
    padding: 3px 8px;
    animation: flicker 0.15s infinite alternate, screen-scroll 4s linear infinite;
}

@keyframes typewriter-blink {

    0%,
    100% {
        border-color: transparent;
    }

    50% {
        border-color: var(--text-color);
    }
}

/* Window */
.screen {
    position: relative;
    width: 305px;
    height: 180px;
    overflow: hidden;
    background-color: #111;
}

/* Tray */
.tray {
    width: 100%;
    height: 18px;
    padding: 0 3px;
    color: rgb(81, 177, 255);
    text-shadow: none;
    background-color: rgba(87, 87, 87, 0.192);
    position: relative;
    top: 90%;
    animation: flicker 0.15s infinite alternate;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

/* App Logos */
.app-logos {
    float: left;
    margin-left: 5px;
    width: 140px;
}

.app-logos-right {
    float: right;
    margin-right: 5px;
    padding: 2px 5px;
}

.app-logos span,
.app-logos-right span {
    cursor: pointer;
    padding-top: 2px;
    transition: background-color 0.2s, color 0.2s;
    font-size: 10px;
    border-radius: 3px;
}

.app-logos span {
    padding: 3px;
    margin-right: -6px;
}

/* Current window - tray */
#paintIcon.current-window,
#cmdIcon.current-window,
#musicIcon.current-window,
#filesIcon.current-window,
#volumeIcon.current-window,
#internetIcon.current-window {
    background-color: #ccc;
    border-radius: 4px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}

#paintIcon:hover,
#cmdIcon:hover,
#musicIcon:hover,
#filesIcon:hover,
#volumeIcon:hover,
#internetIcon:hover {
    background-color: rgba(224, 224, 224, 0.6) !important;
}

.app-logos span:hover,
.app-logos-right span:hover,
#win-logo:hover {
    background-color: rgba(224, 224, 224, 0.4);
    color: white;
}

#win-logo {
    float: left;
    padding: 0 3px;
    border-radius: 3px;
    font-weight: bolder;
}

/* Windows window */
.windows-window {
    position: absolute;
    width: 70px;
    background-color: rgba(30, 30, 30, 0.95);
    color: #0f0;
    border: 1px solid rgba(0, 255, 0, 0.336);
    border-radius: 3px;
    padding: 4px;
    bottom: 15px;
    left: 0px;
    font-size: 10px;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 110;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    opacity: 0;
}

.windows-window .power-option {
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 4px;
    margin: 1px 0;
}

.windows-window .power-option:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.sleep-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10000;
}

.sleep-screen.active {
    opacity: 1;
    pointer-events: all;
}

/* Search window */
.search-window {
    position: absolute;
    width: 260px;
    height: 120px;
    background-color: rgba(30, 30, 30, 0.95);
    color: #0f0;
    border: 1px solid #0f0;
    border-radius: 6px;
    padding: 10px;
    bottom: 10px;
    ;
    left: 0px;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
    opacity: 0;
}

.search-window input {
    width: 95%;
    padding: 6px;
    border-radius: 4px;
    border: 1px solid #0f0;
    background: transparent;
    color: #0f0;
    outline: none;
    white-space: pre;
}

.search-window .results {
    margin-top: 8px;
    max-height: 80px;
    overflow-y: auto;
    font-size: 12px;
}

.search-window .results div {
    padding: 4px 6px;
    cursor: pointer;
    border-radius: 4px;
}

.search-window .results div:hover {
    background-color: rgba(0, 255, 0, 0.2);
}

/* Internet window */
.internet-window {
    position: absolute;
    bottom: 15px;
    right: 0px;
    margin: 0;
    background-color: rgb(44, 44, 44);
    width: 85px;
    height: 85px;
    overflow-y: auto;
    padding: 5px;
    border: 1px black solid;
    font-size: 10px;
    border-radius: 5px 0px 0px 0px;
    opacity: 0;
}

.internet-window h4 {
    font-size: 12px;
    text-align: center;
    line-height: 0;
    margin-top: 10px;
    text-decoration: underline wavy;
}

.internet-window::-webkit-scrollbar {
    width: 5px;
}

/* Volume window */
.volume-window {
    position: absolute;
    bottom: 15px;
    right: 0px;
    margin: 0;
    background-color: rgb(44, 44, 44);
    width: 110px;
    height: 35px;
    overflow-y: auto;
    padding: 5px;
    border: 1px black solid;
    font-size: 12px;
    overflow-x: hidden;
    border-radius: 5px 0px 0px 0px;
    opacity: 0;
}

.volume-window::-webkit-scrollbar {
    width: 5px;
}

.volume-text {
    width: min-content;
    margin: 0;
    text-decoration: underline wavy;
}

.volume-window input {
    width: 105px;
    margin-top: 5px;
    height: 10px;
}

/* WINDOWS */
/* window 1 - cmd */
.window1 {
    position: absolute;
    top: 20px;
    left: 20px;
    margin: 0;
    background-color: rgb(44, 44, 44);
    width: 190px;
    height: 110px;
    overflow: hidden;
}

.title-bar1,
.title-bar2,
.title-bar3,
.title-bar4,
.title-bar5 {
    cursor: grab;
    position: absolute;
    width: 190px;
    height: 13px;
    color: white;
    text-shadow: none;
    background-color: rgb(90, 90, 90);
    line-height: 0.9;
    filter: brightness(0.9);
    box-shadow: 0px 10px 37px 3px rgba(0, 0, 0, 0.452);
    z-index: 10;
    justify-content: flex-end;
    display: flex;
    border-bottom: 1px solid black;
    transition: width 0.2s ease;
    ;
}

.title-bar1.dragging,
.title-bar2.dragging,
.title-bar3.dragging,
.title-bar4.dragging,
.title-bar5.dragging {
    cursor: grabbing;
}

.title-bar1 span,
.title-bar2 span,
.title-bar3 span,
.title-bar4 span,
.title-bar5 span {
    cursor: pointer;
    padding: 0 5px;
}

.title-bar1 span:hover,
.title-bar2 span:hover,
.title-bar3 span:hover,
.title-bar4 span:hover,
.title-bar5 span:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.title-bar1 .close1:hover,
.title-bar2 .close2:hover,
.title-bar3 .close3:hover,
.title-bar4 .close4:hover,
.title-bar5 .close5:hover {
    background-color: rgba(255, 0, 0, 0.6) !important;
}

.window1,
.window2,
.window3,
.window4,
.window5,
.volume-window,
.internet-window {
    transition: opacity 0.3s ease, height 0.2s ease, width 0.2s ease, top 0.2s ease, left 0.2s ease;
    pointer-events: none;
    opacity: 0;
}

.window1.active,
.window2.active,
.window3.active,
.window4.active,
.window5.active,
.volume-window.active,
.internet-window.active {
    opacity: 1;
    pointer-events: auto;
    animation: flicker 0.15s infinite alternate;
}

#text-here {
    font-family: monospace;
    color: #0f0;
    outline: none;
    white-space: pre;
}

#cursor {
    display: inline-block;
    width: 8px;
    color: #0f0;
    animation: blinks 1s steps(2, start) infinite;
}

@keyframes blinks {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* window 2 - paint */
.window2 {
    position: absolute;
    top: 30px;
    left: 30px;
    margin: 0;
    background-color: rgba(66, 66, 66, 0.75);
    width: 190px;
    height: 110px;
    overflow: hidden;
}

.paint-toolbar {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
    background: #aaa;
    border-bottom: 1px solid #777;
    margin-top: 10px;
    height: 20px;
}

.paint-toolbar .tool {
    border: none;
    background: #e2e2e2;
    padding: 1px 1px;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.2s;
    height: 20px;
    width: 20px;
}

.paint-toolbar .tool:hover {
    background: #bbb;
}

.paint-toolbar .tool.selected {
    background: #888;
    color: white;
}

#paintCanvas {
    display: block;
    background: #fff;
    border: 1px solid #555;
    cursor: crosshair;
}

/* Size */
.size-dropdown {
    position: relative;
    width: 40px;
}

#sizeDropdownBtn {
    width: 100%;
    padding: 4px;
    height: 15px;
    top: 50%;
    background: #f3f3f3;
    border: 1px solid #999;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

#sizeDropdownBtn:hover {
    background: #e2e2e2;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 20px;
    left: 0;
    background: #fefefe;
    border: 1px solid #aaa;
    width: 40px;
    z-index: 10000;
}

.dropdown-item {
    padding: 6px 4px;
    cursor: pointer;
    display: flex;
    justify-content: center;
}

.dropdown-item:hover {
    background: #d9e6ff;
    border-left: 3px solid #4a90e2;
}

.line {
    width: 40px;
    background: black;
    border-radius: 2px;
}

.l1 {
    height: 2px;
}

.l2 {
    height: 4px;
}

.l3 {
    height: 6px;
}

.l4 {
    height: 8px;
}

/* window 3 - music */
.window3 {
    position: absolute;
    top: 40px;
    left: 40px;
    margin: 0;
    background-color: rgba(66, 66, 66, 0.9);
    width: 190px;
    height: 110px;
    overflow: hidden;
    color: rgb(30, 255, 0);
}

.music-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    margin-top: 15px;
}

.left {
    flex-shrink: 0;
}

.album-art img {
    width: 70px;
    height: 70px;
    border-radius: 6px;
}

.right {
    flex: 1;
    margin-left: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#songTitle {
    font-size: 11px;
    margin: 0;
}

#songArtist {
    font-size: 11px;
    color: #ccc;
    margin: 2px 0 6px 0;
}

.controls {
    display: flex;
    gap: 4px;
}

.controls button {
    background: #555;
    border: none;
    color: white;
    padding: 3px 6px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.controls button:hover {
    background: #666;
}

#progressBar {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #ffffff;
    border-radius: 3px;
    outline: none;
    margin: 10px 0;
    cursor: pointer;
}

#progressBar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 7px;
    background: #0f0;
    height: 5px;
    cursor: pointer;
    transition: background 0.2s;
}

#progressBar::-webkit-slider-thumb:hover {
    background: #0f0a;
}

#progressBar::-moz-range-thumb {
    width: 7px;
    height: 5px;
    background: #0f0;
    cursor: pointer;
}

#progressBar::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, #0f0 0%, #0f0 var(--progress, 0%), #ff0000 var(--progress, 0%), #2f00ff 100%);
}

/* window 4 - File Manager */
.window4 {
    position: absolute;
    top: 50px;
    left: 50px;
    margin: 0;
    background-color: rgba(66, 66, 66, 0.9);
    width: 190px;
    height: 110px;
    overflow: hidden;
    color: rgb(30, 255, 0);
}

.file-manager-content {
    display: flex;
    margin-top: 10px;
    height: 110px;
}

/* Sidebar */
.sidebar {
    width: 38px;
    background-color: #0a0a0a;
    border-right: 1px solid #0f0;
    padding: 2px;
    font-size: 7px;
    overflow-y: scroll;
}

.sidebar::-webkit-scrollbar {
    width: 3px;
}

.sidebar h4 {
    margin: 3px 0;
    font-size: 9px;
    text-transform: uppercase;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar li {
    margin: 2px 0;
    cursor: pointer;
}

.sidebar li:hover {
    background-color: #0f0;
    color: #000;
}

/* File area */
.file-view {
    flex: 1;
    padding: 5px;
}

.toolbar {
    display: flex;
    gap: 4px;
    margin-bottom: 6px;
}

.pathbar {
    flex: 1;
    background: #000;
    color: #0f0;
    border: 1px solid #0f0;
    font-size: 10px;
    padding: 2px 4px;
    outline: none;
    white-space: pre;
}

/* Files grid */
.file-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    gap: 5px;
    overflow-y: auto;
    overflow-x: hidden;
}

.file {
    text-align: center;
    font-size: 8px;
    cursor: pointer;
}

.file img {
    width: 10px;
    height: 10px;
    display: block;
    margin: 0 auto 2px;
}

.file:hover {
    background-color: #0f0;
    color: #000;
}

/* window5 - settings */
.window5 {
    position: absolute;
    top: 50px;
    left: 60px;
    margin: 0;
    background-color: rgba(66, 66, 66, 0.9);
    width: 190px;
    height: 110px;
    color: rgb(30, 255, 0);
}

.settings-content {
    height: 90px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    overflow: scroll;
    gap: 8px;
}

.settings-content::-webkit-scrollbar {
    width: 5px;
}

.settings-content h4 {
    margin: 0 0 6px 0;
    font-size: 12px;
}

.setting-item {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    gap: 4px;
}

.setting-item input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #ffffff;
    border-radius: 3px;
    cursor: pointer;
}

.setting-item input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 7px;
    height: 5px;
    background: #0f0;
    cursor: pointer;
}

.setting-item select {
    background: #555;
    color: #0f0;
    border: none;
    padding: 2px 4px;
    border-radius: 3px;
    cursor: pointer;
}