/* ============================================
   HYPIXOR — Coming Soon Page Styles
   Premium animated mascot + message
   ============================================ */

.coming-soon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 55vh;
  text-align: center;
  padding: var(--space-8) var(--space-4);
  position: relative;
}


/* ——— The Mascot Scene ——— */
.mascot-scene {
  position: relative;
  width: 200px;
  height: 220px;
  margin-bottom: var(--space-6);
}

/* Glow pool underneath */
.mascot-shadow {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 16px;
  background: radial-gradient(ellipse, rgba(226, 51, 107, 0.35) 0%, transparent 70%);
  border-radius: 50%;
  animation: shadowPulse 3s ease-in-out infinite;
  filter: blur(3px);
}

/* The main mascot body wrapper */
.mascot-body-wrap {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: mascotFloat 3s ease-in-out infinite;
}

/* Main cube body (flat 2D with depth illusion) */
.mascot-body {
  width: 80px;
  height: 80px;
  background: linear-gradient(145deg, #E2336B 0%, #c62a5c 100%);
  border-radius: 18px;
  position: relative;
  box-shadow:
    0 8px 0 0 #a5234f,
    0 12px 25px rgba(226, 51, 107, 0.35),
    inset 0 -4px 12px rgba(0, 0, 0, 0.15),
    inset 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* Top highlight strip for 3D illusion */
.mascot-body::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 8px;
  right: 8px;
  height: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 100%);
  border-radius: 10px 10px 0 0;
}

/* Side edge for depth */
.mascot-body::after {
  content: '';
  position: absolute;
  top: 6px;
  right: 4px;
  bottom: 6px;
  width: 8px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.12) 100%);
  border-radius: 0 10px 10px 0;
}


/* ——— Face ——— */
.mascot-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.mascot-eyes {
  display: flex;
  gap: 16px;
  margin-top: -2px;
}

.mascot-eye {
  width: 10px;
  height: 14px;
  background: white;
  border-radius: 50%;
  position: relative;
  animation: eyeBlink 5s ease-in-out infinite;
}

/* Shine dot in eye */
.mascot-eye::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  top: 2px;
  right: 1px;
}

.mascot-mouth {
  width: 20px;
  height: 10px;
  border: 3px solid white;
  border-top: none;
  border-radius: 0 0 12px 12px;
  margin-top: 6px;
}

/* Cheek blush */
.mascot-cheek {
  position: absolute;
  width: 14px;
  height: 8px;
  background: rgba(255, 180, 200, 0.3);
  border-radius: 50%;
  top: 50px;
  z-index: 2;
}

.mascot-cheek--left { left: 10px; }
.mascot-cheek--right { right: 10px; }


/* ——— Orbital Ring ——— */
.mascot-orbit {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 150px;
  height: 40px;
  margin-left: -75px;
  border: 1.5px solid rgba(226, 51, 107, 0.18);
  border-radius: 50%;
  animation: orbitSpin 10s linear infinite;
}

.orbit-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.orbit-dot--1 {
  background: #E2336B;
  box-shadow: 0 0 10px rgba(226, 51, 107, 0.5);
  top: -3px;
  left: 50%;
  margin-left: -3px;
}

.orbit-dot--2 {
  background: #f97316;
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
  bottom: -3px;
  left: 50%;
  margin-left: -3px;
}

.orbit-dot--3 {
  background: #a855f7;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
  top: 50%;
  left: -3px;
  margin-top: -3px;
}


/* ——— Floating Particles ——— */
.mascot-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.mascot-particle--1 {
  width: 4px; height: 4px;
  background: #E2336B;
  top: 20px; left: 30px;
  animation: particleFloat 3s ease-in-out infinite 0s;
}

.mascot-particle--2 {
  width: 3px; height: 3px;
  background: #f97316;
  top: 15px; right: 35px;
  animation: particleFloat 3.5s ease-in-out infinite 0.5s;
}

.mascot-particle--3 {
  width: 5px; height: 5px;
  background: #a855f7;
  bottom: 40px; left: 20px;
  animation: particleFloat 4s ease-in-out infinite 1s;
}

