@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Fira+Code:wght@300..700&family=Handlee&display=swap');

:root {
    --lamp-color: rgb(88, 88, 88);
    --table-depth-color: #423928;
    --window-color: #A8B6C7;
    --leaf-color: linear-gradient(to bottom right, #4CAF50, #1f6323);
    --cup-color: #F78438;
    --floor-color: #5c528bee;
}

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

body {
    background-color: #D9E1EE;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.canvas {
    position: relative;
    width: 100%;
    height: 100%;
}

.clock {
    width: 100px;
    height: 100px;
    background-color: rgb(255, 255, 255);
    margin: 80px 50px;
    transform: scale(0.8);
    position: relative;
    border: 4px solid #cacaca;
    outline: 6px solid #272627;
}

.hourHand {
    position: absolute;
    left: 50%;
    top: 8%;
    height: 2.5rem;
    transform-origin: bottom;
    animation: ticking 43200s linear infinite;
}

.minHand {
    position: absolute;
    top: 50%;
    right: 11%;
    width: 2.2rem;
    transform-origin: left;
    animation: ticking 3600s linear infinite;
}

.secHand {
    position: absolute;
    bottom: 14%;
    right: 48%;
    height: 2rem;
    color: rgb(197, 40, 40);
    transform-origin: top;
    animation: ticking 60s steps(60) infinite;
}

@keyframes ticking {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.floor {
    z-index: 1;
    position: absolute;
    bottom: 0;
    background: var(--floor-color);
    width: 100%;
    height: 5em;
    padding: 5px 10px;
}

.floorDepth {
    display: inline-block;
    margin: 8px 28px;
    height: 13px;
    border-radius: 50px;
}

.wallLamps {
    z-index: 10;
    position: absolute;
    top: 0;
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: center;
    gap: 400px;
}

.lamp {
    width: 8px;
    height: 80%;
    background: var(--lamp-color);
    position: relative;
}

.lamptop {
    position: absolute;
    top: 90%;
    left: -6px;
    width: 20px;
    height: 20px;
    background: var(--lamp-color);
}

.lampHead {
    display: block;
    position: relative;
    top: 90%;
    left: -40px;
    width: 100px;
    height: 20px;
    border-radius: 50% 50% 0 0;
    background: var(--lamp-color);
    box-shadow: inset 0 0 0 1000px rgba(166, 151, 233, 0.3);
    cursor: pointer;
}

.lampHead::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 300px;
    background: radial-gradient(ellipse at top,rgba(255, 255, 180, 0.3),rgba(255, 255, 180, 0) 80%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    filter: blur(5px);
    z-index: -1;
    pointer-events: none;
}

.lampHead:hover::after {
    background: radial-gradient(ellipse at top,rgba(255, 255, 200, 0.5),rgba(255, 255, 200, 0) 80%);
}

.windows {
    position: absolute;
    top: 15%;
    right: 34%;
    height: 160px;
    width: 30em;
    border: 10px solid var(--window-color);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #cbe3fc;
}

.window {
    width: 100%;
    height: 100%;
    color: var(--window-color);
}

.vase {
    z-index: 10;
    position: absolute;
    right: 30px;
    bottom: 5%;
    width: 100px;
    height: 120px;
    border-radius: 10px 10px 40% 40%;
    background: #50442d;
    transform: scale(0.6);
    border-top: 20px solid #756546;
}

.branch {
    display: block;
    position: absolute;
    top: -120px;
    left: 30%;
    width: 3px;
    height: 100px;
    background: #09790f;
    transform: skew(10deg);
}

.leaf {
    display: block;
    position: absolute;
    top: -80px;
    left: -40px;
    width: 40px;
    height: 100px;
    background: var(--leaf-color);
    border-radius: 50% 50% 50% 50%;
    transform: rotate(-30deg);
    box-shadow: inset -5px 0 10px rgba(0, 0, 0, 0.1);
}

.branch3 {
    display: block;
    position: absolute;
    top: -170px;
    left: 80%;
    width: 3px;
    height: 150px;
    background: #09790f;
    transform: skew(-10deg);
}

.leaf3 {
    display: block;
    position: absolute;
    top: -80px;
    left: -10px;
    width: 50px;
    height: 120px;
    background: var(--leaf-color);
    border-radius: 50% 50% 50% 50%;
    transform: rotate(20deg);
    box-shadow: inset -5px 0 10px rgba(0, 0, 0, 0.1);
}

.branch2 {
    display: block;
    position: absolute;
    top: -60px;
    left: 50%;
    width: 3px;
    height: 40px;
    background: #09790f;
    transform: skew(-10deg);
}

.leaf2 {
    display: block;
    position: absolute;
    top: -40px;
    left: -10px;
    width: 30px;
    height: 50px;
    background: var(--leaf-color);
    border-radius: 50% 50% 50% 50%;
    transform: rotate(10deg);
    box-shadow: inset -5px 0 10px rgba(0, 0, 0, 0.1);
}

.table {
    z-index: 10;
    left: 200px;
    bottom: 3em;
    position: absolute;
    justify-self: center;
    width: 60%;
    height: 16rem;
    border: 20px solid #685A3E;
    border-bottom: 0;
}

.depth {
    width: 53rem;
    height: 17.3rem;
    border-top: 20px solid var(--table-depth-color);
    border-left: 20px solid var(--table-depth-color);
    border-right: 20px solid var(--table-depth-color);
    position: absolute;
    top: -40px;
    right: -30px;
}

.computer {
    display: inline-block;
    position: relative;
    bottom: 88%;
    width: 200px;
    height: 130px;
    border: 6px solid #414141;
    background: #93d2ff;
    border-radius: 3px;
}

.stand {
    position: absolute;
    bottom: -40px;
    left: 45%;
    width: 10px;
    height: 40px;
    border: 6px solid #414141;
}

.holder {
    position: absolute;
    top: 28px;
    width: 60px;
    height: 20px;
    right: -30px;
    border-radius: 50%;
    background: #303030;
}

.whiteBoard {
    margin: 80px 50px;
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 180px;
    border: 6px solid rgb(168, 168, 168);
    background: #fff;
    padding: 25px 20px;
    border-radius: 5px;
}

.whiteboardDepth {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 250px;
    height: 180px;
    border: 6px solid rgb(65, 65, 65);
    border-radius: 5px;
}

.stickyNote {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 50px;
    padding: 10px;
    margin: 5px;
    box-shadow: 5px 5px 0px rgb(236, 236, 236);
}

.bhead {
    position: absolute;
    top: 4%;
    left: 34%;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: "Handlee", cursive;
}

.stickyNote small {
    font-family: "Handlee", cursive;
    font-size: 0.55rem;
    font-weight: 600;
    color: #2c2c2c;
    display: block;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0.5px;
}

.chair {
    position: absolute;
    bottom: 180px;
    right: 390px;
    z-index: 10;
    width: 130px;
    height: 200px;
    border-right: 30px solid #1C302F;
    border-bottom: 30px solid #1C302F;
    border-radius: 30px;
}

.chairHandle {
    position: relative;
    top: 120px;
    left: 20px;
    z-index: 10;
    width: 100px;
    height: 80px;
    border: 15px solid #1C302F;
    border-radius: 30px;
}

.chairHandledepth {
    position: absolute;
    top: 385px;
    left: 858px;
    width: 100px;
    height: 80px;
    border: 15px solid #132020;
    border-radius: 30px;
    z-index: 8;
}

.chairStand {
    display: block;
    position: absolute;
    width: 15px;
    height: 90px;
    background: #1C302F;
    bottom: -131px;
    left: 55px;
}

.standTConnector {
    display: block;
    position: absolute;
    width: 50px;
    height: 10px;
    background: #1C302F;
    border-radius: 20px;
    top: -10px;
    right: -20px;
}

.standBConnector {
    display: block;
    position: absolute;
    width: 80px;
    height: 10px;
    background: #1C302F;
    border-radius: 20px;
    bottom: -9px;
    right: -32px;
    z-index: 10;
}

.wheels {
    position: absolute;
    top: 11px;
    left: -2px;
    display: flex;
    gap: 17px;
}

.wheel {
    width: 15px;
    height: 15px;
    background: #1C302F;
    border-radius: 50%;
}

.wheel.enlarge {
    padding: 10px;
}

.cup {
    z-index: 10;
    width: 40px;
    height: 45px;
    background: var(--cup-color);
    position: absolute;
    bottom: 260px;
    right: 250px;
    border-radius: 5px;
    box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.2), 0 4px 6px rgba(0, 0, 0, 0.2);
    overflow: visible;
}

.cup::before,
.cup::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 20px;
    border-radius: 50%;
    background: rgba(122, 122, 122, 0.3);
    opacity: 0;
    animation: none;
}

