#menu-toggle {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1001;
  background-color: rgba(0, 255, 0, 0.1);
  color: var(--accent);
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  padding: 0.4rem 0.8rem;
  border: 0px solid var(--accent);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#menu-toggle:hover {
  background-color: var(--hover);
  color: #000;
}

#sidebar-menu {
  position: fixed;
  top: 0;
  left: -240px;
  width: 220px;
  height: 100vh;
  background-color: #0d1117;
  border-right: 2px solid var(--accent);
  padding-top: 4rem;
  transition: left 0.3s ease;
  z-index: 1000;
}

#sidebar-menu.active {
  left: 0;
}

#sidebar-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#sidebar-menu li a {
  display: block;
  padding: 1rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid rgba(0,255,224,0.1);
}

#sidebar-menu li a:hover {
  background-color: rgba(0, 255, 224, 0.1);
  color: var(--hover);
}