body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Arial', sans-serif;
  color: white;
}

#bg-video {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Overlay */
#overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.5s ease;
}

#overlay-text {
  font-size: 3em;
  margin-bottom: 20px;
  text-align: center;
}

#enter-btn {
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  background: #5865F2;
  color: white;
}

/* Main Content */
#main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
  text-align: center;
}

.profile img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #5865F2;
}

.profile h1 {
  margin: 10px 0;
}

.socials {
  margin: 20px 0;
}

.socials a {
  display: inline-block;
  margin: 0 10px;
  padding: 10px 20px;
  background: #5865F2;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.socials a:hover {
  background: #4752C4;
}

.music-player {
  margin: 20px 0;
}

#play-pause {
  padding: 8px 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: #5865F2;
  color: white;
  margin-right: 10px;
}

#volume {
  vertical-align: middle;
}

#coming-soon {
  margin-top: 30px;
  padding: 10px 25px;
  background: #FF5555;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: white;
  font-weight: bold;
}

#coming-soon:hover {
  background: #DD4444;
}