* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  background: #101;
  color: #e0e0e0;
}

/* Animated background */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/images/centerc.png') center center / cover no-repeat;
  z-index: 0;
  animation: drift 30s ease-in-out infinite alternate;
  filter: brightness(0.75);
}

/* Particle canvas: above wallpaper, below content */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

@keyframes drift {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.05) translate(8px, -8px); }
}

/* Centered logo/title */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

h1 {
  font-size: 4rem;
  color: #b26cff;
  text-shadow: 0 0 20px #7a3ee6;
  letter-spacing: 4px;
}

p {
  font-size: 1.3rem;
  color: #ccc;
  margin-top: 10px;
  letter-spacing: 1px;
}

/* Ensure content stays above background + particles */
.content,
.footer {
  position: relative;
  z-index: 1;
}

.footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}