.cup::after {
    left: 40%;
    height: 15px;
    background: rgba(122, 122, 122, 0.3);
}

.cup::before,
.cup::after {
    animation: steamUp 1.5s ease-in-out infinite;
    opacity: 1;
}

@keyframes steamUp {
    0% {
        transform: translateX(-50%) translateY(0) scaleX(1);
        opacity: 0.4;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        transform: translateX(-50%) translateY(-30px) scaleX(1.3);
        opacity: 0;
    }
}

.cupHolder {
    width: 30px;
    height: 30px;
    border: 5px solid var(--cup-color);
    position: absolute;
    top: 8px;
    left: 25px;
    border-radius: 50%;
    z-index: 0;
    background: transparent;
}

.cupDepth {
    position: absolute;
    left: 0;
    width: 12px;
    height: 45px;
    background: #DA6C2A;
    border-radius: 5px 0 0 5px;
}

.screen {
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
}

.codeEditor {
    width: 50%;
    background: #282C34;
}

.menubar {
    width: 100%;
    height: 10%;
    background: #282d35;
    display: flex;
    justify-content: flex-end;
    font-size: 8px;
    color: white;
    font-family: 'Fira Code', monospace;
}

.menuBtn {
    padding: 0 3px;
    height: 100%;
    cursor: pointer;
}

