* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: monospace;
    background-color: #E8EDFE;
    color: #333;
  }
  
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .thread {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ddd;
  }
  
  .thread h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .thread p {
    margin-bottom: 10px;
  }
  
  .comments {
    margin-top: 20px;
    padding-left: 20px;
  }
  
  .comment {
    margin-bottom: 10px;
  }
  
  .comment .author {
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .comment-container {
    border-left: 2px solid #ccc;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 10px;
  }
  
  .comment-header {
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .comment-body {
    font-size: 0.9rem;
    padding-left: 20px;
    margin-bottom: 10px;
  }

  .archive-title {
    font-family: monospace;
    font-size: 2rem;
    text-align: center;
    margin: 20px 0;
  }
  
  .retro-button {
    background-color: #e466e4;
    border: none;
    color: white;
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    margin-top: 10px;
    padding: 8px 16px;
    text-transform: uppercase;
    transition: all 0.3s;
    outline: none;
  }
  
  .retro-button:hover {
    background-color: #e466e4;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }
  
  .retro-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  