
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: 'Orbitron', sans-serif;
  background-color: black;
  color: white;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.overlay h1 {
  font-size: 4rem;
  letter-spacing: 6px;
  margin: 0;
}

.overlay p {
  font-size: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

#playBtn {
  padding: 15px 30px;
  font-size: 1.2rem;
  background: transparent;
  border: 2px solid white;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

#playBtn:hover {
  background: white;
  color: black;
}
