
@import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap');

body, html {
  margin: 0;
  padding: 0;
  background: black;
  overflow: hidden;
  font-family: 'Monoton', cursive;
}

#bgvid {
  position: fixed;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
}

audio {
  display: none;
}

.glow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.glow-overlay h1 {
  font-size: 5rem;
  color: #ffccff;
  text-shadow: 0 0 20px #ff00cc, 0 0 40px #ff00cc, 0 0 60px #ff00cc;
  animation: pulse 2s infinite;
}

.subtext {
  font-size: 1.5rem;
  color: #ffeeff;
  text-shadow: 0 0 10px #ff99ff;
  margin-bottom: 2rem;
}

button {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  background: #ff00ff;
  color: #000;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 0 30px #ff00ff;
  transition: all 0.3s ease;
}

button:hover {
  background: #cc00cc;
  box-shadow: 0 0 40px #ff66ff;
}

@keyframes pulse {
  0% { text-shadow: 0 0 20px #ff00cc; }
  50% { text-shadow: 0 0 60px #ffffff; }
  100% { text-shadow: 0 0 20px #ff00cc; }
}
