    body {
      margin: 0;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      background: #1c1c1c;
      font-family: 'Press Start 2P', cursive;
      color: #ffffff;
      font-size: 0.6rem;
    }

    header, footer {
      text-align: center;
      background: #2b2b2b;
      padding: 20px 0;
    }

    h1 {
      margin: 0;
      color: #800000;
      font-size: 1.5rem;
      text-shadow: 2px 2px #ffcccc;
    }

    nav ul {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 30px;
      padding: 0;
      margin-top: 15px;
    }

    nav a {
      text-decoration: none;
      color: #ff4d4d;
      font-size: 0.8rem;
    }

    nav a:hover {
      color: #ffffff;
    }

    main {
      max-width: 800px;
      margin: 40px auto;
      padding: 20px;
      background: #2b2b2b;
      border-radius: 12px;
      box-shadow: 0 0 10px rgba(0,0,0,0.5);
    }

    h2 {
      color: #ff4d4d;
      margin-bottom: 20px;
    }

    ul {
      font-size: 0.8rem;
      line-height: 1.6;
      padding-left: 20px;
    }

    ul li {
      margin-bottom: 10px;
    }

    .status-box {
      margin-top: 30px;
      padding: 15px;
      background: #1c1c1c;
      border: 2px solid #800000;
      border-radius: 8px;
      text-align: center;
    }

    .status-box p {
      margin: 0;
      font-size: 0.8rem;
    }

    /* Hamburger Menu Styles */
    #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;
}