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

body,
html {
  width: 100%;
  height: 100dvh;
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
  position: fixed;
  background-color: #0b020c;
}

.stage-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 20, 147, 0.4) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(219, 112, 147, 0.3) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 50% 80%,
      rgba(255, 105, 180, 0.25) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, #120318 0%, #050108 100%);
  background-size: 200% 200%;
  animation: moveLights 12s ease infinite alternate;
  z-index: 1;
}

.stage-background::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15vh;
  background: linear-gradient(
    0deg,
    rgba(255, 20, 147, 0.1) 0%,
    transparent 100%
  );
}

@keyframes moveLights {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 50% 100%;
  }
}

#particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  bottom: -20px;
  background-color: rgba(255, 105, 180, 0.6);
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(255, 20, 147, 0.8);
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-105vh) translateX(15px) scale(0.5);
    opacity: 0;
  }
}

.main-container {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: #ffffff;
}

.logo-placeholder {
  margin-bottom: 30px;
  width: 100%;
  max-width: 400px;
  animation: floatLogo 4s ease-in-out infinite;
}

.logo-placeholder img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.default-logo {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes floatLogo {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.coming-soon-text {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: #fff;
  margin-bottom: 40px;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #ff1493,
    0 0 40px #ff1493;
  animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
  0% {
    text-shadow:
      0 0 5px #fff,
      0 0 10px #fff,
      0 0 20px #ff1493,
      0 0 30px #ff1493,
      0 0 40px #ff69b4;
  }
  100% {
    text-shadow:
      0 0 2px #fff,
      0 0 5px #fff,
      0 0 10px #ff1493,
      0 0 20px #ff1493,
      0 0 25px #ff69b4;
  }
}

.social-icons {
  display: flex;
  gap: 25px;
  margin-top: 10px;
}

.social-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1.3rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: #ff1493;
  color: #fff;
  border-color: #ff69b4;
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(255, 20, 147, 0.6);
}

@media (max-width: 600px) {
  .coming-soon-text {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }
  .logo-placeholder {
    margin-bottom: 20px;
    max-width: 320px;
    animation: floatLogo 4s ease-in-out infinite;
  }
  .default-logo {
    font-size: 1.8rem;
  }
  .social-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}
