* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: monospace;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

/* Background Videos */
#galaxy {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
}

#effect {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: 0.35;           /* lighter overlay */
  pointer-events: none;
  mix-blend-mode: screen;  /* brighter blend */
  z-index: -1;
  filter: contrast(1.3) brightness(1.2); /* make it pop */
}

/* Heading */
h1 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
  color: #a020f0; /* Purple */
  text-shadow: 
    0 0 10px #a020f0,
    0 0 20px #a020f0,
    0 0 40px #a020f0;
}

/* Video container */
.videos-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

/* Each video + text */
.video-item {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1000px;
  width: 100%;
}

.video-item iframe {
  width: 400px;
  height: 225px;
  border: none; /* border remove */
  border-radius: 8px;
}

.video-text {
  font-size: 24px;
  font-weight: bold;
  color: #a020f0;
  text-shadow: 
    0 0 10px #a020f0,
    0 0 20px #a020f0,
    0 0 40px #a020f0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .video-item {
    flex-direction: column;
    text-align: center;
  }

  .video-item iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}

