body {
  margin: 0;
  font-family: var(--font-body, 'Inter', sans-serif);
  background: transparent;
  /* Mesh background shows through */
  color: var(--text-main);
  overflow-x: hidden;
}

header {
  padding: 120px 6% 40px;
  /* Resolve Nav Overlap */
  text-align: center;
}

header h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  background: linear-gradient(to bottom, #F8FAFC, #94A3B8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.ad-mobile {
  display: none;
}

@media(max-width: 768px) {
  .ad-mobile {
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 5px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  body {
    padding-bottom: 60px;
  }

  /* prevent content hiding behind ad */
}


.ad-top {
  display: flex;
  justify-content: center;
  margin: 15px 0;
}

@media(max-width: 768px) {
  .ad-top {
    display: none;
  }

  /* hide large banner on mobile */
}



.search-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 1.5rem;
}

#searchBar {
  width: 100%;
  max-width: 420px;
  padding: 12px 15px;
  border-radius: 25px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--text-main);
  backdrop-filter: blur(10px);
  outline: none;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

#searchBar:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
}

main {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  padding: 20px;
}

.model-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.model-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 15px 45px rgba(2, 132, 199, 0.2);
}

.model-card p {
  color: var(--text-main);
  font-weight: 600;
  margin: 15px 0;
  font-size: 1.1rem;
}

.model {
  width: 150px;
  height: 150px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;

}

/* --- MODELS PREVIEW --- */

/* Rotating Cube */
.rotating-cube {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ff6b6b, #ffcc70);
  animation: rotateCube 3s infinite linear;
}

@keyframes rotateCube {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Bouncing Ball */
.bouncing-ball {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #6b9aff, #1e3c72);
  border-radius: 50%;
  animation: bounce 1s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-50px);
  }
}

