:root {
        --neon-pink: #ff71ce;
        --neon-blue: #01cdfe;
        --text: #e0e0e0;
        --bg: #080314;
        --folder: #ff71ce40;
      }

      body {
        font-family: 'Courier New', monospace;
        background: var(--bg);
        color: var(--text);
        line-height: 1.6;
        margin: 0;
        padding: 0;
        min-height: 100vh;
        position: relative;
        overflow-x: hidden;
      }

      .crt {
        position: relative;
        width: 100vw;
        height: 100vh;
        overflow: hidden;
        background: var(--bg);
      }

      .crt::before {
        content: " ";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: linear-gradient(
          to bottom,
          rgba(18, 16, 16, 0) 50%,
          rgba(0, 0, 0, 0.25) 50%
        );
        background-size: 100% 4px;
        z-index: 2;
        pointer-events: none;
        animation: flicker 0.15s infinite;
      }

      .crt::after {
        content: " ";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgba(18, 16, 16, 0.1);
        opacity: 0;
        z-index: 2;
        pointer-events: none;
        animation: flicker 0.15s infinite;
      }

      @keyframes flicker {
        0% { opacity: 1.0; }
        50% { opacity: 0.7; }
        100% { opacity: 1.0; }
      }

      .scan-line {
        width: 100%;
        height: 100px;
        pointer-events: none;
        background: linear-gradient(
          to bottom,
          transparent,
          rgba(255, 255, 255, 0.4),
          transparent
        );
        position: absolute;
        animation: scan 6s linear infinite;
        z-index: 3;
        mix-blend-mode: overlay;
      }

      @keyframes scan {
        0% { transform: translateY(-100%); }
        100% { transform: translateY(100vh); }
      }

      #curved-screen {
        width: 100%;
        min-height: 100vh;
        background: var(--bg);
        position: relative;
        border-radius: 20px;
        transform: perspective(1500px) rotateX(2deg);
        transform-style: preserve-3d;
        box-shadow: 
          inset 0 0 100px rgba(0, 0, 0, 0.5),
          0 0 50px rgba(0, 0, 0, 0.3);
      }

      #central {
        max-width: 800px;
        margin: 0 auto;
        padding: 2rem;
        position: relative;
        z-index: 1;
      }

      #name {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        color: var(--neon-pink);
        text-shadow: 
          0 0 10px var(--neon-pink);
          /* 0 0 20px var(--neon-pink); */
        position: relative;
      }

      .subtitle {
        display: block;
        color: var(--neon-blue);
        text-decoration: none;
        margin-bottom: 2rem;
        opacity: 0.8;
        text-shadow: 
          0 0 5px var(--neon-blue),
          0 0 10px var(--neon-blue);
      }

      .subtitle:hover {
        opacity: 1;
      }

      h2 a {
        color: var(--text);
        text-decoration: none;
        text-shadow: 0 0 5px var(--text);
      }

      h2 a:hover {
        color: var(--neon-blue);
        text-shadow: 
          0 0 5px var(--neon-blue),
          0 0 10px var(--neon-blue);
      }

      /* #filesystem {
        margin-top: 2rem;
      } */

      .folder {
        margin: 0.5rem 0;
        cursor: pointer;
      }

      .folder-header {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.25rem;
        border-radius: 3px;
      }

      .folder-header:hover {
        background: var(--folder);
      }

      .folder-icon {
        color: var(--neon-pink);
        transition: transform 0.2s ease;
      }

      .folder-name {
        color: var(--neon-pink);
        text-shadow: 0 0 5px var(--neon-pink);
      }

      .folder-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        margin-left: 1.5rem;
      }

      .folder.open .folder-content {
        max-height: 1000px;
        transition: max-height 0.5s ease-in;
      }

      .folder.open .folder-icon {
        transform: rotate(90deg);
      }

      .file {
        padding: 0.25rem 0.25rem 0.25rem 1rem;
        margin: 0.25rem 0;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        border-radius: 3px;
      }

      .file:hover {
        background: var(--folder);
      }

      .file-icon {
        color: var(--neon-blue);
        opacity: 0.7;
      }

      .file-meta {
        margin-left: auto;
        opacity: 0.5;
        font-size: 0.9em;
      }

      @media (max-width: 600px) {
        #central {
          padding: 1rem;
        }
      }

      .file-header {
        cursor: pointer;
        padding: 2px 0;
    }

    .file-header:hover {
        background-color: rgba(0, 255, 0, 0.1);
    }

    .file-description {
        margin-left: 20px;
        padding: 5px 0;
        font-size: 0.9em;
        color: #00ff00;
        opacity: 0.8;
        border-left: 2px solid #00ff00;
        padding-left: 10px;
    }

    .file-modified {
        margin-top: 8px;
        font-size: 0.8em;
        opacity: 0.6;
        font-style: italic;
    }

    .file.expanded .file-icon::before {
        content: ' ';
    }