*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: sans-serif;
  direction: rtl;
  color: #fff;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  /* 🌌 Neon Animated Background */
  background:
    radial-gradient(circle at 20% 20%, rgba(138, 43, 226, 0.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(46, 204, 113, 0.25), transparent 45%),
    #0b0b0f;
  background-size: 200% 200%;
  animation: neonFlow 20s ease-in-out infinite;
}

/* =========================
   Main Layout
========================= */
.coming-soon {
  text-align: center;
  padding: 2rem;
  max-width: 500px;
}

.coming-soon h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.subtitle {
  color: #b3b3ff;
  margin-bottom: 2rem;
}

.footer-text {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.7;
}

/* =========================
   Countdown
========================= */
.countdown {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.time-box {
  width: 90px;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  animation: floatBox 3s ease-in-out infinite;
}

.time-box span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
}

.time-box small {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* =========================
   Background Effects
========================= */
.bg-effects {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

/* 🔮 Blobs */
.blob {
  position: absolute;
  width: 400px;
  height: 400px;
  filter: blur(120px);
  opacity: 0.6;
}

.blob.purple {
  background: #9b5cff;
  top: 10%;
  left: 10%;
  animation: blobFloat1 18s ease-in-out infinite;
}

.blob.green {
  background: #2aff9d;
  bottom: 10%;
  right: 15%;
  animation: blobFloat2 22s ease-in-out infinite;
}

/* ✨ Floating Particles */
.bg-effects::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 120px 120px;
  animation: particleMove 60s linear infinite;
  opacity: 0.25;
}

/* 🌊 Rotating Light Wave */
body::after {
  content: "";
  position: fixed;
  inset: -30%;
  background: conic-gradient(
    from 0deg,
    rgba(155, 92, 255, 0.12),
    rgba(42, 255, 157, 0.12),
    rgba(155, 92, 255, 0.12)
  );
  animation: slowSpin 40s linear infinite;
  filter: blur(140px);
  z-index: -3;
}
/* =========================
   Animations
========================= */
@keyframes neonFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes floatBox {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@keyframes blobFloat1 {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(60px,-40px) scale(1.1); }
  100% { transform: translate(0,0) scale(1); }
}

@keyframes blobFloat2 {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(-50px,50px) scale(1.15); }
  100% { transform: translate(0,0) scale(1); }
}

@keyframes particleMove {
  from { background-position: 0 0; }
  to   { background-position: 300px 600px; }
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* =========================
   Responsive (Mobile)
========================= */
@media (max-width: 600px) {

  .coming-soon h1 {
    font-size: 2.1rem;
  }

  .subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .countdown {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .time-box {
    width: 45%;
    padding: 0.9rem 0;
  }

  .time-box span {
    font-size: 1.6rem;
  }

  .footer-text {
    font-size: 0.85rem;
  }

  body::after,
  .bg-effects::after {
    animation-duration: 90s;
    opacity: 0.15;
  }

  .blob {
    filter: blur(160px);
  }
}