.mascot-particle--4 {
  width: 3px; height: 3px;
  background: #3b82f6;
  bottom: 45px; right: 25px;
  animation: particleFloat 3.2s ease-in-out infinite 1.5s;
}

.mascot-particle--5 {
  width: 4px; height: 4px;
  background: #10b981;
  top: 55px; left: 12px;
  animation: particleFloat 3.8s ease-in-out infinite 2s;
}

.mascot-particle--6 {
  width: 3px; height: 3px;
  background: #f43f5e;
  top: 45px; right: 14px;
  animation: particleFloat 4.2s ease-in-out infinite 0.8s;
}


/* ——— Star Sparkles ——— */
.mascot-star {
  position: absolute;
  opacity: 0;
}

.mascot-star::before,
.mascot-star::after {
  content: '';
  position: absolute;
  background: white;
  border-radius: 1px;
}

.mascot-star::before {
  width: 2px;
  height: 10px;
  top: -5px;
  left: 0;
}

.mascot-star::after {
  width: 10px;
  height: 2px;
  left: -4px;
  top: 0;
}

.mascot-star--1 {
  top: 10px; right: 18px;
  animation: starTwinkle 2.5s ease-in-out infinite 0s;
}

.mascot-star--2 {
  bottom: 35px; left: 14px;
  animation: starTwinkle 3s ease-in-out infinite 1.2s;
}

.mascot-star--3 {
  top: 35px; left: 5px;
  animation: starTwinkle 2.8s ease-in-out infinite 2s;
}


/* ——— Text Styles ——— */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 16px;
  background: rgba(226, 51, 107, 0.12);
  border: 1px solid rgba(226, 51, 107, 0.25);
  border-radius: var(--radius-full);
  color: var(--brand-primary);
  font-size: var(--text-xs);
  font-weight: var(--weight-semi);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-3);
  animation: badgePulse 3s ease-in-out infinite;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--brand-primary);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

.coming-soon-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: var(--weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
  line-height: 1.2;
}

.coming-soon-title span {
  background: linear-gradient(135deg, var(--brand-primary), #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coming-soon-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 420px;
  line-height: var(--leading-relaxed);
}

.coming-soon-back {
  margin-top: var(--space-6);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: linear-gradient(135deg, var(--brand-primary), #c62a5c);
  color: white;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: var(--weight-semi);
  font-size: var(--text-sm);
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(226, 51, 107, 0.25);
  position: relative;
  overflow: hidden;
}

.coming-soon-back::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.coming-soon-back:hover {
  background: linear-gradient(135deg, #c62a5c, var(--brand-primary));
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(226, 51, 107, 0.4);
}

.coming-soon-back:hover::before {
  transform: translateX(100%);
}


/* ——— Animations ——— */
@keyframes mascotFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-14px); }
}

@keyframes shadowPulse {
  0%, 100% { opacity: 0.6; width: 90px; }
  50% { opacity: 0.3; width: 70px; }
}

@keyframes eyeBlink {
  0%, 42%, 58%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.08); }
}

@keyframes orbitSpin {
  0% { transform: rotateZ(0deg); }
  100% { transform: rotateZ(360deg); }
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  30% { opacity: 1; transform: translateY(-8px) scale(1); }
  70% { opacity: 1; transform: translateY(-20px) scale(1); }
  100% { opacity: 0; transform: translateY(-35px) scale(0); }
}

@keyframes starTwinkle {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 0.9; transform: scale(1) rotate(45deg); }
}

@keyframes badgePulse {
  0%, 100% { border-color: rgba(226, 51, 107, 0.25); }
  50% { border-color: rgba(226, 51, 107, 0.45); }
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}


/* ——— Responsive ——— */
@media (max-width: 480px) {
  .mascot-scene {
    width: 160px;
    height: 180px;
  }

  .mascot-body {
    width: 65px;
    height: 65px;
    border-radius: 14px;
  }

  .mascot-orbit {
    width: 120px;
    height: 32px;
    margin-left: -60px;
  }

  .mascot-eyes { gap: 12px; }
  .mascot-eye { width: 8px; height: 11px; }
  .mascot-mouth { width: 16px; height: 8px; }
}
