.page-the-thao {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

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

.page-the-thao__section {
  padding: 60px 0;
  text-align: center;
}

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

.page-the-thao__section-title {
  font-size: 2.8em;
  color: #DC143C;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-the-thao__section-title a {
  color: #DC143C;
  text-decoration: none;
}

.page-the-thao__section-title a:hover {
  text-decoration: underline;
}

.page-the-thao__section-description {
  font-size: 1.1em;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-the-thao__hero {
  background: linear-gradient(135deg, #FFD700 0%, #DC143C 100%);
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.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-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-the-thao__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-the-thao__hero .page-the-thao__container {
  z-index: 2;
  position: relative;
}

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

.page-the-thao__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-the-thao__hero-subtitle a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-the-thao__hero-subtitle a:hover {
  text-decoration: underline;
}

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

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

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

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

.page-the-thao__btn--secondary:hover {
  background-color: #a30e2f;
  color: #e6c200;
  transform: translateY(-3px);
}

.page-the-thao__btn--small {
  padding: 10px 20px;
  font-size: 1em;
}

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

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

.page-the-thao__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;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-the-thao__feature-title {
  font-size: 1.6em;
  color: #DC143C;
  margin-bottom: 15px;
}

.page-the-thao__feature-description {
  color: #666;
  font-size: 1em;
}

.page-the-thao__feature-description a {
  color: #DC143C;
  text-decoration: none;
  font-weight: bold;
}

.page-the-thao__feature-description a:hover {
  text-decoration: underline;
}

.page-the-thao__sport-category {
  margin-bottom: 60px;
  text-align: left;
}

.page-the-thao__category-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

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

.page-the-thao__category-title a:hover {
  text-decoration: underline;
}

.page-the-thao__category-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-the-thao__category-content img {
  flex: 1;
  max-width: 50%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-the-thao__category-text {
  flex: 1;
  max-width: 50%;
  color: #444;
}

.page-the-thao__sport-category--reverse .page-the-thao__category-content {
  flex-direction: row-reverse;
}

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

.page-the-thao__list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #444;
}

.page-the-thao__list li::before {
  content: '⚡'; /* Unicode lightning bolt for a dynamic feel */
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: bold;
}

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

.page-the-thao__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-the-thao__step-icon {
  background-color: #DC143C;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-the-thao__step-title {
  font-size: 1.8em;
  color: #DC143C;
  margin-bottom: 15px;
}

.page-the-thao__step-title a {
  color: #DC143C;
  text-decoration: none;
  font-weight: bold;
}

.page-the-thao__step-title a:hover {
  text-decoration: underline;
}

.page-the-thao__step-description {
  color: #666;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-the-thao__step-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-the-thao__step-description a:hover {
  text-decoration: underline;
}

.page-the-thao__grid--strategy {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-the-thao__strategy-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-the-thao__strategy-item img {
  max-width: 100px;
  margin-bottom: 20px;
}

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

.page-the-thao__strategy-title a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-the-thao__strategy-title a:hover {
  text-decoration: underline;
}

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

.page-the-thao__promo-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-the-thao__promo-list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  color: #333;
  position: relative;
  padding-left: 45px;
}

.page-the-thao__promo-list li::before {
  content: '⭐'; /* Unicode star for promotions */
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
}

.page-the-thao__app-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
  text-align: left;
}

.page-the-thao__app-image {
  flex: 1;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.page-the-thao__app-text {
  flex: 2;
}

.page-the-thao__app-text p {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
}

.page-the-thao__app-text p a {
  color: #DC143C;
  text-decoration: none;
  font-weight: bold;
}

.page-the-thao__app-text p a:hover {
  text-decoration: underline;
}

.page-the-thao__responsibility .page-the-thao__list {
  max-width: 900px;
  margin: 40px auto;
}

.page-the-thao__responsibility .page-the-thao__list li {
  font-size: 1.1em;
  color: #444;
  background-color: #e8f5e9; /* Lighter background for trust */
  border-left: 5px solid #DC143C;
  padding: 15px 20px 15px 40px;
  margin-bottom: 10px;
  border-radius: 5px;
  text-align: left;
}

.page-the-thao__responsibility .page-the-thao__list li::before {
  content: '✅';
  left: 10px;
  font-size: 1.2em;
  color: #DC143C;
}

.page-the-thao__conclusion .page-the-thao__section-description a {
  color: #DC143C;
  text-decoration: none;
  font-weight: bold;
}

.page-the-thao__conclusion .page-the-thao__section-description a:hover {
  text-decoration: underline;
}

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

  .page-the-thao__hero-subtitle {
    font-size: 1.2em;
  }

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

  .page-the-thao__category-content,
  .page-the-thao__sport-category--reverse .page-the-thao__category-content {
    flex-direction: column;
  }

  .page-the-thao__category-content img,
  .page-the-thao__category-text {
    max-width: 100%;
  }

  .page-the-thao__app-content {
    flex-direction: column;
  }

  .page-the-thao__app-image {
    max-width: 70%;
  }
}

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

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

  .page-the-thao__btn {
    padding: 12px 25px;
    font-size: 1.1em;
  }

  .page-the-thao__grid,
  .page-the-thao__step-grid,
  .page-the-thao__grid--strategy {
    grid-template-columns: 1fr;
  }

  .page-the-thao__hero {
    padding: 80px 0;
  }
}

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

  .page-the-thao__hero-subtitle {
    font-size: 1em;
  }

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

  .page-the-thao__btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-the-thao__feature-item,
  .page-the-thao__step-item,
  .page-the-thao__strategy-item {
    padding: 20px;
  }

  .page-the-thao__step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }

  .page-the-thao__category-content img {
    max-width: 90%;
  }

  .page-the-thao__app-image {
    max-width: 90%;
  }
}