/* Spinning Ring */
.spinning-ring {
  width: 80px;
  height: 80px;
  border: 8px solid #ccc;
  border-top: 8px solid #ff4757;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* Pulsing Square */
.pulsing-square {
  width: 70px;
  height: 70px;
  background: #2ed573;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

/* Wave Lines */
.wave-lines {
  width: 100px;
  height: 20px;
  background: linear-gradient(90deg, #70a1ff 25%, transparent 25%, transparent 50%, #70a1ff 50%, #70a1ff 75%, transparent 75%);
  background-size: 40px 20px;
  animation: wave 1s linear infinite;
}

@keyframes wave {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 40px 0;
  }
}

/* --- Copy Button --- */
.copy-btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.copy-btn:hover {
  background: var(--accent);
  box-shadow: 0 6px 20px var(--accent-glow);
  transform: translateY(-2px);
}


/* Default sizes for all models */
.spinning-gradient-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: conic-gradient(#ff6b6b, #feca57, #1dd1a1, #5f27cd, #ff6b6b);
  animation: spinGrad 3s linear infinite;
}

@keyframes spinGrad {
  to {
    transform: rotate(360deg);
  }
}

.floating-dots {
  width: 100px;
  height: 20px;
  display: flex;
  justify-content: space-between;
}

.floating-dots::before,
.floating-dots::after,
.floating-dots div {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: #1e90ff;
  border-radius: 50%;
  animation: floatUp 1.2s infinite ease-in-out;
}

.floating-dots::after {
  animation-delay: 0.2s;
}

.floating-dots div {
  animation-delay: 0.4s;
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.neon-square {
  width: 80px;
  height: 80px;
  background: #111;
  border: 3px solid #0ff;
  box-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
  }

  to {
    box-shadow: 0 0 30px #0ff, 0 0 60px #0ff;
  }
}

.loading-bars {
  width: 80px;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.loading-bars div {
  width: 10px;
  height: 10px;
  background: #ff4757;
  animation: growBar 1s infinite;
}

.loading-bars div:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-bars div:nth-child(3) {
  animation-delay: 0.4s;
}

.loading-bars div:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes growBar {

  0%,
  100% {
    height: 10px;
  }

  50% {
    height: 40px;
  }
}

.color-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ff6b6b;
  animation: changeColor 3s infinite alternate;
}

@keyframes changeColor {
  0% {
    background: #ff6b6b;
  }

  25% {
    background: #feca57;
  }

  50% {
    background: #1dd1a1;
  }

  75% {
    background: #54a0ff;
  }

  100% {
    background: #5f27cd;
  }
}

.glow-text {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 30px #0ff;
  animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
  from {
    text-shadow: 0 0 5px #0ff, 0 0 10px #0ff;
  }

  to {
    text-shadow: 0 0 20px #0ff, 0 0 40px #0ff;
  }
}

.gradient-text {
  font-size: 26px;
  font-weight: bold;
  background: linear-gradient(90deg, #ff6b6b, #feca57, #1dd1a1, #54a0ff, #5f27cd);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: moveGradient 4s linear infinite;
}

@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.moving-gradient-bg {
  width: 120px;
  height: 80px;
  border-radius: 10px;
  background: linear-gradient(270deg, #ff6b6b, #feca57, #1dd1a1, #54a0ff);
  background-size: 800% 800%;
  animation: bgMove 6s ease infinite;
}

@keyframes bgMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.bg-stripes {
  width: 120px;
  height: 80px;
  background: repeating-linear-gradient(45deg,
      #ff6b6b,
      #ff6b6b 10px,
      #1dd1a1 10px,
      #1dd1a1 20px);
  background-size: 200% 200%;
  animation: moveStripes 3s linear infinite;
}

@keyframes moveStripes {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 100% 100%;
  }
}

.cube-bg {
  perspective: 800px;
  width: 120px;
  height: 120px;
}

.cube {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: rotateCube 6s infinite linear;
}

.cube span {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(0, 255, 200, 0.6);
  border: 2px solid #0ff;
}

.cube span:nth-child(1) {
  transform: rotateY(0deg) translateZ(60px);
}

.cube span:nth-child(2) {
  transform: rotateY(90deg) translateZ(60px);
}

.cube span:nth-child(3) {
  transform: rotateY(180deg) translateZ(60px);
}

.cube span:nth-child(4) {
  transform: rotateY(-90deg) translateZ(60px);
}

.cube span:nth-child(5) {
  transform: rotateX(90deg) translateZ(60px);
}

.cube span:nth-child(6) {
  transform: rotateX(-90deg) translateZ(60px);
}

@keyframes rotateCube {
  from {
    transform: rotateX(0) rotateY(0);
  }

  to {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

.globe {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #0ff, #000);
  box-shadow: inset -20px 0 30px rgba(0, 0, 0, 0.8);
  animation: spinGlobe 6s infinite linear;
}

@keyframes spinGlobe {
  from {
    transform: rotateY(0);
  }

  to {
    transform: rotateY(360deg);
  }
}

.tunnel {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, transparent 20%, #0ff 20%, #0ff 40%, transparent 40%, transparent 60%, #0ff 60%, #0ff 80%, transparent 80%);
  background-size: 60px 60px;
  border-radius: 50%;
  animation: tunnelMove 2s linear infinite;
}

@keyframes tunnelMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 60px 60px;
  }
}

.particles {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #0ff 2px, transparent 2px);
  background-size: 20px 20px;
  animation: particlesMove 5s linear infinite;
}

@keyframes particlesMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 100px 100px;
  }
}

.sphere {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #0ff, #00f, #000);
  box-shadow: 0 0 30px #0ff, inset 0 0 30px #00f;
  animation: float 3s ease-in-out infinite alternate;
}

@keyframes float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-20px);
  }
}

.eye {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 50% 50%, #fff 70%, #ccc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.iris {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #0ff, #00a, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: eyeMove 3s ease-in-out infinite alternate;
}

.pupil {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: black;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

@keyframes eyeMove {
  from {
    transform: translate(10px, 5px);
  }

  to {
    transform: translate(-10px, -5px);
  }
}

.neon-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: 0 0 20px #0ff, 0 0 40px #0ff;
  border: 2px solid #0ff;
  animation: ringGlow 1.5s linear infinite alternate;
}

@keyframes ringGlow {
  0% {
    box-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
  }

  100% {
    box-shadow: 0 0 30px #0ff, 0 0 60px #0ff;
  }
}

.torus {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 8px solid #0ff;
  border-top-color: transparent;
  border-bottom-color: transparent;
  animation: torusSpin 2s linear infinite;
}

@keyframes torusSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.tunnels {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #0ff, #00f, #0ff);
  animation: tunnelSpin 2s linear infinite;
}

