/* Zusätzliche globale Styles für Vyno Network */

/* Subtil animierter Hintergrund-Gradient für den Body / Hauptbereich */
body {
  background: radial-gradient(circle at top, #1e293b 0, #020617 40%, #020617 100%);
  color: #e5e7eb;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.gradient-animated {
  background: radial-gradient(circle at 0% 0%, #4c1d95, transparent 55%),
    radial-gradient(circle at 100% 0%, #be185d, transparent 55%),
    radial-gradient(circle at 0% 100%, #0ea5e9, transparent 55%),
    radial-gradient(circle at 100% 100%, #22c55e, transparent 55%),
    #020617;
  background-size: 200% 200%;
  animation: gradientShift 25s ease-in-out infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

/* Neon-Glow für Texte und Elemente */
.neon-text {
  text-shadow: 0 0 8px rgba(139, 92, 246, 0.9), 0 0 20px rgba(236, 72, 153, 0.8),
    0 0 30px rgba(14, 165, 233, 0.8);
}

.neon-border {
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.7), 0 0 24px rgba(236, 72, 153, 0.6);
}

.glass-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.badge-glow {
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.6);
}

/* Scroll-Reveal-Basiszustand */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Leichter Hover-Glow für Karten (zusätzlich zu Tailwind) */
.card-hover-glow:hover {
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.9), 0 0 24px rgba(129, 140, 248, 0.75);
}

/* Verhindert zu starkes Wackeln bei Parallax-Elementen auf sehr kleinen Screens */
@media (max-width: 640px) {
  [data-parallax] {
    transform: translate3d(0, 0, 0) !important;
  }
}

