@import url("https://fonts.googleapis.com/css2?family=SF+Pro+Display:wght@300;400;500;600;700&display=swap");

      body {
        font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont,
          sans-serif;
        background-image: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
        background-size: cover;
        background-position: center;
        height: 100vh;
        overflow: hidden;
        user-select: none;
      }

      .window {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.3s ease;
        position: absolute;
        min-width: 300px;
        min-height: 200px;
        resize: both;
        overflow: auto;
      }

      .window-header {
        background: linear-gradient(to bottom, #f0f0f0, #e0e0e0);
        border-bottom: 1px solid #d0d0d0;
        padding: 5px 10px;
        cursor: move;
      }

      .window-content {
        background-color: #fff;
        height: calc(100% - 30px);
        overflow: auto;
      }

      .dock {
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 5px 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
      }

      .dock-icon {
        transition: all 0.2s ease;
        filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
      }

      .dock-icon:hover {
        transform: scale(1.2) translateY(-10px);
      }

      .active-app {
        position: relative;
      }

      .active-app::after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 5px;
        height: 5px;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 50%;
      }

      .menu-bar {
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      }

      .menu-item:hover {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 5px;
      }

      .window-control {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin-right: 8px;
      }

      .close {
        background-color: #ff5f56;
      }
      .minimize {
        background-color: #ffbd2e;
      }
      .maximize {
        background-color: #27c93f;
      }

      .folder {
        background: linear-gradient(135deg, #6e8efb, #a777e3);
        color: white;
        border-radius: 5px;
        padding: 15px;
        cursor: pointer;
        transition: all 0.2s ease;
      }

      .folder:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }

      .file {
        background: white;
        border-radius: 5px;
        padding: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: all 0.2s ease;
      }

      .file:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .terminal {
        background-color: #1e1e1e;
        color: #f0f0f0;
        font-family: "SF Mono", monospace;
        padding: 10px;
        border-radius: 5px;
        height: 100%;
        overflow: auto;
      }

      .terminal-line {
        margin-bottom: 5px;
      }

      .terminal-prompt {
        color: #27c93f;
      }

      .terminal-cursor {
        display: inline-block;
        width: 10px;
        height: 16px;
        background-color: #f0f0f0;
        animation: blink 1s infinite;
      }

      @keyframes blink {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0;
        }
      }

      .project-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
      }

      .project-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      }

      .tab {
        padding: 5px 15px;
        border-radius: 5px 5px 0 0;
        background: #e0e0e0;
        cursor: pointer;
        border: 1px solid #d0d0d0;
        border-bottom: none;
      }

      .tab.active {
        background: white;
        border-bottom: 1px solid white;
        margin-bottom: -1px;
      }

      .resume-section {
        display: none;
      }

      .resume-section.active {
        display: block;
      }