@keyframes tunnelSpin {
  from {
    transform: rotate(0deg) scale(1);
  }

  to {
    transform: rotate(360deg) scale(1.1);
  }
}

.triangle {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid #0ff;
  animation: floatTri 2s ease-in-out infinite alternate;
}

@keyframes floatTri {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-20px) rotate(360deg);
  }
}

.character-card {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  justify-content: center;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.character-card canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.button-model {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
}

.neon-btn {
  padding: 12px 24px;
  border: 2px solid #0ff;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  color: #0ff;
  font-weight: bold;
  cursor: pointer;
  text-shadow: 0 0 6px #0ff;
  transition: all 0.3s ease;
}

.neon-btn:hover {
  background: #0ff;
  color: #000;
  box-shadow: 0 0 20px #0ff, 0 0 40px #0ff, 0 0 60px #0ff;
  transform: scale(1.05);
}

.glow-btn {
  padding: 12px 28px;
  border: 2px solid #ff0;
  border-radius: 16px;
  background: transparent;
  color: #ff0;
  font-weight: bold;
  cursor: pointer;
  text-shadow: 0 0 4px #ff0;
  transition: all 0.3s ease;
}

.glow-btn:hover {
  box-shadow: 0 0 12px #ff0, 0 0 24px #ff0, 0 0 36px #ff0;
  transform: scale(1.05);
}

.btn-3d {
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  background: #0ff;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 6px #00cccc;
  transition: all 0.2s ease;
}

.btn-3d:active {
  box-shadow: 0 2px #00cccc;
  transform: translateY(4px);
}

.gradient-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(45deg, #ff00cc, #3333ff, #00ffcc);
  background-size: 300% 300%;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.4s ease;
  animation: gradientAnim 4s ease infinite;
}

@keyframes gradientAnim {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.gradient-btn:hover {
  transform: scale(1.05);
}

.glass-btn {
  padding: 12px 24px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.ring-btn {
  padding: 12px 28px;
  border: 2px solid #ff0;
  border-radius: 50px;
  background: transparent;
  color: #ff0;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.ring-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid #ff0;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0.5;
  animation: ringPulse 1s infinite;
}

@keyframes ringPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }
}

.ring-btn:hover {
  transform: scale(1.1);
}

.particle-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 14px;
  background: #222;
  color: #0ff;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.particle-btn::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0ff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: particle 1s infinite;
}

@keyframes particle {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }

  100% {
    transform: translate(calc(-50% + 50px), calc(-50% - 50px)) scale(1.5);
    opacity: 0;
  }
}

.particle-btn:hover::after {
  animation-play-state: running;
}

.glitch-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 10px;
  background: #111;
  color: #f0f;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.glitch-btn::before,
.glitch-btn::after {
  content: "ERROR";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #0ff;
  background: transparent;
  clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
  animation: glitch 1s infinite linear alternate-reverse;
}

.glitch-btn::after {
  clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%);
  color: #ff0;
  animation-delay: 0.2s;
}

@keyframes glitch {
  0% {
    transform: translate(0, 0);
  }

  20% {
    transform: translate(-2px, 2px);
  }

  40% {
    transform: translate(2px, -2px);
  }

  60% {
    transform: translate(-1px, 1px);
  }

  80% {
    transform: translate(1px, -1px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.cyber-btn {
  padding: 12px 28px;
  border: 2px solid #ff00ff;
  border-radius: 12px;
  background: transparent;
  color: #ff00ff;
  font-weight: bold;
  cursor: pointer;
  text-shadow: 0 0 6px #ff00ff;
  position: relative;
  overflow: hidden;
}

.cyber-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #ff00ff, #00ffff, #ff00ff);
  transition: all 0.4s ease;
  z-index: 0;
}

.cyber-btn:hover::before {
  left: 0;
}

.cyber-btn:hover {
  color: #000;
}

.neon-pulse {
  padding: 12px 28px;
  border: 2px solid #0ff;
  border-radius: 14px;
  background: transparent;
  color: #0ff;
  font-weight: bold;
  cursor: pointer;
  text-shadow: 0 0 6px #0ff;
  transition: all 0.3s ease;
  animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 8px #0ff, 0 0 16px #0ff, 0 0 24px #0ff;
  }

  100% {
    box-shadow: 0 0 16px #0ff, 0 0 32px #0ff, 0 0 48px #0ff;
  }
}

.neon-pulse:hover {
  transform: scale(1.1);
}

.grad-pulse-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(45deg, #ff0, #f0f, #0ff);
  background-size: 400% 400%;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  animation: gradPulse 3s ease infinite;
}

@keyframes gradPulse {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.grad-pulse-btn:hover {
  transform: scale(1.05);
}

.ripple-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 14px;
  background: #222;
  color: #0ff;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.ripple-btn::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(0, 255, 255, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.5s;
}

.ripple-btn:active::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: 0s;
}

