/* style/the-thao.css */
.page-the-thao {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A202C; /* Dark background */
  line-height: 1.6;
}

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

.page-the-thao__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Dark gradient */
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.page-the-thao__hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 1;
  padding-left: 20px;
}

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

.page-the-thao__hero-title .highlight {
  color: #FFD700;
}

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

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

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

.page-the-thao__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
  border: 2px solid #FFD700;
}

.page-the-thao__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-the-thao__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
}

.page-the-thao__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-the-thao__btn--center {
  display: block;
  margin: 40px auto 20px auto;
  width: fit-content;
}

.page-the-thao__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  max-width: 50%;
}

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

.page-the-thao__introduction, .page-the-thao__deep-content, .page-the-thao__details-list, .page-the-thao__cta {
  padding: 60px 0;
}

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

.page-the-thao__section-description {
  font-size: 1.1em;
  color: #B0B0B0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

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

.page-the-thao__feature-item {
  background-color: #2A3342; /* Slightly lighter dark background for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  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.5);
}

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

.page-the-thao__feature-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for feature titles */
  margin-bottom: 15px;
}

.page-the-thao__feature-text {
  color: #E0E0E0;
  font-size: 1em;
}

.page-the-thao__deep-content h2 {
  text-align: left;
}

.page-the-thao__sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-the-thao__deep-content p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-the-thao__deep-content ul, .page-the-thao__deep-content ol {
  margin-bottom: 20px;
  padding-left: 25px;
  color: #E0E0E0;
}

.page-the-thao__deep-content ul li, .page-the-thao__deep-content ol li {
  margin-bottom: 10px;
  color: #E0E0E0;
}

.page-the-thao__deep-content a {
  color: #FFD700; /* Gold for inline links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-the-thao__deep-content a:hover {
  color: #e6c200;
  text-decoration: underline;
}

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

.page-the-thao__article-card {
  background-color: #2A3342;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-the-thao__article-title {
  font-size: 1.3em;
  color: #FFD700;
  margin: 20px 20px 10px 20px;
}

.page-the-thao__article-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-the-thao__article-title a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-the-thao__article-description {
  color: #B0B0B0;
  margin: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-the-thao__article-card .page-the-thao__btn {
  margin: 0 20px 20px 20px;
  text-align: center;
}

.page-the-thao__cta {
  background: linear-gradient(90deg, #FFD700 0%, #e6c200 100%); /* Gold gradient for CTA */
  padding: 80px 0;
  text-align: center;
}

.page-the-thao__cta-content {
  color: #1A202C;
}

.page-the-thao__cta-title {
  font-size: 2.8em;
  color: #1A202C; /* Dark text on gold */
  margin-bottom: 20px;
}

.page-the-thao__cta-description {
  font-size: 1.3em;
  color: #333;
  margin-bottom: 40px;
}

.page-the-thao__cta .page-the-thao__btn--primary {
  background-color: #1A202C; /* Dark button on gold background */
  color: #FFD700;
  border-color: #1A202C;
}

.page-the-thao__cta .page-the-thao__btn--primary:hover {
  background-color: #333;
  border-color: #333;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-the-thao__hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 0;
  }
  .page-the-thao__hero-content {
    padding-left: 0;
    max-width: 100%;
  }
  .page-the-thao__hero-image-wrapper {
    max-width: 80%;
    margin-top: 40px;
  }
  .page-the-thao__hero-actions {
    justify-content: center;
  }
  .page-the-thao__hero-title {
    font-size: 2.8em;
  }
  .page-the-thao__section-title {
    font-size: 2em;
  }
  .page-the-thao__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-the-thao__hero {
    padding: 40px 0;
  }
  .page-the-thao__hero-title {
    font-size: 2.2em;
  }
  .page-the-thao__hero-description {
    font-size: 1em;
  }
  .page-the-thao__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-the-thao__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-the-thao__section-title {
    font-size: 1.8em;
  }
  .page-the-thao__sub-title {
    font-size: 1.5em;
  }
  .page-the-thao__features-grid {
    grid-template-columns: 1fr;
  }
  .page-the-thao__cta-title {
    font-size: 1.8em;
  }
}

@media (max-width: 480px) {
  .page-the-thao__hero-title {
    font-size: 1.8em;
  }
  .page-the-thao__hero-image-wrapper {
    max-width: 95%;
  }
  .page-the-thao__section-title {
    font-size: 1.5em;
  }
  .page-the-thao__btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-the-thao__deep-content ul, .page-the-thao__deep-content ol {
    padding-left: 15px;
  }
  .page-the-thao__cta-title {
    font-size: 1.5em;
  }
}