body {
  font-family: 'Inter', sans-serif;
  background: #050508;
  color: white;
}
.glass-panel {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
}
.text-gradient-animate {
  background: linear-gradient(90deg, #06b6d4, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bg-move {
  background: radial-gradient(circle at 50% 50%, #06b6d4 0%, transparent 50%);
  animation: move 20s infinite linear;
}
@keyframes move {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}