/* General Body */
body {
    margin: 0;
    padding: 0;
    font-family: "Courier New", monospace;
    background: linear-gradient(to bottom, #111 0%, #222 100%);
    color: #eee;
    line-height: 1.6;
  }
  
  /* Header */
  header {
    background: #1a1a1a;
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid #444;
    box-shadow: 0 4px 6px rgba(0,0,0,0.5);
  }
  
  header h1 {
    font-size: 2.2em;
    margin: 0 0 15px 0;
    color: #f05c5c;
  }
  
  /* Inventory Table */
  .inventory-table {
    width: 50%;
    margin: 0 auto;
    border-collapse: collapse;
    text-align: center;
    background-color: #2b2b2b;
    color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0,0,0,0.5);
  }
  
  .inventory-table th,
  .inventory-table td {
    border: 1px solid #555;
    padding: 10px 15px;
    font-size: 1.1em;
  }
  
  .inventory-table th {
    background-color: #3a3a3a;
  }
  
  /* Intro Box */
  .intro-box {
    max-width: 700px;
    margin: 50px auto;
    padding: 30px;
    background-color: #1b1b1b;
    border: 2px solid #444;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.6);
    text-align: center;
  }
  
  .intro-box h2 {
    color: #f05c5c;
    margin-bottom: 20px;
  }
  
  /* Button */
  .button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: #333;
    color: #eee;
    text-decoration: none;
    font-size: 1.1em;
    border-radius: 10px;
    border: 2px solid #555;
    transition: all 0.3s ease;
  }
  
  .button:hover {
    background-color: #f05c5c;
    border-color: #f05c5c;
    color: #fff;
  }
  
  /* Scene Container */
  .scene.active {
    display: block;
  }
  
  /* Small red restart button */
#restart-btn {
  background-color: #e74c3c; /* red */
  color: white;
  border: none;
  padding: 5px 10px;
  font-size: 0.8rem;
  border-radius: 5px;
  cursor: pointer;
  float: right; /* optional: moves it to the top-right */
  margin-top: -40px; /* adjust so it aligns nicely with header */
}

#restart-btn:hover {
  background-color: #c0392b;
}
