/* ========== MOUSE GRADIENT EFEKT ========== */
.gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  transition: all 0.3s ease;
}

.gradient-orb {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
  transition: all 0.2s ease;
}

/* ========== KEYFRAMES ========== */
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes neonPulse {
  0%, 100% { opacity: 1; text-shadow: 0 0 10px #a855f7, 0 0 20px #a855f7; }
  50% { opacity: 0.9; text-shadow: 0 0 15px #d946ef, 0 0 30px #d946ef; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

/* ========== ANIMATION CLASSES ========== */
.floating {
  animation: float 6s ease-in-out infinite;
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

.glow-on-hover {
  transition: all 0.3s ease;
}

.glow-on-hover:hover {
  box-shadow: 0 0 30px #a855f7;
  transform: translateY(-2px);
}

/* Floating Badges */
.floating-badge {
  transition: all 0.3s ease;
}

.floating-badge:hover {
  transform: translateY(-3px) scale(1.03) !important;
  border-color: #a855f7 !important;
  box-shadow: 0 5px 20px rgba(168, 85, 247, 0.4) !important;
}

@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes floatBadge2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes floatBadge3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ========== STARFIELD ANIMATION ========== */
.starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.stars {
  position: absolute;
  inset: 0;
  will-change: transform;
  pointer-events: none;
}

@keyframes starScroll {
  from { transform: translateY(0); }
  to { transform: translateY(calc(-1 * var(--field-h))); }
}
