
    /* CSS cho trang bet-the-thao */
.page-bet-the-thao {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Văn bản sáng cho nền tối */
  background-color: #1a1a1a; /* Nền tối */
  line-height: 1.6;
  padding-bottom: 20px; /* Đảm bảo khoảng trống phía trên chân trang */
}

/* Phần Hero */
.page-bet-the-thao__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 20px 40px; /* 10px padding trên cho hero */
  overflow: hidden;
  background-color: #0d0d0d;
}

.page-bet-the-thao__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-bet-the-thao__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Nền tinh tế */
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.page-bet-the-thao__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.page-bet-the-thao__hero-title {
  font-size: 2.5em;
  color: #ffc107; /* Màu nhấn */
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-bet-the-thao__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-bet-the-thao__hero-cta-button {
  display: inline-block;
  background-color: #28a745; /* Màu xanh lá cây cho CTA */
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-bet-the-thao__hero-cta-button:hover {
  background-color: #218838;
}

/* Kiểu dáng phần chung */
.page-bet-the-thao__features-section,
.page-bet-the-thao__sports-categories,
.page-bet-the-thao__how-to-bet,
.page-bet-the-thao__promotions-section,
.page-bet-the-thao__faq-section,
.page-bet-the-thao__call-to-action {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-bet-the-thao__features-title,
.page-bet-the-thao__sports-title,
.page-bet-the-thao__how-to-title,
.page-bet-the-thao__promotions-title,
.page-bet-the-thao__faq-title,
.page-bet-the-thao__cta-title {
  text-align: center;
  font-size: 2em;
  color: #ffc107;
  margin-bottom: 30px;
}

/* Phần Tính năng */
.page-bet-the-thao__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-bet-the-thao__feature-item {
  background-color: #2a2a2a;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-bet-the-thao__feature-item:hover {
  transform: translateY(-5px);
}

.page-bet-the-thao__feature-icon {
  width: 200px; /* Kích thước tối thiểu cho hình ảnh nội dung */
  height: 200px; /* Kích thước tối thiểu cho hình ảnh nội dung */
  object-fit: contain; /* Sử dụng contain cho các biểu tượng/hình ảnh nội dung */
  margin-bottom: 15px;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.page-bet-the-thao__feature-heading {
  font-size: 1.3em;
  color: #fff;
  margin-bottom: 10px;
}

.page-bet-the-thao__feature-text {
  color: #ccc;
}

/* Phần Danh mục Thể thao */
.page-bet-the-thao__sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-bet-the-thao__sport-card {
  background-color: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-bet-the-thao__sport-card:hover {
  transform: translateY(-5px);
}

.page-bet-the-thao__sport-image {
  width: 100%;
  height: 250px; /* Đảm bảo đủ chiều cao cho hình ảnh nội dung */
  object-fit: cover;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.page-bet-the-thao__sport-name {
  font-size: 1.5em;
  color: #ffc107;
  padding: 15px 10px 5px;
}

.page-bet-the-thao__sport-description {
  color: #ccc;
  padding: 0 15px 20px;
}

/* Phần Hướng dẫn Cá cược */
.page-bet-the-thao__how-to-bet {
  background-color: #1f1f1f;
  border-radius: 8px;
  padding: 40px 20px;
  margin-top: 40px;
}

.page-bet-the-thao__steps-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-bet-the-thao__step-item {
  display: flex;
  align-items: flex-start;
  background-color: #2a2a2a;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-sizing: border-box; /* Bắt buộc cho các mục danh sách */
  width: 100%; /* Bắt buộc cho các mục danh sách */
  max-width: 100%; /* Bắt buộc cho các mục danh sách */
}

.page-bet-the-thao__step-number {
  background-color: #ffc107;
  color: #1a1a1a;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2em;
  flex-shrink: 0;
  margin-right: 15px;
}

.page-bet-the-thao__step-content {
  flex-grow: 1;
  word-wrap: break-word !important; /* Bắt buộc để ngắt dòng văn bản */
  overflow-wrap: break-word !important; /* Bắt buộc để ngắt dòng văn bản */
}

.page-bet-the-thao__step-heading {
  font-size: 1.2em;
  color: #fff;
  margin-top: 0;
  margin-bottom: 5px;
}

.page-bet-the-thao__step-description {
  color: #ccc;
  margin-bottom: 0;
}

/* Phần Khuyến mãi */
.page-bet-the-thao__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.page-bet-the-thao__promotion-card {
  background-color: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-bet-the-thao__promotion-card:hover {
  transform: translateY(-5px);
}

.page-bet-the-thao__promotion-image {
  width: 100%;
  height: 250px; /* Đảm bảo đủ chiều cao cho hình ảnh nội dung */
  object-fit: cover;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.page-bet-the-thao__promotion-heading {
  font-size: 1.4em;
  color: #ffc107;
  padding: 15px 10px 5px;
}

.page-bet-the-thao__promotion-description {
  color: #ccc;
  padding: 0 15px 20px;
}

.page-bet-the-thao__promotions-cta {
  text-align: center;
}

.page-bet-the-thao__promotions-button {
  display: inline-block;
  background-color: #007bff; /* Màu xanh dương cho CTA phụ */
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-bet-the-thao__promotions-button:hover {
  background-color: #0056b3;
}

/* Phần Câu hỏi thường gặp (FAQ) */
.page-bet-the-thao__faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-bet-the-thao__faq-item {
  background-color: #2a2a2a;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-sizing: border-box; /* Bắt buộc cho các mục danh sách */
  width: 100%; /* Bắt buộc cho các mục danh sách */
  max-width: 100%; /* Bắt buộc cho các mục danh sách */
}

.page-bet-the-thao__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #333;
  cursor: pointer;
  user-select: none;
  color: #fff;
  transition: background-color 0.3s ease;
}

.page-bet-the-thao__faq-question:hover {
  background-color: #444;
}

.page-bet-the-thao__faq-heading {
  font-size: 1.1em;
  margin: 0;
  flex-grow: 1;
  pointer-events: none; /* Ngăn h3 chặn sự kiện click */
  word-wrap: break-word !important; /* Bắt buộc để ngắt dòng văn bản */
  overflow-wrap: break-word !important; /* Bắt buộc để ngắt dòng văn bản */
}

.page-bet-the-thao__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  margin-left: 10px;
  transition: transform 0.3s ease;
  pointer-events: none; /* Ngăn biểu tượng toggle chặn sự kiện click */
}

.page-bet-the-thao__faq-item.active .page-bet-the-thao__faq-toggle {
  transform: rotate(45deg); /* Thay đổi + thành X hoặc - */
}

.page-bet-the-thao__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  color: #ccc;
  word-wrap: break-word !important; /* Bắt buộc để ngắt dòng văn bản */
  overflow-wrap: break-word !important; /* Bắt buộc để ngắt dòng văn bản */
}

.page-bet-the-thao__faq-item.active .page-bet-the-thao__faq-answer {
  max-height: 2000px !important; /* Đủ lớn */
  padding: 20px 15px !important;
  opacity: 1;
}

/* Phần Kêu gọi hành động */
.page-bet-the-thao__call-to-action {
  text-align: center;
  background-color: #0d0d0d;
  padding: 50px 20px;
  border-radius: 8px;
  margin-top: 40px;
}

.page-bet-the-thao__cta-description {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-bet-the-thao__cta-button {
  display: inline-block;
  background-color: #28a745; /* Màu xanh lá cây cho CTA */
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-bet-the-thao__cta-button:hover {
  background-color: #218838;
}

/* Điều chỉnh responsive */
@media (max-width: 768px) {
  .page-bet-the-thao__hero-title {
    font-size: 2em;
  }

  .page-bet-the-thao__features-title,
  .page-bet-the-thao__sports-title,
  .page-bet-the-thao__how-to-title,
  .page-bet-the-thao__promotions-title,
  .page-bet-the-thao__faq-title,
  .page-bet-the-thao__cta-title {
    font-size: 1.7em;
  }

  .page-bet-the-thao__features-grid,
  .page-bet-the-thao__sports-grid,
  .page-bet-the-thao__promotions-grid {
    grid-template-columns: 1fr;
  }

  .page-bet-the-thao__hero-cta-button,
  .page-bet-the-thao__promotions-button,
  .page-bet-the-thao__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-bet-the-thao__features-section,
  .page-bet-the-thao__sports-categories,
  .page-bet-the-thao__how-to-bet,
  .page-bet-the-thao__promotions-section,
  .page-bet-the-thao__faq-section,
  .page-bet-the-thao__call-to-action {
    padding: 30px 15px;
  }

  /* Responsive cho các mục danh sách */
  .page-bet-the-thao__steps-list,
  .page-bet-the-thao__faq-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .page-bet-the-thao__step-item,
  .page-bet-the-thao__faq-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 15px !important; /* Điều chỉnh padding cho di động */
  }

  .page-bet-the-thao__step-content,
  .page-bet-the-thao__faq-answer {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  .page-bet-the-thao__hero-image,
  .page-bet-the-thao__feature-icon,
  .page-bet-the-thao__sport-image,
  .page-bet-the-thao__promotion-image {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-bet-the-thao__faq-answer {
    padding: 15px 10px !important; /* Điều chỉnh padding cho di động */
  }
}
  