/* style/th-thao.css */
.page-th-thao {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-th-thao .highlight {
  color: #0056B3;
}

.page-th-thao__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0056B3 0%, #003f80 100%);
  color: #ffffff;
  text-align: center;
  gap: 40px;
}

@media (min-width: 768px) {
  .page-th-thao__hero {
    flex-direction: row;
    text-align: left;
    padding: 100px 40px;
  }
}

.page-th-thao__hero-content {
  max-width: 600px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .page-th-thao__hero-content {
    margin-bottom: 0;
    margin-right: 40px;
  }
}

.page-th-thao__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold for emphasis */
}

.page-th-thao__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-th-thao__hero-image-wrapper {
  flex-shrink: 0;
}

.page-th-thao__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-th-thao__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-th-thao__section-title {
  font-size: 2.5em;
  color: #003f80;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-th-thao__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-th-thao__why-choose {
  background-color: #ffffff;
}

.page-th-thao__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-th-thao__feature-item {
  background-color: #f0f8ff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-th-thao__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-th-thao__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-th-thao__feature-title {
  font-size: 1.5em;
  color: #0056B3;
  margin-bottom: 15px;
}

.page-th-thao__feature-item p {
  color: #555;
}

.page-th-thao__betting-guide ol {
  list-style-type: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  text-align: left;
}

.page-th-thao__betting-guide li {
  background-color: #e6f2ff;
  border-left: 5px solid #0056B3;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-th-thao__betting-guide li strong {
  color: #003f80;
}

.page-th-thao__sports-types {
  background-color: #f0f8ff;
}

.page-th-thao__types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-th-thao__type-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-th-thao__type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.page-th-thao__type-image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-th-thao__type-title {
  font-size: 1.4em;
  color: #0056B3;
  margin-bottom: 10px;
}

.page-th-thao__type-card p {
  color: #555;
}

.page-th-thao__cta-bottom {
  margin-top: 60px;
  padding: 40px;
  background-color: #003f80;
  color: #ffffff;
  border-radius: 10px;
}

.page-th-thao__cta-bottom p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-th-thao__latest-news {
  background-color: #ffffff;
}

.page-th-thao__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-th-thao__news-card {
  background-color: #f0f8ff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-th-thao__news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.page-th-thao__news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-th-thao__news-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.3em;
  color: #0056B3;
}

.page-th-thao__news-card h3 a {
  color: #0056B3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-th-thao__news-card h3 a:hover {
  color: #FFD700;
}

.page-th-thao__news-excerpt {
  padding: 0 20px 15px;
  color: #666;
}

.page-th-thao__read-more {
  display: inline-block;
  padding: 0 20px 20px;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-th-thao__read-more:hover {
  text-decoration: underline;
}

.page-th-thao__view-all {
  margin-top: 40px;
}

.page-th-thao__faq {
  background-color: #f8f9fa;
}

.page-th-thao__accordion {
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-th-thao__accordion-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.page-th-thao__accordion-header {
  background-color: #0056B3;
  color: #ffffff;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-th-thao__accordion-header:hover {
  background-color: #003f80;
}

.page-th-thao__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-th-thao__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-th-thao__accordion-content {
  padding: 0 25px;
  background-color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-th-thao__accordion-content.active {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px;
}

.page-th-thao__accordion-content p {
  color: #555;
}

.page-th-thao__cta-final {
  background: linear-gradient(45deg, #003f80, #0056B3);
  color: #ffffff;
  padding: 80px 20px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.page-th-thao__cta-final .page-th-thao__section-title {
  color: #FFD700;
}

.page-th-thao__cta-final p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-th-thao__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 10px;
  cursor: pointer;
}

.page-th-thao__btn--primary {
  background-color: #FFD700;
  color: #003f80;
  border: 2px solid #FFD700;
}

.page-th-thao__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-th-thao__btn--secondary {
  background-color: #0056B3;
  color: #ffffff;
  border: 2px solid #0056B3;
}

.page-th-thao__btn--secondary:hover {
  background-color: #003f80;
  border-color: #003f80;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-th-thao__btn--tertiary {
  background-color: transparent;
  color: #0056B3;
  border: 2px solid #0056B3;
}

.page-th-thao__btn--tertiary:hover {
  background-color: #0056B3;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-th-thao__btn--hero {
  background-color: #FFD700;
  color: #003f80;
  border: 2px solid #FFD700;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-th-thao__btn--hero:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-th-thao__btn--transparent {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-th-thao__btn--transparent:hover {
  background-color: #FFD700;
  color: #003f80;
}

@media (max-width: 768px) {
  .page-th-thao__hero-title {
    font-size: 2.5em;
  }
  .page-th-thao__hero-description {
    font-size: 1em;
  }
  .page-th-thao__section-title {
    font-size: 2em;
  }
  .page-th-thao__features-grid, .page-th-thao__types-grid, .page-th-thao__news-grid {
    grid-template-columns: 1fr;
  }
  .page-th-thao__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-th-thao__btn--hero, .page-th-thao__btn--transparent {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}