body {
    background: #181818;
    color: #f8f8f2;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', 'Consolas', monospace, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .container {
    background: rgba(30, 30, 30, 0.98);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    padding: 40px 32px 32px 32px;
    max-width: 800px;
    text-align: center;
  }
  
  .ascii-art {
    font-family: 'Fira Mono', 'Consolas', 'Courier New', monospace;
    font-size: 1.1rem;
    color: #00b60f;
    margin-bottom: 24px;
    line-height: 1.1;
    white-space: pre;
    text-shadow: 2px 2px 6px #000a;
  }
  
  h1 {
    margin-top: 0;
    font-size: 2rem;
    color: #50fa7b;
    letter-spacing: 2px;
  }
  
  p {
    color: #bbbbbb;
    font-size: 1.1rem;
  }

  ul {
    text-align: left;
    margin: 1.5em auto 1em auto;
    display: inline-block;
    color: #474747; 
  }
  