body {
    margin: 0;
    padding: 0;
    font-family: 'Space Mono', monospace;
    background: radial-gradient(circle at center, #1a0000, #000000);
    color: #ff4c4c;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
  }
  
  .ascii-container {
    text-align: center;
    padding: 20px;
  }
  
  .ascii-text {
    font-size: 12px;
    color: #ff4c4c;
    text-shadow: 0 0 5px #ff1a1a, 0 0 15px #ff3333, 0 0 30px #ff0000;
    white-space: pre;
    margin-bottom: 25px;
    line-height: 1.2;
  }
  
  .status-text {
    color: #ffffff;
    font-size: 16px;
    margin-top: 10px;
  }
  
  .highlight {
    color: #ffcccc;
    font-size: 14px;
    background: #ff1a1a33;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid #ff4c4c;
    display: inline-block;
    margin-top: 12px;
  }  