/* style/the-thao.css */
.page-the-thao {
  font-family: 'Arial', sans-serif;
  color: #E5E5D1; /* Light text for dark background */
  background-color: #1A1A2E; /* Main dark background */
  line-height: 1.6;
}

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

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

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

.page-the-thao__section-title {
  font-size: 2.8em;
  color: #E6B34B; /* Gold accent for titles */
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-the-thao__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E6B34B;
  border-radius: 2px;
}

.page-the-thao__sub-title {
  font-size: 1.8em;
  color: #E6B34B;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-the-thao__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #C0C0C0;
}

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

.page-the-thao__btn--primary {
  background-color: #E6B34B; /* Gold button */
  color: #1A1A2E;
}

.page-the-thao__btn--primary:hover {
  background-color: #FFD700; /* Lighter gold on hover */
  transform: translateY(-2px);
}

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

.page-the-thao__btn--secondary:hover {
  background-color: #E6B34B;
  color: #1A1A2E;
  transform: translateY(-2px);
}

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

.page-the-thao__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-the-thao__btn--readmore {
  background-color: #3A3A5E; /* Darker blue-purple */
  color: #E6B34B;
  margin-top: 30px;
}

.page-the-thao__btn--readmore:hover {
  background-color: #4A4A7E;
  color: #FFD700;
}

/* Hero Section */
.page-the-thao__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #1A1A2E 0%, #3A3A5E 100%);
  color: #E5E5D1;
  position: relative;
  overflow: hidden;
}

.page-the-thao__hero-content {
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

.page-the-thao__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: #E6B34B;
  line-height: 1.2;
}

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

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

.page-the-thao__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  overflow: hidden;
}

.page-the-thao__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%); /* Allowed for stylistic effect, not color change */
}

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

.page-the-thao__grid-item {
  background-color: #282840;
  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__grid-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-the-thao__grid-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-the-thao__grid-description {
  color: #C0C0C0;
  font-size: 0.95em;
}

/* Content with Image Section */
.page-the-thao__content-with-image {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
  gap: 40px;
  margin-top: 40px;
}

.page-the-thao__content-with-image:nth-child(even) {
  flex-direction: row-reverse; /* Alternate image/text layout */
}

.page-the-thao__text-block,
.page-the-thao__image-block {
  flex: 1;
  min-width: 300px;
}

.page-the-thao__image-block img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-the-thao__list li {
  background-color: #282840;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 4px solid #E6B34B;
  border-radius: 5px;
  color: #E5E5D1;
  font-size: 1.05em;
  text-align: left;
}

.page-the-thao__list-highlight {
  color: #E6B34B;
}

/* Steps Section */
.page-the-thao__steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-the-thao__steps li {
  background-color: #282840;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #E6B34B;
}

.page-the-thao__step-title {
  font-size: 1.5em;
  color: #E6B34B;
  margin-bottom: 10px;
}

.page-the-thao__steps p {
  color: #C0C0C0;
  margin-bottom: 15px;
}

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

.page-the-thao__card {
  background-color: #282840;
  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__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-the-thao__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-the-thao__card-description {
  color: #C0C0C0;
  font-size: 0.95em;
  margin-bottom: 20px;
}

/* App Section */
.page-the-thao__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  text-align: left;
}

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

.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: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-the-thao__app-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-the-the-thao__feature-item {
  background-color: #282840;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-bottom: 4px solid #E6B34B;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-the-thao__hero-title {
    font-size: 3em;
  }
  .page-the-thao__hero-description {
    font-size: 1.2em;
  }
  .page-the-thao__section-title {
    font-size: 2.2em;
  }
  .page-the-thao__content-with-image,
  .page-the-thao__app-content {
    flex-direction: column;
    text-align: center;
  }
  .page-the-thao__text-block,
  .page-the-thao__image-block,
  .page-the-thao__app-text,
  .page-the-thao__app-image-wrapper {
    min-width: unset;
    width: 100%;
  }
  .page-the-thao__list li {
    text-align: center;
  }
  .page-the-thao__steps li {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-the-thao__hero {
    padding: 80px 15px;
  }
  .page-the-thao__hero-title {
    font-size: 2.5em;
  }
  .page-the-thao__hero-description {
    font-size: 1.1em;
  }
  .page-the-thao__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-the-thao__section {
    padding: 60px 0;
  }
  .page-the-thao__section-title {
    font-size: 2em;
  }
  .page-the-thao__grid,
  .page-the-thao__promo-cards,
  .page-the-thao__features-grid {
    grid-template-columns: 1fr;
  }
  .page-the-thao__app-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-the-thao__hero-title {
    font-size: 2em;
  }
  .page-the-thao__hero-description {
    font-size: 1em;
  }
  .page-the-thao__section-title {
    font-size: 1.8em;
  }
  .page-the-thao__btn {
    width: 100%;
    margin: 5px 0;
  }
}