  :root {
    --bg: #000000;
    --text: #ffffff;
    --accent: #ff0000;
    --link: #ff4444;
    --link-hover: #ff6666;
    --shadow: 0 6px 30px rgba(0, 0, 0, 0.7);
    --font: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --user-bg: #111111;
    --user-border: rgba(255, 255, 255, 0.1);
  }

  html,
  body {
    height: 100%;
    margin: 0;
    font-family: var(--font);
    background-color: var(--bg);
    color: var(--text);
  }

  body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    position: relative;
  }

  .ascii-art {
    white-space: pre;
    color: red;
    text-align: center;
    font-size: 12px;
    margin-bottom: 50px;
  }

  .terminal-container {
    position: relative;
    width: min(1100px, 96%);
  }

  .terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #151515;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: none;
  }

  .terminal-tabs {
    display: flex;
    gap: 8px;
  }

  .terminal-tab {
    padding: 6px 10px;
    border-radius: 6px;
    background: #222;
    border: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 13px;
    cursor: pointer;
  }

  .terminal-tab.active {
    background: #0e0e0e;
    border-color: rgba(255, 0, 0, 0.15);
    color: var(--accent);
  }

  .terminal-controls {
    display: flex;
    gap: 8px;
  }

  .terminal-control {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    font-weight: bold;
  }

  .new-tab-btn {
    background: #333;
    color: #fff;
  }

  .new-tab-btn:hover {
    background: #444;
  }

  .terminal {
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 18px;
    min-height: 520px;
    overflow: auto;
    width: 100%;
    background-color: #0f0f0f;
    box-sizing: border-box;
    margin-bottom: 90px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
  }

  pre {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
    font-size: 13px;
    color: rgb(200, 200, 200);
  }

  a {
    color: var(--link);
    text-decoration: none;
  }

  a:hover {
    color: var(--link-hover);
    text-decoration: underline;
  }

  ::-webkit-scrollbar {
    display: none;
  }

  .terminal-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 40px;
  }

  .terminal-buttons a {
    background: #333;
    color: #fff;
    padding: 7px 13px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .terminal-buttons a:hover {
    background: #444;
  }

  .top-user {
    position: fixed;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: #222;
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    z-index: 1000;
  }

  .top-user img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-right: 8px;
  }

  

  .user-menu {
    display: none;
    position: absolute;
    top: 45px;
    right: 0;
    background: #222;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    min-width: 150px;
    flex-direction: column;
    z-index: 1001;
  }

  .user-menu button,
  .user-menu a {
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px;
    text-align: left;
    cursor: pointer;
    width: 100%;
    text-decoration: none;
  }

  .user-menu button:hover,
  .user-menu a:hover {
    background: #333;
  }

  /* USERS kutuları */
  .user-box {
    padding: 5px;
    margin: 4px 0;
    line-height: 0.2;
    border-radius: 8px;

  }

  .user-box div {
    margin: 2px 0;
  }

  @media (max-width: 768px) {

  .ascii-art{
    font-size:4px;
    padding-top:100px;
  }

  pre{
    font-size: 11px;
  }
  .user-btn {
    margin-right: 20px;
  }


}

  @media (max-width: 600px) {

  .ascii-art{
    font-size:3px;
    padding-top:100px;
  }

  pre{
    font-size: 11px;
  }
  .user-btn {
    margin-right: 10px;
  }


}