/* Main Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  position: relative;
  background-color: #000;
}

/* Background styling */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.pexels.com/photos/3802510/pexels-photo-3802510.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  filter: brightness(0.2) contrast(1.2) saturate(1.2);
  z-index: 0;
  animation: slowZoom 40s infinite alternate;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

#background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0,10,25,0.7) 0%, rgba(0,10,25,0.9) 70%);
  z-index: 1;
}

@keyframes pulseHighlight {
  0%, 100% {
    box-shadow: 0 0 20px rgba(64, 156, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(64, 156, 255, 0.6);
  }
}

/* Custom cursor */
#cursor-follower {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(64, 156, 255, 0.5);
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  opacity: 0;
}

/* Video container styles */
.aspect-video {
  position: relative;
  width: 100%;
  background: rgba(0, 20, 40, 0.3);
  border: 1px solid rgba(64, 156, 255, 0.2);
}

.aspect-video::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

/* Particles */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(64, 156, 255, 0.6);
  border-radius: 50%;
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #game-title {
    font-size: 2.5rem;
  }
  
  #game-description {
    font-size: 1rem;
  }
  
  .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Button hover effect */
#cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: left 0.8s ease-in-out;
}

#cta-button:hover::before {
  left: 100%;
}