body {
  margin: 0;
  overflow: hidden;
  font-family: Arial, sans-serif;
  color: white;
}


#background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(#1a1d23, #0c0d11);
  overflow: hidden;
  z-index: -1;
}


.particle {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0.6;
  animation: float linear infinite;
}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(-100vh); }
}


nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.nav-center {
  display: flex;
  gap: 40px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  transition: 0.25s ease;
}


nav a:hover {
  transform: scale(1.15);
  color: #0077ff;
}


.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}


.logo-main {
  width: 220px;
  height: auto;
  margin-bottom: 25px;
  animation: floatGlow 3.5s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(0, 140, 255, 0.6));
}


@keyframes floatGlow {
  0% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 10px rgba(0, 140, 255, 0.5));
  }
  50% {
    transform: translateY(-10px) scale(1.05);
    filter: drop-shadow(0 0 20px rgba(0, 140, 255, 0.9));
  }
  100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 10px rgba(0, 140, 255, 0.5));
  }
}


.btn-discord {
  background: #0a43bd;
  color: white;
  padding: 16px 35px;
  border-radius: 12px;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: 0.25s ease;
}


.discord-logo {
  width: 26px;
  height: 26px;
}


.btn-discord:hover {
  background: #0088ff;
  transform: scale(1.12);
  box-shadow: 0 0 15px rgba(174, 0, 255, 0.7);
}
