/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Background */
body {
  min-height: 100vh;
  background: radial-gradient(circle at top left, #12003d, #000014);
  color: white;
  overflow: hidden;
}

/* Particle canvas */
#bgCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Center content */
.content {
  position: fixed;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* Gradient text */
.coming-soon {
  font-size: clamp(22px, 6vw, 54px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  background: linear-gradient(90deg, #00f6ff, #ff00ea, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0, 246, 255, 0.15), 0 0 35px rgba(255, 0, 234, 0.1);
  margin-bottom: 1.5rem;
}

/* Logo */
.logo {
  width: clamp(120px, 25vw, 220px);
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo:hover {
  opacity: 1;
  transform: scale(1.04);
}

/* Hide everything else */
header, footer, nav, .sections-container, .hero-content {
  display: none !important;
}
