  <style>
    /* Ensure full-screen coverage */
    html, body {
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100%;
      overflow: hidden; /* Prevent scrolling */
      background-image: url('img/bg.jpg');
      background-repeat: no-repeat;
      background-size: cover; /* Adjust background size to cover the viewport */
      background-position: center center; /* Center the background image */
      color: white; /* Set text color to white */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add a transparent shadow */
      background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity and color as needed */
      position: relative; /* Add relative positioning to cover the entire viewport */
    }
    
    /* Style for individual slides */
    .slider {
      width: 100%;
      height: 100%;
      max-width: 800px;
      margin: auto; /* Center horizontally */
      position: auto; /* Add relative positioning to contain the overlay */
      display: flex;
      flex-direction: column; /* Ensure the slider stretches to full height */
      justify-content: space-between; /* Push content to the top and bottom */
      border: 4px solid #fff; /* Add a white border with 4px width */
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.5); /* Add a white shadow for a 3D effect */
      overflow: hidden; /* Prevent scrolling */
    }
    
    /* Style for individual slides */
    .slide {
      height: 100vh; /* 100% of viewport height */
      display: flex;
      flex-direction: column; /* Stretch slide content vertically */
      justify-content: flex-end; /* Push content to the bottom */
      font-size: 2em;
      color: white;
      text-align: center;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      position: relative;
      margin: 0; /* Remove margin to cover the whole viewport */
      padding: 0; /* Remove padding to cover the whole viewport */
      border: 1px solid #fff; /* Add a border to each slide */
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); /* Add a shadow to the border */
      overflow: hidden; /* Prevent scrolling */
    }
    
    /* Background color overlay */
    .slide-overlay {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;     
      background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity and color as needed */
      z-index: 1; /* Ensure the overlay is above the background image */
      overflow: hidden; /* Prevent scrolling */
    }
    
    /* Styling for YORO class */
    .YORO {
      display: flex;
      justify-content: center;
      align-items: center;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add a transparent shadow */
    }
    
    .progress-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 5px; /* Adjust the height of the progress bar */
      background-color: DarkRed; /* Set the color of the progress bar */
      transition: width 0.3s ease-in-out;
    }
    
    .unlock-button {
      background-color: transparent;
      color: white;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 1); /* Add a transparent shadow */
      border: 0px solid white;
      padding: 10px 20px;
      font-size: 30px;
      font-color: white;
      cursor: pointer;
      position: absolute;
      top: 70%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
      border-radius: 50%; /* Makes the element circular */
    }
    
    .pause-button {
      background-color: transparent;
      color: white;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      border: 0px solid white;
      padding: 10px 20px;
      font-size: 10px;
      cursor: pointer;
      position: absolute; /* Use fixed position */
      bottom: 13%; /* Adjust the distance from the bottom as needed */
      left: 0; /* Position at the left edge */
      z-index: 2;
      border-radius: 50%;
      transform: rotate(25deg);
      margin-left: 7px;
      z-index: 3;
      color: white;
      text-align: center;
    }
    
    .countdown-unit {
      display: inline-block;
      margin: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add a transparent shadow */
      text-align: center;
      margin-top: 50px;
    }
    
    .image-fade4 {
      position: relative;
      animation: fade 4s infinite;
    }
    
    @keyframes fade {
        0%, 100% {
            opacity: 1;
        }
        50% {
            opacity: 0;
        }
    }
    
    .image-fade2 {
      position: relative;
      animation: fade 2s infinite;
    }
    
    @keyframes fade2 {
        0%, 100% {
            opacity: 1;
        }
        50% {
            opacity: 0;
        }
    }
    
    /* CSS */
    .button-28 {
      appearance: none;
      background-color: white;
      border: 2px solid #1A1A1A;
      border-radius: 15px;
      box-sizing: border-box;
      color: #3B3B3B;
      cursor: pointer;
      display: inline-block;
      font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
      font-size: 16px;
      font-weight: 600;
      line-height: normal;
      margin: 0;
      min-height: 60px;
      min-width: 0;
      outline: none;
      text-align: center;
      text-decoration: none;
      transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
      user-select: none;
      -webkit-user-select: none;
      touch-action: manipulation;
      width: 100%;
      will-change: transform;
        display: inline-flex;    /* Use flexbox */
  align-items: center;    /* Vertically center */
  justify-content: center; /* Horizontally center */
  gap: 8px;               /* Space between text and icon */
  text-decoration: none;  /* Remove underline */
      padding: 10%;
    }
    
    .button-28:disabled {
      pointer-events: none;
    }
    
    .button-28:hover {
      color: #fff;
      background-color: #1A1A1A;
      box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
      transform: translateY(-2px);
    }
    
    .button-28:active {
      box-shadow: none;
      transform: translateY(0);
    }
    
    .button-link {
      text-decoration: none; /* Remove underline or other text decorations */
      /* Add other button styling as needed */
      padding: 10px 20px;
      font-weight:bold;
      color: black; /* Example text color */
      border: none;
      border-radius: 5px;
      cursor: pointer;
      text-align: center;
      display: inline-block;
      transition: background-color 0.3s ease; /* Example transition */
    }
    
    .button-link:hover {
      background-color: #0056b3; /* Example hover background color */
      /* Add other hover styles as needed */
    }
    

    
    /* LOADING PAGE SPINNER AND SPINNER BACKGROUND */
    .lds-grid-container {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: -webkit-radial-gradient(#222222, #000000);
      background: radial-gradient(#222222, #000000);
      z-index: 1000;
    }
    
    .lds-heart {
      display: inline-block;
      position: relative;
      width: 80px;
      height: 80px;
      transform: rotate(45deg);
      transform-origin: 40px 40px;
    }
    
    .lds-heart div {
      top: 32px;
      left: 32px;
      position: absolute;
      width: 32px;
      height: 32px;
      background: #fff;
      animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    
    .lds-heart div:after,
    .lds-heart div:before {
      content: " ";
      position: absolute;
      display: block;
      width: 32px;
      height: 32px;
      background: #fff;
    }
    
    .lds-heart div:before {
      left: -24px;
      border-radius: 50% 0 0 50%;
    }
    
    .lds-heart div:after {
      top: -24px;
      border-radius: 50% 50% 0 0;
    }
    
    @keyframes lds-heart {
      0% {
        transform: scale(0.95);
      }
      5% {
        transform: scale(1.1);
      }
      39% {
        transform: scale(0.85);
      }
      45% {
        transform: scale(1);
      }
      60% {
        transform: scale(0.95);
      }
      100% {
        transform: scale(0.9);
      }
    }
@media screen and (max-width: 430px) {
  .unlock-button {
    top: 65vh;
    font-size: 6vw;
  }

.rotated-image {
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 0%) rotate(-15deg);
  width: 130vw;
  max-width: 1500px;
  z-index: 4;
}

  .pause-button {
    bottom: 10vh;
    font-size: 2.5vw;
  }

  .YORO h1, .YORO h2 {
    font-size: 5vw;
  }

  .countdown-unit {
    font-size: 4vw;
  }
}


.wedding-phone-wrapper {
    display: flex;
    height: 48px;
    width: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0); /* same as wedding-input */
    transition: var(--transition);
}
.wedding-phone-input::placeholder {
    color: white;
    opacity: 1; /* Ensure full visibility */
}
.wedding-phone-wrapper {
    display: flex;
    width: 100%;
}

.wedding-country-select {
    min-width: 100px;
    max-width: 100px;
    flex: 0 0 130px;
    padding: 10px;
    border: 1px solid #000;
    color: white;
    background-color: transparent;


}

    .wedding-country-select option {
        color: black; /* Make dropdown items black */
    }

.wedding-phone-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #000;
    color: white;
    background-color: transparent;

    backdrop-filter: blur(5px);
}
input::placeholder {
    color: white;
    opacity: 1; /* Ensures it's fully visible */
}
#guest_count option {
    color: black;
}

@media (max-height: 850px) {
    .responsive-br {
        display: none;
    }
}

.location-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 5vw;
  font-family: 'TanBold', serif;
  color: white;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid white;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.location-button:hover {
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.location-button svg {
  width: 22px;
  height: 22px;
  fill: white;
}

    </style>
