@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      padding: 15px 20px;
      min-height: 100vh;
      color: #b0bec5;
      background: #212121;
      font-family: 'Roboto Mono', monospace;
      overflow: hidden;
    }
    
    #terminal {
      width: 100%;
      height: calc(100vh - 30px);
      overflow-y: auto;
      overflow-x: hidden;
      scrollbar-width: none;
      
    }
    #terminal::-webkit-scrollbar {
      display: none;
    }

    .copywright {
      font-size: 12px;
      color: #82aaff;
      margin-bottom: 5px;
    }
    
    #terminal-output pre {
      margin: 0;
      padding: 0;
      line-height: 12px;
      font-size: 12px;
      white-space: pre;
      overflow-x: auto;
      color: #c3e88d;
      scrollbar-width: none;
    }
    
    .welcome-text {
      font-size: 14px;
      color: #82aaff;
      margin-top: 10px;
      margin-bottom: 10px;
    }
    
    .line {
      white-space: pre-wrap;
      line-height: 1.4;
      margin: 2px 0;
      
    }
    
    .line.ascii {
      white-space: pre;
      line-height: 1;
      margin: 0;
      padding: 0;
    }
    
    .input-line {
      display: flex;
      align-items: center;
      margin-top: 5px;
    }
    
    .prompt {
      color: #c3e88d;
      flex-shrink: 0;
      margin-right: 8px;
    }
    
    input {
      background: transparent; 
      border: none; 
      color: #eeffff;
      font-family: 'Roboto Mono', monospace; 
      font-size: 1em;
      outline: none; 
      flex: 1;
      caret-color: #c3e88d;
    }
    
    a {
      color: #82aaff;
      text-decoration: underline;
    }
    a:hover {
      color: #c3e88d;
    }
    .dir {
      color: #82aaff;
      font-weight: bold;
      margin: 0 10px;
    }
    
    .file {
      color: #eeffff;
    }
    .error {
      color: #546e7a;
      
    }