.menuBtn:hover {
    background: #2C313C;
}

.tabBar {
    width: 100%;
    height: 10%;
    background: #23282e;
    font-size: 7px;
    color: white;
    display: flex;
    font-weight: 300;
    font-family: 'Fira Code', monospace;
}

.tab {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #21252B;
    color: #9DA5B4;
    padding: 0 5px;
    gap: 5px;
    cursor: pointer;
}

.tab:hover {
    background-color: #2a2f36;
}

.tab.active {
    background-color: #1E2127;
    color: #ffffff;
}

.code-block {
    color: #abb2bf;
    padding: 8px 6px;
    border-radius: 10px;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 3px;
    line-height: 1.6;
    white-space: pre-wrap;
    overflow-x: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    height: 80%;
}

.code-block .comment {
    color: #5c6370;
    font-style: italic;
}

.code-block .keyword {
    color: #c678dd;
}

.code-block .string {
    color: #98c379;
}

.code-block .number {
    color: #d19a66;
}

.code-block .function {
    color: #61afef;
}

.code-block .variable {
    color: #e06c75;
}

.cursor {
    position: absolute;
    bottom: 10px;
    left: 26px;
    width: 1px;
    height: 4px;
    background: #d4d4d4;
    animation: blink 1.4s ease-in-out infinite;
    border-radius: 2px;
    opacity: 0.8;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }
}

.browser {
    width: 50%;
    background: white;
}

.browserMenubar {
    width: 100%;
    height: 10%;
    background: rgb(235, 235, 235);
    display: flex;
    justify-content: space-between;
    font-size: 8px;
    color: black;
    font-family: 'Fira Code', monospace;
    align-items: center;
}

.bmenuBtn {
    padding: 0 3px;
    height: 100%;
    cursor: pointer;
}

.bmenuBtn:hover {
    background: #bdbdbd;
}

.browserTab {
    display: flex;
    align-items: center;
    height: 100%;
    background: #e2e2e2;
    padding: 0 5px;
    font-size: 5px;
    gap: 3px;
}

.browserTab>span {
    font-size: 6px;
}

.addressbar {
    height: 10%;
    width: 100%;
    background: rgb(228, 228, 228);
    font-size: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.address {
    color: rgb(54, 54, 54);
    width: 90%;
    background: #cfcfcf;
    padding: 1px 4px;
}

.browser-body {
    padding: 2px 5px;
    font-size: 6px;
    font-family: 'Segoe UI', sans-serif;
}

.terminal {
    width: 100%;
    height: 100%;
    background: #1e1e1e;
    color: #d4d4d4;
    font-family: 'Fira Code', monospace;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
    position: relative;
}

.command {
    font-size: 6px;
    display: inline-block;
    color: #a3be8c;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 3s steps(40, end) forwards;
}

.info {
    color: #fdfdfd;
}

.ok {
    color: #00ff00;
}

.warn {
    color: #ffcc00;
}

.cline {
    font-size: 6px;
    opacity: 0;
    white-space: nowrap;
    width: 100%;
    animation: appear 2s steps(40, end) forwards;
}

.cline0 {
    animation-delay: 0s;
}

.cline1 {
    animation-delay: 3.2s;
}

.cline2 {
    animation-delay: 4.8s;
}

.cline3 {
    animation-delay: 6.4s;
}

.cline4 {
    animation-delay: 8s;
}

.cline5 {
    animation-delay: 9.6s;
}

.cline6 {
    animation-delay: 11.2s;
}

.cline7 {
    animation-delay: 12.8s;
}

.cline8 {
    animation-delay: 14.4s;
}

.cline9 {
    animation-delay: 16s;
}

.cline10 {
    animation-delay: 17.5s;
}

.cline11 {
    animation-delay: 19.8s;
}

@keyframes appear {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 60%;
    }
}

.fake-browser {
    width: 100%;
    height: 100%;
    position: absolute;
    background: #0e0e0e;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px #2a2a2a;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    font-size: 8px;
    color: #f5f5f5;
}

