body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #0a0a0a;
  color: white;
  overflow-x: hidden;
  animation: fadeSlideUp 1s ease forwards;
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  z-index: -1;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background-color: rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 10;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-small {
  width: 40px;
  height: 40px;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #00aaff;
  z-index: 1001;
  transition: transform 0.3s ease;
  user-select: none;
}

.hamburger.active {
  transform: rotate(90deg);
}

.topbar-links {
  display: flex;
  gap: 15px;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}

.topbar-btn {
  padding: 8px 16px;
  background: none;
  border: 1px solid #00aaff;
  color: #00aaff;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
}

.topbar-btn:hover {
  background-color: #00aaff;
  color: black;
  transform: scale(1.05);
}

.topbar-btn.active {
  background-color: #00aaff;
  color: black;
}

header {
  text-align: center;
  padding: 50px 20px 20px;
}

.commands {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
}

.command-box {
  border-left: 5px solid #00aaff;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.command-box:hover {
  transform: scale(1.03);
}

.command-box span {
  display: block;
  color: #ccc;
  margin-top: 4px;
  font-size: 0.95rem;
}

.donate-container {
  text-align: center;
  margin: 30px 0;
}

.donate-button {
  background-color: #00aaff;
  border: none;
  padding: 10px 20px;
  color: black;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: 0.3s ease;
}

.donate-button:hover {
  background-color: #008fcc;
  transform: scale(1.05);
}

footer {
  text-align: center;
  padding: 20px;
  color: #aaa;
  font-size: 0.85rem;
}

.maintenance-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 120px 20px 20px;
  box-sizing: border-box;
  z-index: 9999;
  font-size: 1.5rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .topbar-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 40px;
    background-color: #000;
    border: 1px solid #00aaff;
    border-radius: 8px;
    padding: 10px;
    max-height: 0;
    opacity: 0;
  }

  .topbar-links.show {
    display: flex;
    max-height: 500px;
    opacity: 1;
  }
}
