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

:root {
  --gradient-primary: linear-gradient(90deg, #D123FF 0%, #00D1FF 100%);
  --color-white: #ffffff;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  background: var(--gradient-primary);
  position: relative;
}

/* Main Container */
.container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

/* Coming Soon Text */
.coming-soon-text {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: 0.1em;
  text-align: center;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1.5s ease-in;
  padding: 0 2rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating Images */
.floating-image {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
}

.floating-image-1 {
  width: 300px;
  height: auto;
  top: 8%;
  left: 5%;
  animation: float 6s ease-in-out infinite;
}

.floating-image-2 {
  width: 120px;
  height: auto;
  top: 15%;
  right: 8%;
  animation: float 7s ease-in-out infinite 1s;
}

.floating-image-3 {
  width: 100px;
  height: auto;
  bottom: 15%;
  left: 10%;
  animation: float 8s ease-in-out infinite 2s;
}

.floating-image-4 {
  width: 110px;
  height: auto;
  bottom: 8%;
  right: 12%;
  animation: float 7.5s ease-in-out infinite 1.5s;
}

.floating-image-5 {
  width: 90px;
  height: auto;
  top: 45%;
  left: 3%;
  animation: float 6.5s ease-in-out infinite 0.5s;
}

.floating-image-6 {
  width: 95px;
  height: auto;
  top: 50%;
  right: 5%;
  animation: float 8.5s ease-in-out infinite 2.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
  .coming-soon-text {
    font-size: clamp(2.5rem, 8vw, 6rem);
  }

  .floating-image-1 {
    width: 200px;
    top: 10%;
    left: 3%;
  }

  .floating-image-2 {
    width: 90px;
    top: 12%;
    right: 5%;
  }

  .floating-image-3 {
    width: 80px;
    bottom: 18%;
    left: 8%;
  }

  .floating-image-4 {
    width: 85px;
    bottom: 10%;
    right: 8%;
  }

  .floating-image-5 {
    width: 70px;
    top: 45%;
    left: 2%;
  }

  .floating-image-6 {
    width: 75px;
    top: 48%;
    right: 3%;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
  .coming-soon-text {
    font-size: clamp(2rem, 10vw, 4rem);
    letter-spacing: 0.08em;
  }

  .floating-image-1 {
    width: 140px;
    top: 12%;
    left: 2%;
  }

  .floating-image-2 {
    width: 70px;
    top: 10%;
    right: 3%;
  }

  .floating-image-3 {
    width: 60px;
    bottom: 20%;
    left: 5%;
  }

  .floating-image-4 {
    width: 65px;
    bottom: 12%;
    right: 5%;
  }

  .floating-image-5 {
    width: 55px;
    top: 45%;
    left: 2%;
  }

  .floating-image-6 {
    width: 58px;
    top: 50%;
    right: 2%;
  }
}

/* Responsive Design - Small Mobile */
@media (max-width: 480px) {
  .coming-soon-text {
    font-size: clamp(1.8rem, 12vw, 3rem);
    letter-spacing: 0.05em;
    padding: 0 1.5rem;
  }

  .floating-image-1 {
    width: 100px;
    top: 15%;
    left: 2%;
  }

  .floating-image-2 {
    width: 50px;
    top: 12%;
    right: 2%;
  }

  .floating-image-3 {
    width: 45px;
    bottom: 25%;
    left: 3%;
  }

  .floating-image-4 {
    width: 48px;
    bottom: 15%;
    right: 3%;
  }

  .floating-image-5 {
    width: 40px;
    top: 48%;
    left: 1%;
  }

  .floating-image-6 {
    width: 42px;
    top: 52%;
    right: 1%;
  }
}

/* Responsive Design - Extra Small Mobile */
@media (max-width: 375px) {
  .coming-soon-text {
    font-size: clamp(1.5rem, 12vw, 2.5rem);
    padding: 0 1rem;
  }

  .floating-image-1 {
    width: 80px;
  }

  .floating-image-2 {
    width: 40px;
  }

  .floating-image-3 {
    width: 38px;
  }

  .floating-image-4 {
    width: 40px;
  }

  .floating-image-5 {
    width: 35px;
  }

  .floating-image-6 {
    width: 36px;
  }
}

/* Responsive Design - Ultra Small Mobile */
@media (max-width: 320px) {
  .coming-soon-text {
    font-size: clamp(1.3rem, 13vw, 2rem);
    letter-spacing: 0.03em;
  }

  .floating-image-1 {
    width: 70px;
  }

  .floating-image-2 {
    width: 35px;
  }

  .floating-image-3 {
    width: 32px;
  }

  .floating-image-4 {
    width: 34px;
  }

  .floating-image-5 {
    width: 30px;
  }

  .floating-image-6 {
    width: 32px;
  }
}

/* Large Desktop */
@media (min-width: 1441px) {
  .coming-soon-text {
    font-size: clamp(5rem, 10vw, 10rem);
  }

  .floating-image-1 {
    width: 350px;
  }

  .floating-image-2 {
    width: 140px;
  }

  .floating-image-3 {
    width: 120px;
  }

  .floating-image-4 {
    width: 130px;
  }

  .floating-image-5 {
    width: 110px;
  }

  .floating-image-6 {
    width: 115px;
  }
}

/* Ultra-wide Desktop */
@media (min-width: 2560px) {
  .coming-soon-text {
    font-size: clamp(6rem, 10vw, 12rem);
  }

  .floating-image-1 {
    width: 450px;
  }

  .floating-image-2 {
    width: 180px;
  }

  .floating-image-3 {
    width: 150px;
  }

  .floating-image-4 {
    width: 160px;
  }

  .floating-image-5 {
    width: 140px;
  }

  .floating-image-6 {
    width: 145px;
  }
}
