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

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

.page-th-thao__hero-section {
  background: linear-gradient(135deg, #FFD700, #4B0082);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-th-thao__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.page-th-thao__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-th-thao__highlight {
  color: #FFD700;
}

.page-th-thao__hero-actions .page-th-thao__btn {
  margin: 10px;
}

.page-th-thao__section {
  padding: 60px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.page-th-thao__section:nth-of-type(even) {
  background-color: #f0f0f0;
}

.page-th-thao__section-title {
  font-size: 2.5em;
  color: #4B0082;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-th-thao__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444;
}

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

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

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

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

.page-th-thao__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-th-thao__btn--tertiary {
  background-color: #4B0082;
  color: #FFD700;
  border: 2px solid #4B0082;
}

.page-th-thao__btn--tertiary:hover {
  background-color: #3a0066;
  border-color: #3a0066;
}

.page-th-thao__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
  background-color: #4B0082;
  color: #FFD700;
  border: 1px solid #4B0082;
}

.page-th-thao__btn--small:hover {
  background-color: #3a0066;
  border-color: #3a0066;
}

.page-th-thao__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

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

.page-th-thao__grid-layout--reverse {
  grid-template-columns: 1fr 1fr;
}

.page-th-thao__image-block {
  text-align: center;
}

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

.page-th-thao__content-block {
  padding: 20px 0;
}

.page-th-thao__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-th-thao__list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333;
}

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

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

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

.page-th-thao__card-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-th-thao__card-title {
  font-size: 1.8em;
  color: #4B0082;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-th-thao__card-text {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

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

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

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

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

.page-th-thao__feature-title {
  font-size: 1.5em;
  color: #4B0082;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-th-thao__feature-text {
  font-size: 1em;
  color: #555;
}

.page-th-thao__cta-section {
  background: linear-gradient(45deg, #4B0082, #6a00a8);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-th-thao__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-th-thao__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-th-thao__hero-title {
    font-size: 2.8em;
  }
  .page-th-thao__section-title {
    font-size: 2em;
  }
  .page-th-thao__grid-layout {
    grid-template-columns: 1fr;
  }
  .page-th-thao__grid-layout--reverse {
    grid-template-columns: 1fr;
  }
  .page-th-thao__grid-layout .page-th-thao__image-block {
    order: -1; /* Image first on mobile for reverse layout */
  }
  .page-th-thao__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-th-thao__hero-title {
    font-size: 2.2em;
  }
  .page-th-thao__hero-description {
    font-size: 1.1em;
  }
  .page-th-thao__section-title {
    font-size: 1.8em;
  }
  .page-th-thao__paragraph, .page-th-thao__list li, .page-th-thao__card-text, .page-th-thao__feature-text {
    font-size: 1em;
  }
  .page-th-thao__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-th-thao__card-grid, .page-th-thao__feature-list {
    grid-template-columns: 1fr;
  }
  .page-th-thao__cta-title {
    font-size: 2em;
  }
  .page-th-thao__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-th-thao__hero-title {
    font-size: 1.8em;
  }
  .page-th-thao__section-title {
    font-size: 1.5em;
  }
  .page-th-thao__hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-th-thao__btn--large {
    width: 100%;
  }
}