      :root {
        --bg: #111317;
        --glass: rgba(255, 255, 255, 0.6);
        --stroke: rgba(0, 0, 0, 0.08);
        --text: #191919;
        --muted: #666;
        --blue: #0a84ff;
      }

      * {
        box-sizing: border-box;
      }

      body {
        margin: 0;
        min-height: 100vh;
        overflow: hidden;
        font-family: -apple-system, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 400;
        background: #0f1116 url("../assets/wallpaper.png") center center / cover no-repeat fixed;
        color: var(--text);
      }

      .menu-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 42px;
        z-index: 20;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        background: transparent;
        color: #f7f7f7;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
        user-select: none;
      }

      .menu-left,
      .menu-right {
        display: flex;
        align-items: center;
        gap: 20px;
        font-size: 0.95rem;
      }

      .menu-left .brand {
        font-weight: 400;
        font-size: 0.95rem;
      }

      .menu-item {
        font-size: 0.95rem;
        font-weight: 400;
      }

      .menu-right {
        gap: 14px;
      }

      .status-dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #f7cb3f;
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.12);
      }

      .menu-time {
        font-size: 0.95rem;
        font-weight: 400;
        margin-left: 8px;
      }

      .desktop {
        position: relative;
        height: 100vh;
        width: 100%;
        isolation: isolate;
      }

      .hero-blur {
        position: absolute;
        inset: 10% auto auto 50%;
        width: min(46vw, 560px);
        height: min(70vh, 700px);
        transform: translateX(-50%);
        background:
          radial-gradient(circle at 48% 27%, rgba(122, 129, 145, 0.45) 0 26%, transparent 28%),
          radial-gradient(circle at 50% 55%, rgba(121, 88, 79, 0.5) 0 20%, transparent 46%),
          radial-gradient(circle at 50% 88%, rgba(8, 9, 11, 0.95) 0 27%, transparent 55%);
        filter: blur(16px) saturate(0.95);
        opacity: 0;
        border-radius: 44% 44% 48% 48%;
        z-index: 0;
      }

      .postit-note {
        position: absolute;
        left: calc(40% + 38px);
        top: 12%;
        width: min(380px, 30vw);
        min-height: 250px;
        background: #cfe8f8;
        border: 1px solid rgba(0, 0, 0, 0.28);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
        z-index: 2;
      }

      .postit-header {
        height: 22px;
        background: #b9ddf3;
        border-bottom: 1px solid rgba(0, 0, 0, 0.24);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 10px;
      }

      .postit-mini-square {
        width: 12px;
        height: 12px;
        border: 1px solid rgba(0, 0, 0, 0.3);
        display: inline-block;
      }

      .postit-header-right {
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .postit-fold {
        width: 12px;
        height: 12px;
        border-right: 1px solid rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(0, 0, 0, 0.3);
        transform: skew(-20deg);
        display: inline-block;
      }

      .postit-mini-box {
        width: 12px;
        height: 12px;
        border: 1px solid rgba(0, 0, 0, 0.3);
        display: inline-block;
      }

      .postit-body {
        padding: 16px 20px;
        color: #050505;
      }

      .postit-body p {
        margin: 0;
        font-size: 0.84rem;
        line-height: 1.3;
        font-weight: 400;
      }

      .postit-indent {
        margin-left: 56px !important;
      }

      .postit-gap {
        margin-top: 24px !important;
      }

      .postit-caret {
        display: inline-block;
        width: 1px;
        height: 30px;
        background: #111;
        margin-top: 4px;
        animation: postitBlink 1s steps(1) infinite;
      }

      @keyframes postitBlink {
        0%, 45% { opacity: 1; }
        46%, 100% { opacity: 0; }
      }

      .desktop-icons {
        position: relative;
        width: 100%;
        height: 100%;
        z-index: 1;
      }

      .desktop-widgets {
        position: absolute;
        top: 54px;
        left: 20px;
        display: grid;
        grid-template-columns: 165px 165px;
        gap: 12px;
        z-index: 2;
      }

      .widget {
        background: rgba(214, 210, 210, 0.42);
        border-radius: 16px;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 14px 26px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(12px) saturate(1.05);
        color: #111;
      }

      .time-widget .time-main {
        font-size: 1.8rem;
        font-weight: 400;
        color: #ff3fa6;
        letter-spacing: 0.02em;
      }

      .time-widget .ampm {
        font-size: 1.1rem;
        margin-left: 6px;
      }

      .time-widget .time-date {
        margin-top: 4px;
        font-size: 0.82rem;
      }

      .time-widget .time-place {
        font-size: 0.9rem;
        font-weight: 400;
        margin-top: 4px;
      }

      .confetti-widget {
        display: grid;
        place-items: center;
        padding: 12px;
        height: 165px;
      }

      .confetti-ring {
        position: relative;
        width: 120px;
        height: 120px;
        margin: 0 auto;
        border-radius: 26px;
        background: transparent;
        box-shadow: none;
        display: grid;
        place-items: center;
        overflow: hidden;
      }

      .confetti-knob {
        position: absolute;
        top: 12px;
        right: 20px;
        width: 20px;
        height: 20px;
        background: #b1919b;
        border-radius: 50%;
        box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.35);
      }

      .confetti-button {
        position: absolute;
        inset: 32px;
        border-radius: 50%;
        border: 0;
        background: radial-gradient(circle at 30% 30%, #ff7ad3, #ff2f9b);
        cursor: pointer;
        box-shadow: inset 0 6px 12px rgba(255, 255, 255, 0.25), 0 10px 20px rgba(0, 0, 0, 0.25);
        text-indent: -9999px;
        z-index: 3;
      }

      .confetti-ring::before {
        content: "";
        position: absolute;
        inset: 14px;
        border-radius: 50%;
        border: 6px solid rgba(0, 0, 0, 0.25);
        border-left-color: #ff4db8;
        border-top-color: #ff4db8;
        pointer-events: none;
      }

      .confetti-ring::after {
        content: "";
        position: absolute;
        inset: 30px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.25);
        pointer-events: none;
      }

      .confetti-controls {
        display: grid;
        gap: 8px;
      }

      .confetti-controls label {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        font-size: 0.9rem;
      }

      .confetti-controls input[type="range"] {
        flex: 1;
      }

      .weather-widget {
        grid-column: 1 / -1;
        background: linear-gradient(160deg, rgba(44, 95, 150, 0.55), rgba(92, 141, 189, 0.55));
        color: #fff;
      }

      .weather-header {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 12px;
        align-items: center;
      }

      .weather-city {
        font-size: 1.1rem;
        font-weight: 400;
      }

      .weather-temp {
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 1;
      }

      .weather-summary {
        text-align: right;
        font-size: 0.95rem;
      }

      .weather-icon {
        font-size: 1.6rem;
      }

      .weather-forecast {
        margin-top: 14px;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 8px;
        text-align: center;
        font-size: 0.72rem;
      }

      .forecast-item {
        display: grid;
        gap: 4px;
        justify-items: center;
      }

      .forecast-icon {
        font-size: 1.1rem;
      }

      .desktop-icon {
        position: absolute;
        width: 88px;
        text-align: center;
        cursor: pointer;
        border: 0;
        background: transparent;
        padding: 0;
      }

      .desktop-icon .thumb {
        width: 66px;
        height: 56px;
        margin: 0 auto 8px;
        filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.2));
      }

      .desktop-icon .thumb img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }

      .desktop-icon .thumb img.thumb-small {
        width: 67%;
        height: 67%;
        border-radius: 6px;
      }

      .desktop-icon .label {
        font-size: 12px;
        font-weight: 600;
        color: #fff;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
        line-height: 1.2;
        display: block;
        max-width: 120px;
        margin: 0 auto;
        text-align: center;
        white-space: normal;
      }

      .desktop-icon .label.label-tight {
        font-size: 11px;
        line-height: 1.15;
        letter-spacing: 0.01em;
      }

      .desktop-icon .label.label-gap {
        margin-top: 10px;
      }

      .dock {
        position: absolute;
        left: 50%;
        bottom: 44px;
        transform: translateX(-50%);
        z-index: 3;
        display: flex;
        gap: 14px;
        background: rgba(224, 224, 227, 0.34);
        border: 0;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.14);
        backdrop-filter: blur(8px);
        padding: 14px 16px;
        border-radius: 24px;
      }

      .dock-item {
        width: 72px;
        height: 72px;
        border-radius: 18px;
        display: grid;
        place-items: center;
        color: #fff;
        font-weight: 400;
        font-size: 0.95rem;
        text-decoration: none;
        overflow: visible;
        position: relative;
        border: 0;
        background: transparent;
        padding: 0;
      }

      .dock-item::before {
        content: attr(data-label);
        position: absolute;
        left: 50%;
        bottom: calc(100% + 16px);
        transform: translateX(-50%) translateY(6px);
        background: rgba(241, 243, 247, 0.42);
        color: rgba(20, 22, 26, 0.9);
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 0.01em;
        line-height: 1;
        padding: 10px 14px;
        border-radius: 999px;
        white-space: nowrap;
        border: 1px solid rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(12px) saturate(1.05);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        z-index: 2;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.14s ease, transform 0.14s ease;
      }

      .dock-item::after {
        display: none;
      }

      .dock-item:hover::before,
      .dock-item:hover::after {
        opacity: 1;
      }

      .dock-item:hover::before {
        transform: translateX(-50%) translateY(0);
      }

      .dock-item:hover::after {
        transform: translateX(-50%) translateY(0);
      }

      .dock-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 18px;
      }

      .dock-item.linkedin-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }

      .dock-item.notes-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }

      .dock-item.mail-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }

      .dock-item.calendly-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }

      .dock-item.spotify-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }

      .finder {
        position: fixed;
        inset: 0;
        z-index: 10;
        display: none;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.16);
        backdrop-filter: blur(2px);
      }

      .finder.show {
        display: flex;
      }

      .notes-app {
        position: fixed;
        inset: 0;
        z-index: 12;
        display: none;
        align-items: center;
        justify-content: flex-start;
        padding-left: 56px;
        background: rgba(0, 0, 0, 0.16);
        backdrop-filter: blur(2px);
      }

      .notes-app.show {
        display: flex;
      }

      .notes-window {
        width: min(1080px, 90vw);
        height: min(720px, 84vh);
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.75);
        background: #ececec;
        box-shadow: 0 28px 48px rgba(0, 0, 0, 0.25);
        display: grid;
        grid-template-rows: 60px 1fr;
      }

      .notes-toolbar {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 0 16px;
        background: linear-gradient(to bottom, #f0eded, #dfdbdb);
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
      }

      .notes-title {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 400;
        color: #111;
      }

      .notes-close {
        border: 0;
        padding: 0;
      }

      .notes-content {
        display: grid;
        grid-template-columns: 210px 1fr;
        height: 100%;
        min-height: 0;
      }

      .notes-sidebar {
        border-right: 1px solid rgba(0, 0, 0, 0.2);
        background: #ece9e9;
        padding: 10px 12px;
      }

      .notes-tab {
        width: 100%;
        border: 0;
        background: transparent;
        padding: 14px 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        color: #111;
        font-size: 1.12rem;
        text-align: left;
      }

      .notes-tab.active {
        font-weight: 400;
      }

      .notes-tab .count {
        color: #7b7b7b;
      }

      .notes-body {
        background: #efefef;
        padding: 20px 28px;
        overflow: auto;
        color: #131313;
      }

      .notes-paragraph {
        font-size: 1.05rem;
        line-height: 1.22;
        margin-bottom: 16px;
      }

      .notes-list {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .notes-list li {
        font-size: 0.95rem;
        line-height: 1.35;
        margin-bottom: 8px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
      }

      .notes-check {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: inline-grid;
        place-items: center;
        background: #f5b425;
        color: #fff;
        font-size: 13px;
        font-weight: 400;
        margin-top: 3px;
        flex: 0 0 auto;
      }

      .finder-window {
        width: min(1280px, 94vw);
        height: min(760px, 90vh);
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.8);
        background: #f4f4f6;
        box-shadow: 0 28px 48px rgba(0, 0, 0, 0.25);
        display: grid;
        grid-template-rows: 62px 1fr;
      }

      .finder-toolbar {
        display: flex;
        align-items: center;
        padding: 0 16px;
        gap: 14px;
        background: linear-gradient(to bottom, #f4f4f5, #ececee);
        border-bottom: 1px solid var(--stroke);
      }

      .traffic {
        display: flex;
        gap: 8px;
      }

      .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
      }

      .dot.red { background: #ff5f57; }
      .dot.yellow { background: #febc2e; }
      .dot.green { background: #28c840; }

      .finder-title {
        font-weight: 400;
        font-size: 1.45rem;
      }

      .finder-search {
        margin-left: auto;
        background: #fff;
        border: 1px solid #dedee1;
        border-radius: 999px;
        padding: 8px 14px;
        min-width: 240px;
        color: #90949b;
      }

      .finder-content {
        display: grid;
        grid-template-columns: 250px 340px 1fr;
        height: 100%;
      }

      .sidebar {
        border-right: 1px solid var(--stroke);
        background: #f0f0f3;
        padding: 16px 12px;
        overflow: auto;
      }

      .sidebar h6 {
        margin: 14px 10px 8px;
        color: #8b8d92;
        font-size: 0.82rem;
        font-weight: 700;
        text-transform: uppercase;
      }

      .side-link {
        border: 0;
        background: transparent;
        width: 100%;
        text-align: left;
        border-radius: 10px;
        padding: 9px 10px;
        font-weight: 550;
        color: #202124;
      }

      .side-link:hover { background: rgba(0, 0, 0, 0.04); }

      .folder-column,
      .file-column {
        background: #f8f8f9;
        overflow: auto;
      }

      .folder-column {
        border-right: 1px solid var(--stroke);
      }

      .folder-item {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 10px 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 1.08rem;
      }

      .folder-item.active {
        background: var(--blue);
        color: #fff;
      }

      .folder-item .left {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .folder-mini-icon {
        width: 22px;
        height: 19px;
        object-fit: contain;
        flex: 0 0 auto;
      }

      .file-list {
        list-style: none;
        margin: 0;
        padding: 10px;
      }

      .file-column {
        display: grid;
        grid-template-columns: 280px 1fr;
        height: 100%;
        min-height: 0;
        overflow: hidden;
      }

      .file-list-pane {
        border-right: 1px solid var(--stroke);
        overflow: auto;
        background: #f8f8f9;
        min-height: 0;
      }

      .file-row {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 8px 10px;
        border-radius: 8px;
        font-size: 1.05rem;
        cursor: pointer;
      }

      .file-row.active {
        background: var(--blue);
        color: #fff;
      }

      .file-row.active:hover {
        background: var(--blue);
      }

      .file-row:hover {
        background: rgba(0, 0, 0, 0.04);
      }

      .file-empty {
        padding: 24px;
        color: var(--muted);
      }

      .file-preview-pane {
        background: #ffffff;
        height: 100%;
        min-height: 0;
        overflow: auto;
      }

      .preview-empty {
        padding: 30px;
        color: #7d8188;
        font-size: 1rem;
      }

      .pdf-viewer {
        height: 100%;
        min-height: 0;
        display: grid;
        grid-template-rows: 50px 1fr;
        background: #fff;
      }

      .pdf-toolbar {
        border-bottom: 1px solid #e5e6ea;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 14px;
        background: #f8f8fb;
      }

      .pdf-name {
        font-size: 0.94rem;
        font-weight: 620;
        color: #2a2c30;
      }

      .open-pdf-tab {
        font-size: 0.84rem;
        font-weight: 600;
        color: #0a84ff;
        text-decoration: none;
      }

      .open-pdf-tab:hover {
        text-decoration: underline;
      }

      .pdf-frame {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 0;
        border: 0;
        background: #fff;
      }

      .image-viewer {
        height: 100%;
        display: grid;
        grid-template-rows: 50px 1fr;
        background: #fff;
      }

      .image-frame {
        width: 100%;
        height: 100%;
        display: grid;
        place-items: center;
        background: #fff;
        padding: 12px;
      }

      .image-frame img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        border-radius: 6px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
      }

      .docx-viewer {
        height: 100%;
        display: grid;
        grid-template-rows: 50px 1fr;
        background: #fff;
      }

      .docx-content {
        padding: 18px 20px;
        overflow: auto;
        color: #222;
        font-size: 0.95rem;
        line-height: 1.5;
      }

      .close-finder {
        margin-left: 8px;
        border: 0;
        background: #fff;
        border-radius: 999px;
        padding: 7px 14px;
        font-size: 0.9rem;
        font-weight: 600;
        border: 1px solid #d9d9dd;
      }

      @media (max-width: 900px) {
        .postit-note {
          width: min(460px, 86vw);
          left: 8%;
          top: 16%;
          min-height: 340px;
        }

        .postit-body p {
          font-size: 0.95rem;
        }

        .menu-left,
        .menu-right {
          gap: 10px;
          font-size: 0.86rem;
        }

        .menu-left .brand,
        .menu-item,
        .menu-time {
          font-size: 0.88rem;
        }

        .finder-content {
          grid-template-columns: 200px 1fr;
        }

        .file-column {
          display: grid;
          grid-template-columns: 1fr;
        }

        .file-preview-pane {
          display: none;
        }

        .file-list-pane {
          border-right: 0;
        }

        .desktop-icon {
          width: 76px;
        }

        .desktop-icon .thumb {
          width: 56px;
          height: 46px;
        }

        .desktop-icon .label {
          font-size: 11px;
        }
      }

      @media (max-width: 700px) {
        .menu-bar {
          display: none;
        }

        .postit-note {
          display: none;
        }

        .desktop {
          padding-top: 24px;
          padding-bottom: 120px;
        }

        .desktop-icons {
          display: grid;
          grid-template-columns: repeat(4, minmax(0, 1fr));
          gap: 18px 8px;
          padding: 20px 18px 0;
          align-content: start;
        }

        .desktop-icon {
          position: static;
          width: auto;
        }

        .desktop-icon .thumb {
          width: 62px;
          height: 62px;
          margin: 0 auto 8px;
          filter: none;
        }

        .desktop-icon .label {
          font-size: 0.72rem;
          text-shadow: none;
          color: #fff;
          max-width: 80px;
        }

        .dock {
          position: fixed;
          left: 16px;
          right: 16px;
          bottom: 22px;
          transform: none;
          justify-content: space-around;
          gap: 0;
          padding: 10px 12px;
          border-radius: 24px;
          backdrop-filter: blur(20px) saturate(1.1);
        }

        .dock-item {
          width: 54px;
          height: 54px;
          border-radius: 14px;
        }

        .dock-item::before,
        .dock-item::after {
          display: none;
        }

        .finder-window,
        .notes-window {
          width: 100vw;
          height: 100vh;
          border-radius: 0;
        }

        .finder-toolbar,
        .notes-toolbar {
          padding-top: 12px;
        }
      }

      @media (pointer: fine) {
        .custom-cursor-enabled,
        .custom-cursor-enabled * {
          cursor: none !important;
        }

        #customCursor {
          position: fixed;
          top: 0;
          left: 0;
          width: 70px;
          height: 70px;
          z-index: 9999;
          pointer-events: none;
          transform: translate3d(-100px, -100px, 0);
          transition: transform 0.04s linear;
          will-change: transform;
        }

        #customCursor img {
          width: 100%;
          height: 100%;
          object-fit: contain;
          display: block;
          filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
        }

        #customCursor.is-clicking {
          transform: translate3d(-100px, -100px, 0) scale(0.92);
        }
      }
