body {
  margin: 0;
  background-color: #000;
  color: #fff;
  font-family: monospace;
  overflow: hidden;

  position: relative;
  z-index: 0;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: transparent;
}

.marquee,
.login-overlay,
.container {
  position: relative;
  z-index: 1;
}


.marquee {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  z-index: 999;
  font-family: monospace;
  background: black;
  text-shadow: 0 0 8px #a64dff;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 15s linear infinite;
}

@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.login-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.login-box {
  border: 1px solid white;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 0 12px #a64dff;
}

.login-box button {
  background: black;
  color: white;
  border: 1px solid white;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
}

.container {
  border: 1px solid #fff;
  box-shadow: 0 0 20px rgba(200, 100, 255, 0.4);
  padding: 1rem;
  width: 80vw;
  margin: 2rem auto;
  box-sizing: border-box;
  position: relative;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  z-index: 1;
}

.container.visible {
  opacity: 1;
  visibility: visible;
}

.header-text {
  position: absolute;
  top: -0.75rem;
  left: 1rem;
  background-color: #000;
  padding: 0 0.5rem;
  font-weight: bold;
  color: #fff;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.greeting {
  box-shadow: 0 0 20px rgba(200, 100, 255, 0.4);
  color: #d2a5ff;
  font-weight: bold;
}

.discord-button {
  background-color: #5865F2;
  color: #fff;
  border: none;
  padding: 0.15rem 0.35rem;
  font-size: 0.7rem;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
}

ul {
  list-style: none;
  padding-left: 1rem;
  margin: 0;
}

li {
  margin: 0.25rem 0;
  cursor: pointer;
  position: relative;
}

li > span {
  display: inline-block;
}

li a {
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
}

li a:hover {
  text-decoration: none;
}

li .sub {
  display: none;
  padding-left: 1rem;
}

li.expanded > .sub {
  display: block;
}