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


body {
  font-family: Arial, sans-serif;
  background: #000000; 
  color: #333;
  line-height: 1.6;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}


header {
  text-align: center;
  margin-bottom: 1.5rem;
}

header h1 {
  font-size: 2rem;
  color: #444;
}


nav ul {
  list-style: none;
  display: flex;
  flex-direction: column; 
  gap: 0.5rem;
  padding: 0;
  margin-bottom: 2rem;
}

nav a {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  background: #6f6f6f;
  border-radius: 8px;
  text-align: center;
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}



@media (min-width: 768px) {
  nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav li {
    flex: 1 1 200px; 
  }
}

#mg-video {
  display: flex;
  justify-content: center;
  background-color: #000000;
  padding: 1rem;
}

#mg-video video {
  max-width: 90%;  
  height: auto;     
  border-radius: 8px; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
}

/* Floating Gradient Blobs */
.floating-gradients {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 20s infinite ease-in-out;
}

.blob-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(139, 0, 139, 0.8), rgba(75, 0, 130, 0.4));
  top: 10%;
  left: 10%;
  animation-duration: 25s;
  animation-delay: 0s;
}

.blob-2 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(220, 20, 60, 0.8), rgba(139, 0, 0, 0.4));
  top: 60%;
  left: 20%;
  animation-duration: 30s;
  animation-delay: -5s;
}

.blob-3 {
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(0, 100, 200, 0.8), rgba(0, 50, 150, 0.4));
  top: 30%;
  right: 15%;
  animation-duration: 28s;
  animation-delay: -10s;
}

.blob-4 {
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.8), rgba(75, 0, 130, 0.4));
  bottom: 15%;
  right: 25%;
  animation-duration: 32s;
  animation-delay: -15s;
}

.blob-5 {
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(178, 34, 34, 0.8), rgba(139, 0, 0, 0.4));
  top: 50%;
  left: 50%;
  animation-duration: 26s;
  animation-delay: -8s;
}

.blob-6 {
  width: 660px;
  height: 660px;
  background: radial-gradient(circle, rgba(72, 61, 139, 0.8), rgba(25, 25, 112, 0.4));
  bottom: 20%;
  left: 60%;
  animation-duration: 35s;
  animation-delay: -12s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(200px, -150px) scale(1.15);
  }
  50% {
    transform: translate(-180px, -200px) scale(0.85);
  }
  75% {
    transform: translate(-150px, 100px) scale(1.1);
  }
}

/* Ensure content stays above blobs */
header, nav, section {
  position: relative;
  z-index: 1;
}
