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

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

.page-th-thao__section {
  padding: 80px 0;
  text-align: center;
}

.page-th-thao__section:nth-of-type(even) {
  background-color: #2a303d; /* Slightly lighter dark background for contrast */
}

.page-th-thao__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a4557 100%);
  padding: 100px 0;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

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

.page-th-thao__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

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

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

.page-th-thao__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
}

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

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

.page-th-thao__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-th-thao__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for section titles */
}

.page-th-thao__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
  color: #B0B0B0;
}

.page-th-thao__grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.page-th-thao__grid-2-cols--reverse {
  grid-template-areas: 'image text';
}

.page-th-thao__grid-2-cols--reverse .page-th-thao__text-content {
  grid-area: text;
}

.page-th-thao__grid-2-cols--reverse .page-th-thao__image-wrapper {
  grid-area: image;
}

.page-th-thao__text-content h2 {
  margin-top: 0;
  text-align: left;
}

.page-th-thao__text-content p {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.page-th-thao__list li {
  background: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFD700" width="20px" height="20px"%3e%3cpath d="M0 0h24v24H0z" fill="none"/%3e%3cpath d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/%3e%3c/svg%3e') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-th-thao__image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-th-thao__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

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

.page-th-thao__category-card, .page-th-thao__step-card, .page-th-thao__promo-card {
  background-color: #2a303d;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-th-thao__category-card:hover, .page-th-thao__step-card:hover, .page-th-thao__promo-card:hover {
  transform: translateY(-10px);
}

.page-th-thao__card-icon, .page-th-thao__promo-image {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-th-thao__promo-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 25px;
}

.page-th-thao__card-title, .page-th-thao__step-title, .page-th-thao__promo-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
}

.page-th-thao__card-text, .page-th-thao__step-text, .page-th-thao__promo-text {
  font-size: 1em;
  line-height: 1.6;
  color: #C0C0C0;
  flex-grow: 1;
  margin-bottom: 25px;
}

.page-th-thao__step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #1A202C;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-th-thao__btn--card {
  margin-top: auto;
  padding: 10px 20px;
  font-size: 0.95em;
  background-color: #FFD700;
  color: #1A202C;
  border: none;
}

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

.page-th-thao__promotion-cta {
  font-size: 1.2em;
  margin-top: 40px;
  color: #FFD700;
}

.page-th-thao__btn--center {
  margin-top: 40px;
}

.page-th-thao__cta {
  background: linear-gradient(90deg, #FFD700, #e6c200);
  color: #1A202C;
  padding: 80px 0;
}

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

.page-th-thao__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #1A202C;
}

.page-th-thao__cta-description {
  font-size: 1.15em;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #333;
}

.page-th-thao__btn--cta {
  background-color: #1A202C;
  color: #FFD700;
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 50px;
}

.page-th-thao__btn--cta:hover {
  background-color: #333;
  color: #e6c200;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-th-thao__hero-title {
    font-size: 2.8em;
  }

  .page-th-thao__section-title {
    font-size: 2.2em;
  }

  .page-th-thao__grid-2-cols {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-th-thao__grid-2-cols--reverse {
    grid-template-areas: unset;
  }

  .page-th-thao__grid-2-cols .page-th-thao__text-content, .page-th-thao__grid-2-cols .page-th-thao__image-wrapper {
    grid-area: unset;
  }

  .page-th-thao__text-content h2 {
    text-align: center;
  }

  .page-th-thao__list {
    text-align: left;
  }

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

  .page-th-thao__btn {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-th-thao__hero {
    padding: 80px 0;
  }

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

  .page-th-thao__section {
    padding: 60px 0;
  }

  .page-th-thao__section-title {
    font-size: 1.8em;
  }

  .page-th-thao__category-grid, .page-th-thao__steps-grid, .page-th-thao__promo-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .page-th-thao__hero {
    padding: 60px 0;
  }

  .page-th-thao__hero-title {
    font-size: 1.8em;
  }

  .page-th-thao__hero-description {
    font-size: 1em;
  }

  .page-th-thao__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-th-thao__section-title {
    font-size: 1.5em;
  }

  .page-th-thao__card-title, .page-th-thao__step-title, .page-th-thao__promo-title {
    font-size: 1.3em;
  }

  .page-th-thao__cta-title {
    font-size: 1.6em;
  }

  .page-th-thao__cta-description {
    font-size: 1em;
  }

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