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

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

/* Hero Section */
.page-th-thao__hero {
  background: linear-gradient(135deg, #FFD700 0%, #1E90FF 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-th-thao__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:sports_stadium,dynamic_lights,abstract_lines]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-th-thao__hero .page-th-thao__container {
  position: relative;
  z-index: 1;
}

.page-th-thao__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

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

.page-th-thao__hero-cta .page-th-thao__btn {
  margin: 0 10px;
  padding: 15px 30px;
  font-size: 1.1em;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

/* General Section Styling */
.page-th-thao__section {
  padding: 60px 0;
}

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

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

.page-th-thao__section-intro {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

/* Buttons */
.page-th-thao__btn {
  display: inline-block;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: all 0.3s ease;
}

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

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

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

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

.page-th-thao__btn--tertiary {
  background-color: #1E90FF;
  color: #fff;
  border: 2px solid #1E90FF;
}

.page-th-thao__btn--tertiary:hover {
  background-color: #1565b3;
  border-color: #1565b3;
  transform: translateY(-2px);
}

.page-th-thao__cta-center {
  text-align: center;
  margin-top: 40px;
}

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

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

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

.page-th-thao__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: inline-block;
  /* No filter properties to change color */
}

.page-th-thao__feature-title {
  font-size: 1.5em;
  color: #1E90FF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-th-thao__feature-text {
  color: #666;
}

.page-th-thao__feature-text a {
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
}

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

/* Bet Types Section */
.page-th-thao__bet-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-th-thao__bet-type-item {
  background-color: #fff;
  padding: 25px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.page-th-thao__bet-type-title {
  font-size: 1.4em;
  color: #1E90FF;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-th-thao__bet-type-description {
  color: #555;
}

/* Tips Section */
.page-th-thao__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

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

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

.page-th-thao__tip-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  display: inline-block;
  /* No filter properties to change color */
}

.page-th-thao__tip-title {
  font-size: 1.4em;
  color: #1E90FF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-th-thao__tip-text {
  color: #666;
}

.page-th-thao__tip-text a {
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
}

.page-th-thao__tip-text a:hover {
  text-decoration: underline;
}

/* Mobile App Section */
.page-th-thao__section--mobile-app {
  background-color: #1E90FF;
  color: #fff;
  padding: 80px 0;
}

.page-th-thao__mobile-app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.page-th-thao__mobile-app-text h2 {
  color: #FFD700;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.page-th-thao__mobile-app-text p {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-th-thao__app-mockup {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  /* No filter properties to change color */
}

/* Responsible Gambling Section */
.page-th-thao__section--responsible-gambling {
  background-color: #f0f8ff;
  padding: 60px 0;
  text-align: center;
}

.page-th-thao__section--responsible-gambling .page-th-thao__section-title {
  color: #FFD700;
}

.page-th-thao__section--responsible-gambling .page-th-thao__section-intro,
.page-th-thao__section--responsible-gambling .page-th-thao__section-text {
  color: #444;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

/* Final CTA Section */
.page-th-thao__cta-final {
  background-color: #333;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

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

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

.page-th-thao__cta-buttons .page-th-thao__btn {
  margin: 0 10px;
  padding: 15px 30px;
  font-size: 1.1em;
  border-radius: 8px;
}

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

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

  .page-th-thao__mobile-app-content {
    flex-direction: column;
  }

  .page-th-thao__mobile-app-image {
    order: -1; /* Image above text on smaller screens */
  }
}

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

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

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

  .page-th-thao__hero-cta .page-th-thao__btn {
    padding: 12px 20px;
    font-size: 1em;
    margin: 5px;
  }

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

  .page-th-thao__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-th-thao__features-grid,
  .page-th-thao__bet-types-grid,
  .page-th-thao__tips-grid {
    grid-template-columns: 1fr;
  }

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

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

  .page-th-thao__cta-buttons .page-th-thao__btn {
    padding: 12px 20px;
    font-size: 1em;
    margin: 5px;
  }
}