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

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

/* Hero Section */
.page-the-thao__hero {
  background: linear-gradient(135deg, #0A2463 0%, #1a3a7c 100%); /* Adjusted gradient for better contrast */
  color: #fff;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-the-thao__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.page-the-thao__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-the-thao__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-the-thao__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.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, transform 0.3s ease;
  margin: 0 10px;
  font-size: 1.1em;
}

.page-the-thao__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-the-thao__btn--primary:hover {
  background-color: #e6c200;
  color: #0A2463;
  transform: translateY(-2px);
}

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

.page-the-thao__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
}

/* General Section Styling */
.page-the-thao__why-choose,
.page-the-thao__popular-sports,
.page-the-thao__betting-guide,
.page-the-thao__promotions,
.page-the-thao__app-download,
.page-the-thao__commitment,
.page-the-thao__detail-pages {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-the-thao__why-choose,
.page-the-thao__betting-guide,
.page-the-thao__commitment {
  background-color: #fff;
}

.page-the-thao__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-the-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-the-thao__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555;
}

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

.page-the-thao__feature-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-the-thao__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  /* No filter property to change image color */
}

.page-the-thao__feature-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-the-thao__feature-description {
  color: #666;
}

/* Sports Grid */
.page-the-thao__sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-the-thao__sport-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao__sport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-the-thao__sport-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  /* No filter property to change image color */
}

.page-the-thao__sport-card h3 {
  font-size: 1.4em;
  color: #0A2463;
  padding: 20px 20px 10px;
}

.page-the-thao__sport-card p {
  color: #666;
  padding: 0 20px 20px;
  font-size: 0.95em;
}

.page-the-thao__btn--detail {
  background-color: #0A2463;
  color: #fff;
  border: 2px solid #0A2463;
  padding: 10px 20px;
  margin: 0 20px 20px;
  display: inline-block;
}

.page-the-thao__btn--detail:hover {
  background-color: #FFD700;
  color: #0A2463;
  border-color: #FFD700;
}

/* Betting Guide */
.page-the-thao__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-the-thao__guide-list li {
  background-color: #f0f4f8;
  border-left: 5px solid #0A2463;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-the-thao__guide-step-title {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-the-thao__guide-list li p {
  color: #555;
}

.page-the-thao__guide-list li a {
  color: #0A2463;
  text-decoration: underline;
}

.page-the-thao__guide-list li a:hover {
  color: #FFD700;
}

.page-the-thao__cta-group {
  text-align: center;
  margin-top: 40px;
}

/* Promotions */
.page-the-thao__promotions {
  background-color: #f0f4f8;
}

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

.page-the-thao__promo-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-the-thao__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  /* No filter property to change image color */
}

.page-the-thao__promo-title {
  font-size: 1.4em;
  color: #0A2463;
  padding: 20px 20px 10px;
}

.page-the-thao__promo-description {
  color: #666;
  padding: 0 20px 20px;
  font-size: 0.95em;
}

/* App Download */
.page-the-thao__app-download {
  background-color: #0A2463;
  color: #fff;
}

.page-the-thao__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.page-the-thao__app-text {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.page-the-thao__app-text .page-the-thao__section-title {
  color: #FFD700;
  text-align: left;
}

.page-the-thao__app-text .page-the-thao__section-title::after {
  left: 0;
  transform: translateX(0);
}

.page-the-thao__app-text .page-the-thao__section-intro {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  color: #e0e0e0;
}

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

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

.page-the-thao__app-features li img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  /* No filter property to change image color */
}

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

.page-the-thao__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  /* No filter property to change image color */
}

/* Commitment Section */
.page-the-thao__commitment-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-the-thao__commitment-list li {
  background-color: #f0f4f8;
  padding: 25px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-the-thao__commitment-list li img {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  flex-shrink: 0;
  /* No filter property to change image color */
}

.page-the-thao__commitment-list li strong {
  color: #0A2463;
  font-size: 1.1em;
  display: block;
  margin-bottom: 5px;
}

.page-the-thao__commitment-list li p {
  color: #555;
}

.page-the-thao__conclusion {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #444;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Detail Pages List */
.page-the-thao__detail-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-the-thao__detail-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

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

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

.page-the-thao__detail-description {
  color: #666;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-the-thao__hero-title {
    font-size: 3em;
  }
  .page-the-thao__section-title {
    font-size: 2em;
  }
  .page-the-thao__app-content {
    flex-direction: column;
    text-align: center;
  }
  .page-the-thao__app-text {
    padding-right: 0;
    padding-bottom: 30px;
  }
  .page-the-thao__app-text .page-the-thao__section-title,
  .page-the-thao__app-text .page-the-thao__section-intro {
    text-align: center;
  }
  .page-the-thao__app-text .page-the-thao__section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .page-the-thao__hero {
    padding: 60px 0;
  }
  .page-the-thao__hero-title {
    font-size: 2.5em;
  }
  .page-the-thao__hero-description {
    font-size: 1em;
  }
  .page-the-thao__btn {
    padding: 10px 20px;
    font-size: 1em;
    margin: 5px;
  }
  .page-the-thao__section-title {
    font-size: 1.8em;
  }
  .page-the-thao__section-intro {
    font-size: 1em;
  }
  .page-the-thao__features-grid,
  .page-the-thao__sports-grid,
  .page-the-thao__promo-grid,
  .page-the-thao__commitment-list {
    grid-template-columns: 1fr;
  }
  .page-the-thao__feature-item,
  .page-the-thao__sport-card,
  .page-the-thao__promo-card,
  .page-the-thao__detail-item {
    padding: 20px;
  }
  .page-the-thao__guide-list li {
    padding: 20px;
  }
  .page-the-thao__app-text {
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .page-the-thao__hero-title {
    font-size: 2em;
  }
  .page-the-thao__section-title {
    font-size: 1.5em;
  }
  .page-the-thao__btn {
    display: block;
    margin: 10px auto;
  }
  .page-the-thao__hero-content {
    padding: 0 15px;
  }
  .page-the-thao__container {
    padding: 0 15px;
  }
}