body {
  background: #0c0b0b;
  color: #fff;
  font-family: "Courier New", monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  text-align: center;
}

h1 {
  font-size: 5rem;
  margin: 0;
}

#vanta-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#bg-video {
  position: fixed;
  right: 50%;
  bottom: 50%;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  object-fit: cover;
  filter: brightness(0.6);
  transform: translate(50%, 50%); /* ini geser posisi */
}


.music-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1a1a1a;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 0 10px #00ff4c;
  animation: pulse 5s infinite;
  z-index: 9999;
}

@keyframes pulse {
  0% { box-shadow: 0 0 10px #ffbb00; }
  50% { box-shadow: 0 0 20px #00f0ff; }
  100% { box-shadow: 0 0 10px #00ff22; }
}



/*  */
.btn {
  padding: 15px 30px;
  background:transparent;
  border: none;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
/*  */

p {
  margin: 10px 0;
  font-size: 1.rem;
  font-style: bold;
}

a {
  margin-top: 20px;
  padding: 10px 20px;
  background: transparent,#ff0055;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s ease;
}

a:hover {
  background: #ff7033;
}
