/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  overflow: hidden;
  position: relative;
}

/* Background video */
#background-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Centered Main Logo */
.center-logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
}

.main-logo {
  width: 1000px;
  max-width: 90vw;
  height: auto;
}

/* Button Container */
.button-container {
  position: absolute;
  bottom: 200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

/* Button styles */
.yellow-outline-button {
  position: relative;
  width: 15rem;
  height: 4rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  background-color: transparent;
  font-size: 1.50rem;
  font-weight: 600;
  color: white;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
  transition: all 0.3s ease, box-shadow 0.3s ease;
  padding: 0 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 255, 0, 0.8);
  white-space: nowrap;
  border: 2px solid rgb(255, 251, 0);
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-link {
  text-decoration: none;
  color: inherit;
}

.countdown {
  text-decoration: none;
  color: inherit;
}

/* Button hover effect */
.yellow-outline-button:hover {
  background-color: rgb(255, 251, 0);
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15), 0 0 30px rgba(255, 255, 0, 1);
  color: white;
}

/* Bottom Emblem and Caption */
.bottom-info {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
}

.bottom-logo {
  width: 80px;
  height: auto;
  margin-bottom: 5px;
}

.caption {
  color: white;
  font-size: 14px;
  letter-spacing: 1px;
}
.install-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 6rem;
}
  .install-btn {
    width: 18rem;
    height: 3.5rem;
    font-size: 1.1rem;
    border: 2px solid white;
    color: white;
    background-color: transparent;
    border-radius: 2rem;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  }

  .install-btn:hover {
    background-color: white;
    color: black;
    box-shadow: 0 0 30px rgba(255, 255, 255, 1);
  }

@media (max-width: 768px) {
  .button-container {
    position: absolute;
    bottom: calc(30dvh + env(safe-area-inset-bottom));
    left: 50%;
    transform: translateX(-50%);
  }
   .install-button-container {
    display: flex;         /* Show only on mobile */
    position: absolute;
    top: 18dvh;            /* upper middle */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }

  .install-btn:hover {
    background-color: white;
    color: black;
    box-shadow: 0 0 30px rgba(255, 255, 255, 1);
  }
}