.neon-shadow-btn {
  padding: 12px 28px;
  border: 2px solid #0ff;
  border-radius: 14px;
  background: #111;
  color: #0ff;
  font-weight: bold;
  text-shadow: 0 0 10px #0ff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.neon-shadow-btn:hover {
  box-shadow: 0 0 20px #0ff, 0 0 40px #0ff, 0 0 60px #0ff;
  transform: scale(1.1);
}

.holo-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  background-size: 200% 200%;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  animation: holoAnim 3s linear infinite;
}

@keyframes holoAnim {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.holo-btn:hover {
  transform: scale(1.05);
}

.bolt-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 12px;
  background: #111;
  color: #0ff;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.bolt-btn::after {
  content: "⚡";
  position: absolute;
  font-size: 24px;
  top: -30px;
  left: calc(50% - 12px);
  color: #0ff;
  opacity: 0;
  animation: bolt 1s infinite;
}

@keyframes bolt {

  0%,
  80%,
  100% {
    top: -30px;
    opacity: 0;
  }

  50% {
    top: 10px;
    opacity: 1;
  }
}

.bolt-btn:hover {
  transform: scale(1.1);
}

.pulse-neon {
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid #0ff;
  background: #9900ff;
  color: rgb(255, 255, 255);
  font-size: 16px;
  outline: none;
  animation: pulseBorder 2s infinite;
}

@keyframes pulseBorder {

  0%,
  100% {
    border-color: #0ff;
    box-shadow: 0 0 8px #0ff;
  }

  50% {
    border-color: #f0f;
    box-shadow: 0 0 16px #f0f;
  }
}

.pulse-neon:focus {
  transform: scale(1.02);
}

.glitch-input {
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid #0ff;
  background: #00ffdd;
  color: #0ff;
  font-size: 16px;
  outline: none;
  position: relative;
  text-shadow: 0 0 2px #0ff;
  transition: all 0.3s ease;
}

.glitch-input::after {
  content: attr(placeholder);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  color: #f0f;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.glitch-input:focus {
  box-shadow: 0 0 10px #0ff, 0 0 20px #f0f;
}

.cyber-outline {
  padding: 12px 20px;
  border-radius: 12px;
  border: 2px solid #0ff;
  background: #ffee00;
  color: #0ff;
  font-size: 16px;
  outline: none;
  text-shadow: 0 0 4px #0ff;
  transition: all 0.3s ease;
}

.cyber-outline:focus {
  border-color: #f0f;
  box-shadow: 0 0 12px #0ff, 0 0 24px #f0f;
}

