  

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html, body {
    height: 100%;
    background: black;
    color: #00ff41;
    font-family: 'Share Tech Mono', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    overflow: hidden;
  }

  ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Scrollbar arka planı */
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.4);
}

/* Scrollbar’ın kaydırma kısmı */
::-webkit-scrollbar-thumb {
  background: #00ff41;
  border-radius: 10px;
}

/* Hover olunca rengi değişsin */
::-webkit-scrollbar-thumb:hover {
  background: #44ff88;
}

  ::selection {
    background: #00ff41;
    color: black;
  }

  #bgCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    filter: blur(1.5px);
    opacity: 0.5;
  }

  #terminal {
    display: flex;
    flex-direction: column;
    height: 65vh;
    max-width: 80rem;
    width: 90vw;
    margin: 40px auto;
    padding: 20px 30px;
    border: 1px solid #00ff41;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 20px #00ff41aa;
    z-index: 10;
  }

  .terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    padding: 6px 12px;
    border-bottom: 1px solid #00ff41;
    font-size: 0.9rem;
    border-radius: 10px;
    color: #00ff41;
    margin: -20px -30px 20px -30px;
  }
  .buttons .btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
  }
  .buttons .btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
  }
  .red { background: #ff5f56; }
  .yellow { background: #ffbd2e; }
  .green { background: #27c93f; }
  .title {
    font-weight: bold;
    font-size: 0.85rem;
    flex-grow: 1;
    text-align: right;
  }

  #output {
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 10px;
    white-space: pre-wrap;
    position: relative;
    user-select: text;
  }
  #output::before {
    content: '';
    position: sticky;
    top: 0;
    height: 10px;
    background: linear-gradient(to bottom, rgba(0,255,65,0.5), transparent);
    z-index: 1;
  }
  .line {
    margin-bottom: 8px;
    line-height: 1.4;
  }

  .input-area {
    display: flex;
    align-items: center;
    border-top: 1px solid #00ff41;
    padding: 10px 0 0;
  }
  .input-prompt {
    margin-right: 8px;
    font-size: 1.2rem;
    position: relative;
  }
  .input-prompt::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 1.2rem;
    background: #00ff41;
    margin-left: 4px;
    animation: blink 1s infinite;
  }

  @keyframes blink {
    0%, 50% { opacity: 1; }
    50.01%, 100% { opacity: 0; }
  }

  #commandInput {
    flex-grow: 1;
    background: transparent;
    border: none;
    border-bottom: 1px solid #00ff41;
    color: #00ff41;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.1rem;
    padding: 6px 8px;
    outline: none;
  }
  #commandInput::placeholder {
    color: #008800;
  }

  .photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #00ff41;
    filter: drop-shadow(0 0 6px #00ff41);
  }

  .link {
    color: #00ff41;
    text-decoration: underline;
    cursor: pointer;
    user-select: text;
  }
  .link:hover {
    color: #88ff88;
  }

  @media (max-width: 600px) {
    #terminal {
      height: 70vh;
      padding: 15px 20px;
    }
    .photo {
      width: 100px;
      height: 100px;
    }
     body {
    font-size: 0.50rem;
  }

  #commandInput {
    font-size: 0.7rem;
  }

  .line {
    font-size: 0.7rem;
  }

  .input-prompt {
    font-size: 0.6rem;
  }

  .terminal-header {
    font-size: 0.8rem;
  }

  .title {
    font-size: 0.7rem;
  }
  }
