.page-the-thao-huong-dan-dat-cuoc {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D; /* Text Main */
  line-height: 1.6;
  background-color: #F4F7FB; /* Background */
}

.page-the-thao-huong-dan-dat-cuoc__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-the-thao-huong-dan-dat-cuoc__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  background-color: #2F6BFF;
  color: #ffffff;
  padding-top: 10px; /* Small top padding as shared.css handles body padding-top */
}

.page-the-thao-huong-dan-dat-cuoc__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-the-thao-huong-dan-dat-cuoc__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-the-thao-huong-dan-dat-cuoc__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly with image for visual appeal, but text is below image in DOM */
  background-color: rgba(47, 107, 255, 0.9); /* Semi-transparent background for readability */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-the-thao-huong-dan-dat-cuoc__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-the-thao-huong-dan-dat-cuoc__hero-description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-the-thao-huong-dan-dat-cuoc__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-the-thao-huong-dan-dat-cuoc__cta-buttons--single {
  margin-top: 30px;
}

.page-the-thao-huong-dan-dat-cuoc__btn-primary,
.page-the-thao-huong-dan-dat-cuoc__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-the-thao-huong-dan-dat-cuoc__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-the-thao-huong-dan-dat-cuoc__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-the-thao-huong-dan-dat-cuoc__btn-secondary {
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
}

.page-the-thao-huong-dan-dat-cuoc__btn-secondary:hover {
  background: #f0f0f0;
  color: #1a5acb;
  border-color: #1a5acb;
}

.page-the-thao-huong-dan-dat-cuoc__content-section {
  padding: 60px 0;
}

.page-the-thao-huong-dan-dat-cuoc__dark-bg {
  background-color: #2F6BFF; /* Main color */
  color: #ffffff;
}

.page-the-thao-huong-dan-dat-cuoc__light-bg {
  background-color: #ffffff; /* Card BG */
  color: #1F2D3D;
}