* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(255, 125, 201, 0.25), transparent 35%),
    radial-gradient(circle at bottom right, rgba(0, 234, 255, 0.22), transparent 35%),
    #07070b;
  overflow-x: hidden;
}

/* PAGE */

.coming-soon-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* CARD */

.coming-soon-card {
  position: relative;
  width: min(100%, 900px);
  padding: 80px 40px;
  text-align: center;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 0 70px rgba(0, 234, 255, 0.12),
    inset 0 0 40px rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

/* ANIMATED BORDER */

.coming-soon-card::before {
  content: "";
  position: absolute;
  inset: -3px;
  background: conic-gradient(
    from 180deg,
    transparent,
    rgba(0, 234, 255, 0.85),
    rgba(255, 125, 201, 0.85),
    transparent
  );
  z-index: -2;
  animation: rotateBorder 5s linear infinite;
}

.coming-soon-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: rgba(7, 7, 11, 0.9);
  border-radius: 30px;
  z-index: -1;
}

/* BACKGROUND GLOWS INSIDE CARD */

.glow-circle {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.35;
  pointer-events: none;
}

.glow-one {
  top: -90px;
  left: -80px;
  background: #00eaff;
}

.glow-two {
  bottom: -90px;
  right: -80px;
  background: #ff7dc9;
}

/* BADGE */

.badge {
  display: inline-block;
  margin-bottom: 22px;
  padding: 9px 20px;
  border-radius: 999px;
  background: rgba(0, 234, 255, 0.12);
  border: 1px solid rgba(0, 234, 255, 0.35);
  color: #00eaff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 0 25px rgba(0, 234, 255, 0.18);
}

/* TITLE */

h1 {
  font-size: clamp(46px, 8vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -4px;
  background: linear-gradient(90deg, #ffffff, #00eaff, #ff7dc9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: floatText 3s ease-in-out infinite;
}

h1 span {
  display: block;
}

/* TEXT */

p {
  max-width: 600px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.7;
}

/* DIVIDER */

.divider {
  width: 140px;
  height: 4px;
  margin: 36px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #00eaff, #ff7dc9);
  box-shadow:
    0 0 20px rgba(0, 234, 255, 0.55),
    0 0 35px rgba(255, 125, 201, 0.35);
}

/* LOADING DOTS */

.loading-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.loading-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #00eaff;
  box-shadow: 0 0 18px #00eaff;
  animation: dotBounce 1.4s infinite ease-in-out;
}

.loading-dots span:nth-child(2) {
  background: #ff7dc9;
  box-shadow: 0 0 18px #ff7dc9;
  animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

/* ANIMATIONS */

@keyframes rotateBorder {
  from {
    transform: rotate(0deg) scale(1.4);
  }

  to {
    transform: rotate(360deg) scale(1.4);
  }
}

@keyframes floatText {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes dotBounce {
  0%,
  80%,
  100% {
    transform: scale(0.75);
    opacity: 0.45;
  }

  40% {
    transform: scale(1.25);
    opacity: 1;
  }
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .coming-soon-card {
    padding: 60px 28px;
    border-radius: 26px;
  }

  .coming-soon-card::after {
    border-radius: 24px;
  }

  h1 {
    letter-spacing: -2px;
  }

  p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .coming-soon-page {
    padding: 25px 14px;
  }

  .coming-soon-card {
    padding: 50px 20px;
  }

  .badge {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  h1 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  p {
    font-size: 15px;
  }
}