html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fs-vid-background {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.fs-vid-background video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

video {
  max-width: 100%;
}

#lunaradio {
  z-index: 2;
  width: 100%;
  height: calc(100% - 50px); /* Footer için yer bırak */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Install button styles */
.install-button {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1000; /* Ensure the button is above other elements */
  display: none; /* Initially hidden */
}

footer {
  z-index: 2;
  width: 100%;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  position: relative;
}