.atmospheric-bg {
  background: radial-gradient(circle at 70% 30%, rgba(10, 10, 15, 0.5) 0%, rgba(0, 0, 0, 0.9) 100%), linear-gradient(145deg, #0A0A0F 0%, #151525 100%);
}
.grain {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.3'/%3E%3C/svg%3E");
}
.floating-element {
  animation: float 8s ease-in-out infinite;
}
.glow {
  box-shadow: 0 0 30px 0 rgba(0, 228, 255, 0.2);
}
.gradient-border {
  position: relative;
  border-radius: 1rem;
  z-index: 0;
}
.gradient-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gradient-border:hover::before {
  opacity: 1;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
.animate-pulse-slow {
  animation: pulse 5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.text-glow {
  text-shadow: 0 0 15px rgba(0, 228, 255, 0.7);
}
.glitch-animate {
  position: relative;
  overflow: hidden;
}
.glitch-animate::before,
.glitch-animate::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 15, 0.9);
}
.glitch-animate::before {
  left: 2px;
  text-shadow: -1px 0 var(--color-primary);
  animation: glitch-effect 2s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}
.glitch-animate::after {
  left: -2px;
  text-shadow: -1px 0 var(--color-accent);
  animation: glitch-effect 2s infinite reverse;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}
@keyframes glitch-effect {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-3px, 3px);
  }
  40% {
    transform: translate(-3px, -3px);
  }
  60% {
    transform: translate(3px, 3px);
  }
  80% {
    transform: translate(3px, -3px);
  }
  100% {
    transform: translate(0);
  }
}
/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 228, 255, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 228, 255, 0.5);
}
/*# sourceMappingURL=home.css.map */