/* Base Page Styling */
body {
  margin: 0;
  padding: 0;
  background: #333;
  background-attachment: fixed;
  background-size: cover;
}

/* Fullscreen Video Background */
#video-background {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
}

/* Optional Heading Style */
h1 {
  position: absolute;
  bottom: 1%;
  left: 5%;
  width: 94%;
  font-size: 36px;
  letter-spacing: 3px;
  color: #fff;
  font-family: Montserrat, sans-serif;
  text-align: left;
}

/* Elfsight Audio Player Styling */
.elfsight-player {
  position: fixed;
  top: 5%;
  right: 5%;
  width: 360px;
  padding: 10px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
}

.elfsight-player div {
  border-radius: 10px;
}

/* Background Container Styling */
#background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -100;
  background: #333;
}

#background-container.gif-background {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Mini Player Link Styling (inside Elfsight player) */
.open-player-link-inside {
  text-align: center;
  margin-top: 12px;
}

.open-player-link-inside a {
  font-size: 14px;
  font-weight: bold;
  color: #fff !important;
  text-decoration: none;
  font-family: Montserrat, sans-serif;
  text-shadow: 1px 1px 2px #000;
  display: inline-block;
}

.open-player-link-inside a:hover {
  opacity: 0.85;
}