/* GOLPOOGRO - Lab Space Coming Soon Component Styles */

.coming-soon-visual-container {
  position: absolute;
  top: 15%;
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

/* Glowing background mesh orbs */
.glow-orb-mesh {
  position: absolute;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.25;
  mix-blend-mode: screen;
}

.glow-orb-mesh.primary-glow {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
  animation: float-glowing-orb 8s ease-in-out infinite alternate;
}

.glow-orb-mesh.secondary-glow {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, var(--accent-teal) 0%, transparent 70%);
  animation: float-glowing-orb 12s ease-in-out infinite alternate-reverse;
}

@keyframes float-glowing-orb {
  0% { transform: translate(-10px, -15px) scale(0.9); }
  50% { transform: translate(15px, 10px) scale(1.1); }
  100% { transform: translate(-5px, 15px) scale(1); }
}

/* Orbit lines and animated node elements */
.glow-orbit {
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glow-orbit.orbit-outer {
  width: 220px;
  height: 220px;
  animation: rotate-orbit 24s linear infinite;
}

.glow-orbit.orbit-middle {
  width: 160px;
  height: 160px;
  animation: rotate-orbit 16s linear infinite reverse;
}

.glow-orbit.orbit-inner {
  width: 100px;
  height: 100px;
  animation: rotate-orbit 10s linear infinite;
}

@keyframes rotate-orbit {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Satellite nodes orbiting around the core */
.satellite-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.orbit-outer .satellite-node {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px var(--accent-gold);
}

.orbit-middle .satellite-node {
  bottom: 50%;
  right: 0;
  transform: translate(50%, 50%);
  box-shadow: 0 0 12px var(--accent-teal);
}

.orbit-inner .satellite-node {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px var(--accent-rose);
}

/* Coming Soon Badge */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 4px 10px;
  border-radius: 99px;
  font-family: var(--font-mono, monospace);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
  margin-bottom: 8px;
}
