/* --- Base & Normalized Styles --- */

.home_banner {
  width: 100%;
}

.home_banner_data {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh; /* Fixed invalid '80vh-' */
  max-height: 848px;
  padding: 240px 20px; /* Added side padding for safety */
  width: 100%;
  box-sizing: border-box; /* Ensures padding doesn't break width */
  background-size: cover;
  background-position: center;
}

.home_banner_data_sized {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1024px;
}

.home_banner_data_sized h1 {
  margin: 40px 0 0 0;
  text-align: center;
}

.home_banner_data_sized h1 div:nth-child(1) {
  color: #FFFFFF;
  font: 400 clamp(2.5rem, 8vw, 6.125rem) / 1.1 OS_ALT_Regular; /* Fluid typography */
}

.home_banner_data_sized h1 div:nth-child(2) {
  color: #F8CA07;
  font: 400 clamp(2rem, 6vw, 4.75rem) / 1.1 OS_ALT_Regular; /* Fluid typography */
}

.home_banner_data_sized h2 {
  max-width: 450px;
  margin: 20px 0 0 0;
  color: #FFFFFF;
  font: 400 22px/1.4 OS_Regular;
  text-align: center;
}

.home_banner_btc_c {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px 0;
  flex-direction: column;
  align-items: center;
}


.home_banner_btc_label {
  color: #FFFFFF;
  font: 400 22px/1.4 OS_Regular;
  text-align: center;
  margin-bottom: 10px;
}

@media (max-width: 480px) {
.home_banner_btc_label {
  color: #FFFFFF;
  font: 400 14px/1.4 OS_Regular;
  text-align: center;
  margin-bottom: 10px;
}
}

.home_banner_btc_label > a {
  color: inherit !important;;
  text-decoration: none !important;
}

@media (max-width: 480px) {
  .home_banner_btc_label > a {
    display: block;
    width: 100%;
    text-align: center
    color: inherit !important;;
    text-decoration: none !important;
  }
}

.home_banner_btc_c > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: #F8CA07;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.home_banner_btc_c > a:hover {
  background: #e0b806;
  transform: translateY(-2px);
}

.home_banner_btc_c > a > span:nth-child(1) img {
  height: 14px;
  width: auto;
}

.home_banner_btc_c a > span:nth-child(2) {
  color: #242424;
  font: 500 20px/1 OS_Medium;
}

/* --- Responsive Partition --- */

/* Tablet Devices */
@media (max-width: 768px) {
  .home_banner_data {
    padding: 120px 20px;
    min-height: auto; /* Allow height to adjust naturally on smaller screens */
  }

  .home_banner_data_sized h2 {
    max-width: 90%;
  }
}

/* Mobile Devices */
@media (max-width: 480px) {
  .home_banner_data {
    padding: 120px 15px 80px 15px;
  }

  .home_banner_data_sized h1 {
    margin-top: 20px;
  }

  .home_banner_data_sized h2 {
    font-size: 18px;
  }

  .home_banner_btc_c {
    margin: 20px 0;
    position: fixed;
    bottom: -20px;
    z-index: 99999999999999999;
    background: #242424;
    padding: 10px;
    box-sizing: border-box;
  }

  .home_banner_btc_c > a {
    padding: 12px 24px;
  }

  .home_banner_btc_c > a > span:nth-child(2) {
    font-size: 16px;
  }
}