.odometer-formatting-mark {
  visibility: hidden;
}

.home-banner {
  height: 100vh;

  @media (max-width: 1200px) {
    height: 70vh;
  }
}

.home-banner-title {
  font-size: 4rem;

  @media (max-width: 767px) {
    font-size: 2rem;
  }

  &::after {
    content: "";
    display: block;
    width: 50%;
    margin: 0 auto 0 auto;
    border-bottom: 1px solid #bb8f2d;
  }
}

@media (max-width: 1280px) {
  .home-jackpots .odometer.odometer-text-large .odometer-inside {
    font-size: 3.5rem !important;
  }
}

@media (max-width: 767px) {
  .home-banner-title::after {
    margin: 1rem 0 0 0;
  }
}

.home-banner-content {
  min-height: 200px;
  width: 45rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  border: 1px solid #bb8f2d;
  border-right: 0;
  border-radius: 0;

  @media (max-width: 767px) {
    align-items: flex-start;
  }

  @media (max-width: 1200px) {
    max-width: 45rem;
    width: auto;
  }
}

.home-banner-wrapper {
  background-color: rgba(30, 30, 30, 0.7);
}

.home-offers {
  min-height: 500px;
  height: 100vh;
}

.home-offers-text {
  text-align: justify;
  margin: 0;
}

.home-offers-img {
  height: 50px !important;
}

.home-jackpots {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.home-jackpots .odometer.odometer-text-large {
  font-size: 5rem;
}

.home-jackpots-container {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.home-jackpot-total-label {
  font-size: 20px;
  color: #000;
  margin: 0 0 20px 0;
  font-weight: 400;
}

.home-jackpot-total-row {
  gap: 8px;
  align-items: center;
}

.home-jackpot-total-value {
  font-size: 64px !important;
  font-weight: 700;
  color: #bb8f2d;
  line-height: 1.1;
}

.home-jackpot-total-currency {
  font-size: 24px;
  color: #000;
  font-weight: 500;
  line-height: 1.1;
}

.home-jackpots .btn-active-jackpots {
  background-color: #bb8f2d;
  border: none;
  transition: background-color 0.3s ease;
  min-width: 250px;
  min-height: 75px;

  &:hover {
    background-color: #c99a36;
  }
}

/* Infinite marquee */
.home-jackpots-marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

.home-jackpots-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: home-jp-marquee 15s linear infinite;
}

@keyframes home-jp-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}

/* Jackpot cards */
.home-jp-card {
  flex-shrink: 0;
  width: 220px;
  background: #fff;
  border-radius: 16px;
  border-top: 4px solid #bb8f2d;
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-jp-card-overline {
  font-size: 13px;
  color: #bb8f2d;
  margin: 0 0 6px 0;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.home-jp-card-divider {
  width: 24px;
  height: 1px;
  background-color: #bb8f2d;
  margin: 0 auto 8px auto;
}

.home-jp-card-title {
  font-size: 13px;
  color: #000;
  margin: 0 0 8px 0;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.home-jp-card-value-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.home-jp-card-value {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
}

.home-jp-card-currency {
  font-size: 15px;
  color: #bb8f2d;
  font-weight: 500;
}

.home-cards {
  border-radius: 16px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 8px 0px;
  overflow: hidden;
}
.home-cards-content {
  padding: 16px;
}
.home-cards-content > .btn {
  background-color: #bb8f2d;
  border: none;
}

.home-cards img.img-fluid {
  height: 290px;
  width: 100%;
  object-fit: cover;
}

.home-registration {
  position: relative;

  .tab-content {
    background-color: unset;
    color: unset;

    @media (max-width: 767px) {
      padding: 1rem;
    }
  }

  .nav-pills .nav-link.active,
  .nav-pills .show > .nav-link {
    background-color: unset;
  }

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
}

.home-registration-wrapper {
  z-index: 1;
  position: relative;
}

.home-registration-content {
  padding: 2rem;
  border: 1px solid #bb8f2d;
  border-radius: 3px;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }
}

.nav-link.active {
  background-color: #bb8f2d !important;
}

.home-registration-tab {
  background-color: #212529;

  &:last-child {
    background-color: #bb8f2d !important;
  }
}
@media (min-width: 992px) {
  .home-offerings {
    padding: 48px 0px;
  }
}
.home-offerings-ribbon {
  left: 0;
  bottom: 64px;
  padding: 12px 24px;
  padding-right: calc(24px + 128px);
  background: linear-gradient(90deg, #bb8f2d 60%, rgba(187, 143, 45, 0) 100%);
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 2;
  transform: none !important;
}

.home-offerings-link {
  overflow: hidden;
}

.home-offerings-img {
  display: block;
  height: 37rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.home-offerings-link:hover .home-offerings-img {
  transform: scale(1.1);
}

@media (max-width: 1200px) {
  .home-offerings-img {
    height: 50vh;
  }
}
