body {
    margin: 0;
    padding: 0;
    background: #0d0d0d;
    font-family: monospace;
    color: #e5e5e5;
    overflow: hidden;
  }
  
  .crt {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    padding: 2rem;
    box-sizing: border-box;
    background: #0d0d0d;
    background-image: repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 3px
    );
    animation: flicker 2s infinite steps(60, end);
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
  }
  
  @keyframes flicker {
    0%, 100% {
      opacity: 1;
    }
    98% {
      opacity: 0.95;
    }
  }
  
  .edge-fade::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    background: radial-gradient(
      circle,
      rgba(0, 0, 0, 0) 60%,
      rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 10;
  }
  
  .subtle-blue-glow {
    /* Optional subtle glow around the screen */
    box-shadow:
      0 0 15px rgba(180, 220, 255, 0.2),
      inset 0 0 30px rgba(180, 220, 255, 0.1);
  }
  
  .terminal {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: hidden;
    box-sizing: border-box;
  }
  
  .ascii {
    color: #ff4c4c;
    font-size: 13px;
    line-height: 1.1;
    text-align: center;
    animation: pulse-wolf 4s ease-in-out infinite;
  }
  
  @keyframes pulse-wolf {
    0%, 100% {
      color: #ff4c4c;
      text-shadow: 0 0 4px #ff4c4c;
    }
    50% {
      color: #ff1d1d;
      text-shadow: 0 0 10px #ff1d1d;
    }
  }
  
  .links.inline-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
  }
  
  .links a {
    color: #7fb0ad;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
  }
  
  .links a:hover {
    color: #ffffff;
  }
  
  .history {
    flex: 1 1 0%;
    margin: 0.75rem 0 0.5rem 0;
    font-size: 14px;
    color: #e5e5e5;
    line-height: 1.3;
    background: none;
    font-family: monospace;
    white-space: pre-wrap;
    overflow-y: auto;
    max-height: 100%;
    min-height: 0;
    border-radius: 0;
    padding-right: 4px;
  }
  
  /* Tight output for a real terminal look */
  .terminal-response {
    color: #e5e5e5;
    background: none;
    font-family: monospace;
    margin: 0;
    padding: 0;
    white-space: pre-wrap;
    font-size: 14px;
  }
  
  .terminal-error {
    color: #ff4c4c;
    background: none;
    font-family: monospace;
    margin: 0;
    padding: 0;
    white-space: pre-wrap;
    font-size: 14px;
  }
  
  .prompt {
    font-size: 16px;
    color: #bcd1e4;
    text-align: left;
    margin-left: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
  }
  
  .prompt-text {
    color: #b91c1c;
    font-weight: bold;
  }
  
  .directory {
    color: #7fb0ad;
    margin: 0 0.25rem;
  }
  
  .dollar {
    color: #d8b5ce;
    margin-right: 0.25rem;
  }
  
  .terminal-input {
    background: transparent;
    border: none;
    color: #e5e5e5;
    font-family: monospace;
    font-size: 16px;
    outline: none;
    width: 60vw;
    max-width: 600px;
    margin-left: 0.5rem;
  }
  
  .cursor {
    display: inline-block;
    width: 8px;
    background: #ffffff;
    animation: blink 1s step-start infinite;
  }
  
  @keyframes blink {
    50% {
      opacity: 0;
    }
  }
  
  .terminal-input {
    background: transparent;
    border: none;
    color: #e5e5e5;
    font-family: monospace;
    font-size: 16px;
    outline: none;
    width: 40vw;
    max-width: 600px;
    margin-left: 0.3rem;
    padding: 0;
    vertical-align: middle;
    caret-color: #fff;
}
