/* Particles styling */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0;
  animation: float 15s infinite linear;
}

.default-particle {
  background: rgba(67, 191, 227, 0.5); /* Light blue with opacity */
}

.minecraft-particle {
  background: rgba(67, 191, 227, 0.5); /* Light blue with opacity */
}

.webhosting-particle {
  background: rgba(67, 191, 227, 0.5);
  box-shadow: 0 0 10px rgba(67, 191, 227, 0.7);
}

.vps-particle {
  background: rgba(248, 220, 21, 0.5);
  box-shadow: 0 0 10px rgba(248, 220, 21, 0.7);
}

.domain-particle {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.server-particle {
  background: rgba(67, 191, 227, 0.5);
  box-shadow: 0 0 5px rgba(67, 191, 227, 0.7);
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-800px) rotate(360deg);
    opacity: 0;
  }
}

/* Video background styling */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.video-background video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 35, 60, 0.7); /* Dark blue with opacity */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .video-background {
    display: none;
  }
}