.browser-topbar {
    background: #1a1a1a;
    padding: 2px 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 14px;
}

.circles span {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 2px;
    border-radius: 50%;
}

.circles .red {
    background: #ff5f57;
}

.circles .yellow {
    background: #ffbd2e;
}

.circles .green {
    background: #28c840;
}

.browser-tab {
    font-size: 6px;
    color: #888;
    margin-left: auto;
    margin-right: auto;
}

.browser-body {
    flex: 1;
    padding: 8px 6px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.profile-info .hello {
    font-weight: bold;
    font-size: 8px;
    color: #e6e6e6;
}

.profile-info .desc {
    font-size: 6px;
    margin-top: 2px;
    color: #aaaaaa;
}

.links {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.link-card {
    background: #1f1f1f;
    padding: 4px;
    border-radius: 3px;
    text-decoration: none;
    color: #f5f5f5;
    font-weight: bold;
    text-align: center;
    font-size: 7px;
    border: 1px solid #333;
    transition: all 0.2s ease;
}

.link-card:hover {
    background: #2a2a2a;
    transform: scale(1.02);
}

.github {
    background: #1b1f23;
    border-color: #2d333b;
}

.devto {
    background: #1f1e1c;
    border-color: #333129;
}

.mouse {
    position: absolute;
    top: 155px;
    right: 0px;
    width: 20px;
    height: 22px;
    border-radius: 50px;
    background: #202020;
}

.mousePointer {
    position: relative;
    top: 0;
    left: 8px;
    width: 3px;
    height: 5px;
    background: white;
    border-radius: 50px;
}

.keyboard {
    position: absolute;
    top: 155px;
    width: 160px;
    height: 25px;
    background: #313131;
    border-radius: 5px;
    padding: 5px;
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
}

.key {
    width: 5px;
    height: 5px;
    background: #3a3a3a;
}

.tmenubar {
    height: 10%;
    background: #363636;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0px 5px;
    gap: 3px;
}

.closeBtn {
    background: #ff5f57;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.minimizeBtn {
    background: #ffbd2e;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.maximizeBtn {
    background: #28c840;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.tmenubar>span {
    font-size: 7px;
    margin-left: 50px;
}

.mainWindow {
    height: 90%;
    background: #252525;
    padding: 5px;
    display: flex;
    flex-direction: column;
}

.prompt {
    display: flex;
    font-size: 7px;
    color: #51a8ed;
}

.prompt>span {
    margin-left: 2px;
    font-size: 7px;
    color: white;
}

.bookshelf {
    position: absolute;
    top: 260px;
    left: 10px;
    width: 180px;
    height: 20px;
    background: #CDA179;
}

.stackedbook {
    display: flex;
    flex-direction: column;
    position: relative;
    bottom: 20px;
}

.sbook {
    position: relative;
    bottom: 25px;
    height: 15px;
    border-radius: 4px;
}

.straightbook {
    display: flex;
    position: relative;
    bottom: 30px;
}

.book {
    position: relative;
    bottom: 75px;
    display: flex;
    height: 60px;
    width: 20px;
    border-radius: 4px;
}

.shine {
    position: absolute;
    top: 3px;
    height: 3px;
    border-radius: 5px;
}

.sbook,
.book {
    transition: transform 0.3s ease-out;
    cursor: pointer;
}

.sbook:hover,
.book:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.cpu {
    position: absolute;
    top: 250px;
    left: 10px;
    width: 90px;
    height: 160px;
    background: #1B1A1B;
    border-radius: 10px;
}

.cd {
    width: 60px;
    height: 6px;
    background: #ffffff;
    position: absolute;
    top: 15px;
    left: 15px;
    border-radius: 2px;
    border: none;
}

.powerBtn {
    position: absolute;
    top: 80px;
    left: 40px;
    width: 10px;
    height: 10px;
    background: rgb(104, 104, 104);
    border-radius: 50%;
}

.pendrive {
    position: absolute;
    top: 100px;
    left: 20px;
    width: 10px;
    height: 5px;
    background: rgb(104, 104, 104);
}

.pcWire {
    position: relative;
    top: 30px;
    left: 350px;
    width: 4px;
    height: 145px;
    background: #2e2e2e;
    border-radius: 2px;
    z-index: 1;
}

.mouseWire {
    position: absolute;
    top: 199px;
    left: 99px;
    width: 50px;
    height: 70px;
    border-right: 4px solid #2e2e2e;
    border-bottom: 4px solid #2e2e2e;
    border-radius: 2px;
    z-index: 1;
}

.keyboardWire {
    position: absolute;
    top: 198px;
    left: 135px;
    width: 4px;
    height: 71px;
    background: #2e2e2e;
    border-radius: 2px;
    z-index: 1;
}