.bet-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding-top: 115px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bet-hero-bg,
.bet-hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.bet-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(7,18,42,0.8) 0%, rgba(7,18,42,0.2) 50%, rgba(7,18,42,0.8) 100%),
    linear-gradient(180deg, rgba(7,18,42,0.6) 0%, rgba(7,18,42,0.0) 40%, rgba(7,18,42,0.8) 100%);
  z-index: 1;
}

.bet-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.bet-hero-text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1rem;
}

.bet-subtitle {
  color: #fff;
  font-family: 'SeoulHangang', sans-serif;
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
}

.bet-desc {
  color: rgba(255,255,255,0.85);
  font-family: 'SeoulHangang', sans-serif;
  font-size: 16px;
  line-height: 1.4;
  max-width: 38rem;
  margin: 0;
}

@media (max-width: 899px) {
  .bet-hero {
    padding-top: 56px;
  }
  .bet-hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .bet-hero-text {
    align-items: center;
    text-align: center;
  }
  .bet-desc {
    max-width: none;
    font-size: 14px;
  }
}

.bet-hiw {
  padding: 60px 20px;
  text-align: center;
}

.bet-hiw-title {
  color: #fff;
  font-family: 'SeoulHangang', sans-serif;
  font-size: 32px;
  margin: 0 0 40px;
}

.bet-hiw-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.bet-hiw-card {
  background: #07122A;
  border: 2px solid #82ECFF;
  border-radius: 14px;
  color: #fff;
  font-family: 'SeoulHangang', sans-serif;
  padding: 20px;
  box-sizing: border-box;
}

.bet-hiw-card-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}

.bet-hiw-card-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

/* === Bet why section === */
.bet-why {
  padding: 60px 20px;
  box-sizing: border-box;
}

.bet-why-title {
  color: #fff;
  font-family: 'SeoulHangang', sans-serif;
  font-size: 32px;
  margin: 0 0 40px;
  text-align: center;
}

.bet-why-list {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.bet-why-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #07122A;
  border: 2px solid #82ECFF;
  border-radius: 14px;
  color: #fff;
  font-family: 'SeoulHangang', sans-serif;
  padding: 20px;
  box-sizing: border-box;
}

.bet-why-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.bet-why-item h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}

.bet-why-item p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

/* === Bet features section === */
.bet-features {
  padding: 60px 20px;
  box-sizing: border-box;
}

.bet-features-title {
  color: #fff;
  font-family: 'SeoulHangang', sans-serif;
  font-size: 32px;
  margin: 0 0 40px;
  text-align: center;
}

.bet-features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.bet-features-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #07122A;
  border: 2px solid #82ECFF;
  border-radius: 14px;
  color: #fff;
  font-family: 'SeoulHangang', sans-serif;
  padding: 20px;
  box-sizing: border-box;
}

.bet-features-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.bet-features-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}

.bet-features-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
}

@media (max-width: 1099px) and (min-width: 600px) {
  .bet-hiw-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .bet-why-list {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .bet-features-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 599px) {
  .bet-hiw-cards {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .bet-hiw-card {
    width: 90%;
    margin: 0 auto;
  }
  .bet-hiw-title {
    font-size: 24px;
  }
  .bet-hiw-card-title {
    font-size: 18px;
  }
  .bet-hiw-card-desc {
    font-size: 14px;
  }

  .bet-why-title {
    font-size: 24px;
  }
  .bet-why-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .bet-why-item {
    flex-direction: column;
    text-align: center;
  }
  .bet-why-icon {
    margin-bottom: 12px;
  }
  .bet-why-item h3 {
    font-size: 18px;
  }
  .bet-why-item p {
    font-size: 14px;
  }

  .bet-features-title {
    font-size: 24px;
  }
  .bet-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .bet-features-card {
    flex-direction: column;
    text-align: center;
  }
  .bet-features-icon {
    margin-bottom: 12px;
  }
  .bet-features-card h3 {
    font-size: 18px;
  }
  .bet-features-card p {
    font-size: 14px;
  }
}

.bet-final-block {
  background: #08213E;
  padding: 60px 20px;
}

.bet-final-buttons {
  display: flex;
  justify-content: center;
  gap: 32px;
}

@media (max-width: 599px) {
  .bet-final-buttons {
    flex-direction: column;
    gap: 20px;
  }
}

/* Hide footer gradient on the bet page */
.footer-fade {
  display: none;
}
