    body {
      background: #1c1c1c;
      font-family: 'Press Start 2P', cursive;
      color: #ffffff;
      text-align: center;
      padding: 40px 20px;
    }

    h1 {
      font-size: 1.2rem;
      margin-bottom: 20px;
      color: #800000;
      text-shadow: 2px 2px #ffcccc;
    }

    .stats-box {
      background: #2b2b2b;
      border: 2px solid #800000;
      border-radius: 8px;
      padding: 20px;
      max-width: 320px;
      margin: 0 auto;
      box-shadow: 0 0 8px rgba(255, 77, 77, 0.4);
      font-size: 0.6rem;
    }

    .stats-box p {
      margin: 10px 0;
    }

    button {
      font-family: 'Press Start 2P', cursive;
      font-size: 0.6rem;
      padding: 10px 16px;
      border-radius: 6px;
      border: none;
      background: #ff4d4d;
      color: #fff;
      cursor: pointer;
      margin-top: 20px;
    }

    button:hover {
      background: #ffffff;
      color: #800000;
    }
    #backbtn {
      color: #800000;
    }

        #menu-toggle {
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 1rem;
      color: #ff4d4d;
      cursor: pointer;
      z-index: 1000;
    }

    #menu-box {
      position: absolute;
      top: 60px;
      left: 20px;
      background: #2b2b2b;
      border: 2px solid #800000;
      border-radius: 8px;
      padding: 12px;
      display: none;
      font-size: 0.6rem;
      box-shadow: 0 0 8px rgba(255, 77, 77, 0.4);
      z-index: 999;
    }

    #menu-box a {
      display: block;
      color: #ffffff;
      text-decoration: none;
      margin-bottom: 8px;
    }

    #menu-box a:hover {
      color: #ffcccc;
    }

    #menu-toggle {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1000;
}

#menu-toggle .bar {
  height: 4px;
  background-color: #ff4d4d;
  border-radius: 2px;
  box-shadow: 0 0 4px #ff4d4d;
  transition: background 0.3s, box-shadow 0.3s;
}

#menu-toggle:hover .bar {
  background-color: #ffffff;
  box-shadow: 0 0 6px #ffffff;
}