/* LIQUID AI LOADER */
.liquid-container {
  position: relative;
  width: 200px;
  height: 200px;
  filter: url(#goo);
  margin: 0 auto;
}

.liquid-circle {
  position: absolute;
  background: linear-gradient(135deg, #ff0080, #7928ca);
  border-radius: 50%;
  transform-origin: center center;
}

.liquid-main {
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  z-index: 10;
  box-shadow: 0 0 30px rgba(121, 40, 202, 0.6);
  animation: pulse-core 2s ease-in-out infinite alternate;
}

.liquid-orbit {
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: #0070f3;
  opacity: 0.8;
  animation: orbit 4s linear infinite;
}

.liquid-orbit:nth-child(2) {
  width: 50px;
  height: 50px;
  background: #ff4d4d;
  animation: orbit 6s linear infinite reverse;
}

.liquid-orbit:nth-child(3) {
  width: 30px;
  height: 30px;
  background: #00dfd8;
  animation: orbit 3s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes orbit {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translate(60px) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) translate(60px)
      rotate(-360deg);
  }
}

@keyframes pulse-core {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    box-shadow: 0 0 20px rgba(121, 40, 202, 0.4);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 50px rgba(121, 40, 202, 0.8);
  }
}

/* AI TEXT GLITCH */
.scramble-text {
  font-family: "Courier New", Courier, monospace;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
}

.scramble-text::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  width: 8px;
  background: currentColor;
  opacity: 0.7;
  animation: blink-cursor 0.8s step-end infinite;
}

@keyframes blink-cursor {
  50% {
    opacity: 0;
  }
}
