/* style/the-thao.css */
.page-the-thao {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text */
  background-color: #0A192F; /* Main dark background */
}

.page-the-thao__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-the-thao__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-the-thao__section-subtitle {
  font-size: 1.2em;
  color: #B0B0B0; /* Lighter gray for subtitles */
  text-align: center;
  margin-bottom: 40px;
}

.page-the-thao__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page-the-thao__btn--primary {
  background-color: #FFD700; /* Gold for primary actions */
  color: #0A192F;
}

.page-the-thao__btn--primary:hover {
  background-color: #E6C200;
  color: #000000;
}

.page-the-thao__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-the-thao__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-the-thao__btn--large {
  padding: 15px 30px;
  font-size: 1.1em;
}

.page-the-thao__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

/* Hero Section */
.page-the-thao__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A192F 0%, #1A2E4B 100%); /* Gradient background */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-the-thao__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-the-thao__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-the-thao__hero-description {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-the-thao__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-the-thao__hero-image-wrapper {
  position: absolute;
  bottom: -50px; /* Adjust to show part of the image */
  right: -50px;
  opacity: 0.1;
  z-index: 0;
  max-width: 50%; /* Make image less intrusive */
}

.page-the-thao__hero-image {
  width: 100%;
  height: auto;
  transform: rotate(15deg); /* Slight rotation for dynamic feel */
}

/* About Sports Section */
.page-the-thao__about-sports {
  padding: 60px 0;
  background-color: #1A2E4B; /* Slightly lighter dark background */
}

.page-the-thao__grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-the-thao__content-block p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 1.1em;
  color: #D0D0D0;
}

.page-the-thao__image-block img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Sport Categories Section */
.page-the-thao__sport-categories {
  padding: 80px 0;
  background-color: #0A192F;
}

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

.page-the-thao__category-card {
  background-color: #1A2E4B;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 320px;
}

.page-the-thao__category-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-the-thao__category-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-the-thao__category-description {
  font-size: 1em;
  color: #B0B0B0;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Betting Guide Section */
.page-the-thao__betting-guide {
  padding: 80px 0;
  background-color: #1A2E4B;
}

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

.page-the-thao__guide-item {
  background-color: #0A192F;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
}

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

.page-the-thao__guide-title {
  font-size: 1.5em;
  color: #FFD700;
  margin: 20px 15px 10px;
}

.page-the-thao__guide-description {
  font-size: 1em;
  color: #B0B0B0;
  padding: 0 15px 20px;
  line-height: 1.6;
}

/* App Download Section */
.page-the-thao__app-download {
  padding: 80px 0;
  background-color: #0A192F;
}

.page-the-thao__app-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  background-color: #1A2E4B;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-the-thao__app-content {
  flex: 1;
}

.page-the-thao__app-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-the-thao__app-features li {
  font-size: 1.1em;
  color: #D0D0D0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.page-the-thao__app-features li i {
  color: #FFD700;
  margin-right: 15px;
  font-size: 1.3em;
}

.page-the-thao__app-note {
  margin-top: 20px;
  font-style: italic;
  color: #B0B0B0;
}

.page-the-thao__app-image-wrapper {
  flex: 1;
  text-align: center;
}

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

/* Promotions Section */
.page-the-thao__promotions {
  padding: 80px 0;
  background-color: #0A192F;
}

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

.page-the-thao__promo-card {
  background-color: #1A2E4B;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 350px;
}

.page-the-thao__promo-image {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-the-thao__promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-the-thao__promo-description {
  font-size: 1em;
  color: #B0B0B0;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Detail Pages Section */
.page-the-thao__detail-pages {
  padding: 60px 0;
  background-color: #1A2E4B;
}

.page-the-thao__detail-list {
  margin-top: 40px;
  display: grid;
  gap: 25px;
}

.page-the-thao__detail-item {
  background-color: #0A192F;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-the-thao__detail-item-title {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.page-the-thao__detail-item-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-the-thao__detail-item-title a:hover {
  color: #E6C200;
}

.page-the-thao__detail-item-description {
  font-size: 1em;
  color: #D0D0D0;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-the-thao__faq {
  padding: 80px 0;
  background-color: #0A192F;
}

.page-the-thao__faq-list {
  margin-top: 40px;
}

.page-the-thao__faq-item {
  background-color: #1A2E4B;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-the-thao__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}

.page-the-thao__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-the-thao__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-the-thao__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-the-thao__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-bottom: 20px;
}

.page-the-thao__faq-answer p {
  margin: 0;
  color: #D0D0D0;
  line-height: 1.6;
}

.page-the-thao__faq-answer a {
  color: #FFD700;
  text-decoration: none;
}

.page-the-thao__faq-answer a:hover {
  text-decoration: underline;
}

/* Call to Action Bottom */
.page-the-thao__cta-bottom {
  padding: 80px 20px;
  background-color: #1A2E4B;
  text-align: center;
}

.page-the-thao__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-the-thao__cta-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-the-thao__cta-bottom .page-the-thao__btn {
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-the-thao__grid-2-col,
  .page-the-thao__app-container {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .page-the-thao__hero-title {
    font-size: 2.8em;
  }

  .page-the-thao__hero-description {
    font-size: 1.1em;
  }

  .page-the-thao__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-the-thao__app-image-wrapper {
    order: -1; /* Image appears above content on mobile */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-the-thao__section-title {
    font-size: 2em;
  }

  .page-the-thao__hero-title {
    font-size: 2.2em;
  }

  .page-the-thao__hero-image-wrapper {
    display: none; /* Hide large background image on smaller screens */
  }

  .page-the-thao__categories-grid,
  .page-the-thao__guide-grid,
  .page-the-thao__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-the-thao__app-container {
    padding: 30px;
  }

  .page-the-thao__cta-title {
    font-size: 2em;
  }

  .page-the-thao__cta-bottom .page-the-thao__btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }
  .page-the-thao__cta-bottom .page-the-thao__btn:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .page-the-thao__hero {
    padding: 60px 15px;
  }
  .page-the-thao__container {
    padding: 0 15px;
  }
  .page-the-thao__section-title {
    font-size: 1.8em;
  }
  .page-the-thao__hero-title {
    font-size: 1.8em;
  }
  .page-the-thao__hero-description {
    font-size: 1em;
  }
  .page-the-thao__app-container {
    padding: 20px;
  }
  .page-the-thao__cta-title {
    font-size: 1.8em;
  }
  .page-the-thao__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-the-thao__faq-answer p {
    font-size: 0.9em;
  }
}