.holo-input {
  padding: 12px 20px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(45deg, #ff0, #f0f, #0ff);
  background-size: 200% 200%;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  outline: none;
  animation: holoAnim 3s linear infinite;
}

@keyframes holoAnim {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.holo-input:focus {
  transform: scale(1.03);
}

.neon-glass {
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid #0ff;
  background: rgba(255, 208, 0, 0.05);
  color: #0ff;
  font-size: 16px;
  outline: none;
  text-shadow: 0 0 4px #0ff;
  transition: all 0.3s ease;
}

.neon-glass:focus {
  background: rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 10px #0ff;
}

.particle-input {
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid #0ff;
  background: #00e6f7;
  color: #0ff;
  font-size: 16px;
  outline: none;
  position: relative;
  z-index: 1;
}

.particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.neon-shadow {
  padding: 12px 20px;
  border-radius: 20px;
  border: 1px solid #0ff;
  background: #d400ff;
  color: rgb(255, 255, 255);
  font-size: 16px;
  outline: none;
  box-shadow: 0 0 5px #0ff;
  transition: all 0.3s ease;
}

.neon-shadow:focus {
  box-shadow: 0 0 12px #0ff, 0 0 20px #f0f;
  transform: scale(1.02);
}

.grad-input {
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(270deg, #0ff, #f0f, #ff0);
  background-size: 600% 600%;
  font-size: 16px;
  color: #48daff;
  outline: none;
  font-weight: bold;
  animation: gradAnim 5s ease infinite;
}

@keyframes gradAnim {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.glow-outline {
  width: 200px;
  height: 25px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 2px solid #0ff;
  background: #00ff22;
  color: #0ff;
  outline: none;
  font-size: 2px;
  transition: all 0.3s ease;
}

.glow-outline:focus {
  box-shadow: 0 0 12px #0ff, 0 0 20px #f0f;
  border-color: #f0f;
}

.float-input {
  position: relative;
  margin: 20px 0;
}

.float-input input {
  padding: 12px 12px;
  font-size: 16px;
  border-radius: 10px;
  border: 2px solid #0ff;
  outline: none;
  background: #ff3838;
  color: #0ff;
}

.float-input label {
  position: absolute;
  left: 12px;
  top: 12px;
  color: #0ff;
  pointer-events: none;
  transition: 0.3s ease all;
}

.float-input input:focus+label,
.float-input input:not(:placeholder-shown)+label {
  top: -10px;
  font-size: 12px;
  color: #f0f;
}

.glitch-text {
  font-size: 48px;
  color: #0ff;
  position: relative;
  font-weight: bold;
  text-align: center;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #f0f;
  overflow: hidden;
}

.glitch-text::before {
  animation: glitchTop 1s infinite linear alternate-reverse;
}

.glitch-text::after {
  color: #ff0;
  animation: glitchBottom 1s infinite linear alternate-reverse;
}

@keyframes glitchTop {
  0% {
    clip: rect(0, 9999px, 5px, 0);
    transform: translate(-2px, -2px);
  }

  50% {
    clip: rect(0, 9999px, 10px, 0);
    transform: translate(2px, 2px);
  }

  100% {
    clip: rect(0, 9999px, 5px, 0);
    transform: translate(-2px, -2px);
  }
}

@keyframes glitchBottom {
  0% {
    clip: rect(10px, 9999px, 20px, 0);
    transform: translate(2px, 2px);
  }

  50% {
    clip: rect(10px, 9999px, 15px, 0);
    transform: translate(-2px, -2px);
  }

  100% {
    clip: rect(10px, 9999px, 20px, 0);
    transform: translate(2px, 2px);
  }
}

.shimmer-text {
  font-size: 48px;
  font-weight: bold;
  color: #0ff;
  position: relative;
  overflow: hidden;
}

.shimmer-text::after {
  content: "KAFE";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerMove 2s infinite;
}

@keyframes shimmerMove {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.grad-text {
  font-size: 48px;
  font-weight: bold;
  background: linear-gradient(270deg, #0ff, #f0f, #ff0, #f0f, #0ff);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradMove 5s ease infinite;
}

@keyframes gradMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.neon-text {
  font-size: 48px;
  color: #0ff;
  text-align: center;
  text-shadow:
    0 0 5px #0ff,
    0 0 10px #0ff,
    0 0 20px #0ff,
    0 0 40px #0ff;
  animation: neonBlink 1.5s infinite alternate;
}

@keyframes neonBlink {
  0% {
    text-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #0ff;
  }

  50% {
    text-shadow: 0 0 20px #0ff, 0 0 40px #0ff, 0 0 60px #0ff;
  }

  100% {
    text-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #0ff;
  }
}

.shadow3d-text {
  font-size: 48px;
  font-weight: bold;
  color: #0ff;
  text-shadow: 2px 2px 0 #00f, 4px 4px 0 #f0f, 6px 6px 0 #f00;
}

.sparkle-text {
  font-size: 48px;
  font-weight: bold;
  color: #0ff;
  position: relative;
}

.sparkle-text::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 2%, transparent 70%);
  background-size: 10px 10px;
  mix-blend-mode: screen;
  animation: sparkle 1s linear infinite;
}

@keyframes sparkle {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 100% 100%;
  }
}

.glow-outline {
  font-size: 48px;
  font-weight: bold;
  color: #0ff;
  text-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 15px #0ff;
  animation: glowOutline 2s infinite alternate;
}

@keyframes glowOutline {
  0% {
    text-shadow: 0 0 5px #0ff, 0 0 10px #0ff;
  }

  50% {
    text-shadow: 0 0 20px #0ff, 0 0 40px #0ff;
  }

  100% {
    text-shadow: 0 0 5px #0ff, 0 0 10px #0ff;
  }
}

.pulse-glow {
  font-size: 48px;
  font-weight: bold;
  color: #0ff;
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
  animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
  0% {
    text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
    transform: scale(1);
  }

  100% {
    text-shadow: 0 0 30px #0ff, 0 0 50px #0ff;
    transform: scale(1.05);
  }
}

.typing {
  font-size: 48px;
  font-family: monospace;
  color: #0ff;
  border-right: 3px solid #0ff;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: type 2s steps(4) forwards, blink 0.6s step-end infinite alternate;
}

@keyframes type {
  0% {
    width: 0;
  }

  100% {
    width: 4ch;
  }
}

@keyframes blink {

  0%,
  50%,
  100% {
    border-color: #0ff;
  }

  25%,
  75% {
    border-color: transparent;
  }
}

.rainbow-wave {
  font-size: 48px;
  font-weight: bold;
  background: linear-gradient(90deg, #f00, #f90, #ff0, #0f0, #0ff, #00f, #f0f, #f00);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: wave 3s linear infinite;
}

@keyframes wave {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

.spinner {
  width: 80px;
  height: 80px;
  border: 8px solid rgba(0, 255, 255, 0.2);
  border-top: 8px solid #0ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.modelew {
  position: relative;
  width: 200px;
  height: 100px;
  align-items: center;
  justify-content: center;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin: -6px;
  border-radius: 50%;
  background: #0ff;
  transform-origin: -20px center;
  animation: rotate 1s linear infinite;
}

.orbit2 {
  background: #ff0;
  animation-duration: 1.5s;
  transform-origin: -28px center;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.modelet {
  position: relative;
  width: 200px;
  height: 100px;
  align-items: center;
  justify-content: center;
}

.ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid #0ff;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

.ring2 {
  border-color: #ff0;
  animation-duration: 2s;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


.bar {
  width: 8px;
  background: #0ff;
  animation: bounce 0.6s infinite alternate;
}

.bar1 {
  animation-delay: 0s;
}

.bar2 {
  animation-delay: 0.2s;
}

.bar3 {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0% {
    height: 8px;
  }

  100% {
    height: 32px;
  }
}

.modeler {
  position: relative;
  width: 200px;
  height: 100px;
  align-items: center;
  justify-content: center;
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0ff;
  animation: pulse 1.2s infinite ease-in-out;
}

.dot1 {
  animation-delay: 0s;
}

.dot2 {
  animation-delay: 0.2s;
}

.dot3 {
  animation-delay: 0.4s;
}

@keyframes pulse {

  0%,
  80%,
  100% {
    transform: scale(0);
    opacity: 0.3;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}


.avatar-glow {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6ec7, #00f);
  border-radius: 50%;
  margin: auto;
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 10px #ff6ec7;
  }

  100% {
    box-shadow: 0 0 25px #00f;
  }
}

.profile-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ff6ec7;
  margin: auto;
  margin-bottom: 10px;
  animation: pulse 2s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.profile-info h3 {
  margin: 0;
  font-size: 16px;
  color: #fff;
}

.profile-info p {
  margin: 0;
  font-size: 13px;
  color: #ccc;
}

.abstract-shape {
  width: 80px;
  height: 80px;
  background: conic-gradient(#ff6ec7, #00f, #0ff, #ff6ec7);
  border-radius: 20px;
  margin: auto;
  animation: rotateShape 3s linear infinite;
}

@keyframes rotateShape {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.spinner-profile {
  width: 60px;
  height: 60px;
  border: 6px solid rgba(255, 255, 255, 0.2);
  border-top: 6px solid #0ff;
  border-radius: 50%;
  margin: auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.triangle {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 60px solid #ff6ec7;
  margin: auto;
  animation: pulseTri 2s infinite alternate;
}

@keyframes pulseTri {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.avatar-rotate {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: conic-gradient(#ff6ec7, #0ff, #00f, #ff6ec7);
  margin: auto;
  animation: rotateAvatar 3s linear infinite;
}

@keyframes rotateAvatar {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.badge-pulse {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6ec7, #0ff);
  margin: auto;
  animation: pulse 2s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}



.hexagon {
  width: 60px;
  height: 34px;
  background: linear-gradient(135deg, #ff6ec7, #0ff);
  position: relative;
  margin: auto;
  animation: rotateHex 3s linear infinite;
}

.hexagon:before,
.hexagon:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
}

.hexagon:before {
  bottom: 100%;
  border-bottom: 17px solid #ff6ec7;
}

.hexagon:after {
  top: 100%;
  border-top: 17px solid #ff6ec7;
}

@keyframes rotateHex {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.triangle {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 60px solid #ff6ec7;
  margin: auto;
  animation: bounceTri 2s infinite alternate;
}

@keyframes bounceTri {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

.ribbon {
  width: 80px;
  height: 10px;
  background: linear-gradient(135deg, #ff6ec7, #0ff);
  margin: auto;
  border-radius: 5px;
  animation: wave 2s infinite alternate;
}

@keyframes wave {
  0% {
    transform: rotate(-10deg);
  }

  50% {
    transform: rotate(10deg);
  }

  100% {
    transform: rotate(-10deg);
  }
}



.slide-square {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff6ec7, #0ff);
  margin: auto;
  animation: slide 2s infinite alternate;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(20px);
  }

  100% {
    transform: translateX(0);
  }
}

.pentagon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6ec7, #0ff);
  clip-path: polygon(50% 0%, 100% 38%, 81% 100%, 19% 100%, 0% 38%);
  margin: auto;
  animation: spinr 3s linear infinite;
}

@keyframes spinr {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.dote {
  width: 15px;
  height: 15px;
  background: linear-gradient(135deg, #ff6ec7, #0ff);
  border-radius: 50%;
  position: absolute;
  top: 40px;
  left: 50px;
  animation: float 2s infinite alternate;
}

.dot2e {
  left: 70px;
  animation-delay: 0.3s;
}

.dot3e {
  left: 90px;
  animation-delay: 0.6s;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

.cube3d {
  width: 80px;
  height: 80px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-20deg) rotateY(20deg);
  animation: spinCube 5s linear infinite;
  margin: auto;
}

.face {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6ec7, #0ff);
  opacity: 0.9;
  border: 1px solid #fff;
}

.front {
  transform: translateZ(40px);
}

.back {
  transform: rotateY(180deg) translateZ(40px);
}

.left {
  transform: rotateY(-90deg) translateZ(40px);
}

.right {
  transform: rotateY(90deg) translateZ(40px);
}

.top {
  transform: rotateX(90deg) translateZ(40px);
}

.bottom {
  transform: rotateX(-90deg) translateZ(40px);
}

@keyframes spinCube {
  0% {
    transform: rotateX(-20deg) rotateY(0deg);
  }

  100% {
    transform: rotateX(-20deg) rotateY(360deg);
  }
}

.torus {
  width: 80px;
  height: 80px;
  margin: auto;
  border: 12px solid #ff6ec7;
  border-radius: 50%;
  border-top-color: #0ff;
  border-right-color: #00f;
  animation: spinTorus 3s linear infinite;
}

@keyframes spinTorus {
  0% {
    transform: rotateX(0deg) rotateY(0deg);
  }

  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

.cross3d {
  width: 60px;
  height: 60px;
  margin: auto;
  position: relative;
  animation: spinCross 3s linear infinite;
}

.bare {
  position: absolute;
  background: linear-gradient(135deg, #ff6ec7, #0ff);
  border-radius: 3px;
}

.horizontal {
  width: 60px;
  height: 12px;
  top: 24px;
  left: 0;
}

.vertical {
  width: 12px;
  height: 60px;
  top: 0;
  left: 24px;
}

@keyframes spinCross {
  0% {
    transform: rotateX(0deg) rotateY(0deg);
  }

  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}


.ringe {
  width: 80px;
  height: 80px;
  margin: auto;
  border: 12px solid #ff6ec7;
  border-radius: 50%;
  border-top-color: #0ff;
  border-right-color: #00f;
  animation: spinRing 3s linear infinite;
  box-shadow: 0 0 20px #0ff;
}

@keyframes spinRing {
  0% {
    transform: rotateX(0deg) rotateY(0deg);
  }

  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}