/* style/th-thao.css */

/* Biến CSS cho màu sắc */
:root {
  --page-th-thao-primary-color: #FFD700; /* Vàng sáng */
  --page-th-thao-secondary-color: #1E90FF; /* Xanh lam đậm */
  --page-th-thao-dark-text-color: #333333; /* Màu chữ tối */
  --page-th-thao-light-text-color: #ffffff; /* Màu chữ sáng */
  --page-th-thao-background-light: #f8f8f8; /* Nền sáng */
  --page-th-thao-background-dark: #2a2a2a; /* Nền tối */
  --page-th-thao-accent-color: #0028ff; /* Màu nhấn, bổ sung cho vàng */
  --page-th-thao-gradient-start: #FFD700;
  --page-th-thao-gradient-end: #1E90FF;
}

.page-th-thao {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-th-thao-dark-text-color);
  background-color: var(--page-th-thao-background-light);
}

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

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

.page-th-thao__section:nth-of-type(even) {
  background-color: var(--page-th-thao-background-dark);
  color: var(--page-th-thao-light-text-color);
}

.page-th-thao__section:nth-of-type(even) .page-th-thao__section-title,
.page-th-thao__section:nth-of-type(even) .page-th-thao__section-intro,
.page-th-thao__section:nth-of-type(even) .page-th-thao__feature-title,
.page-th-thao__section:nth-of-type(even) .page-th-thao__feature-item p,
.page-th-thao__section:nth-of-type(even) .page-th-thao__sport-title,
.page-th-thao__section:nth-of-type(even) .page-th-thao__sport-card p,
.page-th-thao__section:nth-of-type(even) .page-th-thao__step-title,
.page-th-thao__section:nth-of-type(even) .page-th-thao__step-item p,
.page-th-thao__section:nth-of-type(even) .page-th-thao__promo-title,
.page-th-thao__section:nth-of-type(even) .page-th-thao__promo-card p,
.page-th-thao__section:nth-of-type(even) .page-th-thao__section-outro,
.page-th-thao__section:nth-of-type(even) .page-th-thao__faq-question,
.page-th-thao__section:nth-of-type(even) .page-th-thao__faq-answer {
  color: var(--page-th-thao-light-text-color);
}

.page-th-thao__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: var(--page-th-thao-primary-color);
}

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

/* Hero Section */
.page-th-thao__hero {
  background: linear-gradient(135deg, var(--page-th-thao-gradient-start), var(--page-th-thao-gradient-end));
  padding: 100px 0;
  color: var(--page-th-thao-light-text-color);
  position: relative;
  overflow: hidden;
}

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

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

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

.page-th-thao__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  max-width: 700px;
  opacity: 0.2;
  z-index: 0;
  filter: none; /* Đảm bảo không có filter */
}

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

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

.page-th-thao__btn--primary {
  background-color: var(--page-th-thao-primary-color);
  color: var(--page-th-thao-dark-text-color);
}

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

.page-th-thao__btn--secondary {
  background-color: var(--page-th-thao-secondary-color);
  color: var(--page-th-thao-light-text-color);
}

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

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

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

/* Why Choose Section */
.page-th-thao__why-choose {
  background-color: var(--page-th-thao-background-light);
}

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

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

.page-th-thao__section:nth-of-type(even) .page-th-thao__feature-item {
  background-color: #3d3d3d;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.page-th-thao__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: none; /* Đảm bảo không có filter */
}

.page-th-thao__feature-title {
  font-size: 1.5em;
  color: var(--page-th-thao-secondary-color);
  margin-bottom: 15px;
}

.page-th-thao__section:nth-of-type(even) .page-th-thao__feature-title {
  color: var(--page-th-thao-primary-color);
}

.page-th-thao__feature-item p {
  font-size: 1em;
  color: var(--page-th-thao-dark-text-color);
}

/* Sports Offerings Section */
.page-th-thao__sports-offerings {
  background-color: var(--page-th-thao-background-dark);
  color: var(--page-th-thao-light-text-color);
}

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

.page-th-thao__sport-card {
  background-color: #3d3d3d;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-th-thao__sport-card:hover {
  transform: translateY(-10px);
}

.page-th-thao__sport-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: none; /* Đảm bảo không có filter */
}

.page-th-thao__sport-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.4em;
  color: var(--page-th-thao-primary-color);
}

.page-th-thao__sport-card p {
  padding: 0 20px 20px;
  font-size: 0.95em;
  color: #cccccc;
}

/* How To Bet Section */
.page-th-thao__how-to-bet {
  background-color: var(--page-th-thao-background-light);
  position: relative;
}

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

.page-th-thao__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-top: 60px;
}

.page-th-thao__step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--page-th-thao-primary-color);
  color: var(--page-th-thao-dark-text-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-th-thao__step-title {
  font-size: 1.5em;
  color: var(--page-th-thao-secondary-color);
  margin-bottom: 15px;
}

.page-th-thao__step-item p {
  color: var(--page-th-thao-dark-text-color);
}

.page-th-thao__step-item a {
  color: var(--page-th-thao-secondary-color);
  text-decoration: none;
  font-weight: bold;
}

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

.page-th-thao__how-to-image {
  width: 40%;
  max-width: 500px;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.1;
  z-index: 0;
  filter: none; /* Đảm bảo không có filter */
}

.page-th-thao__how-to-bet .page-th-thao__container {
  position: relative;
  z-index: 1;
}

.page-th-thao__cta-bottom {
  margin-top: 50px;
}

/* Promotions Section */
.page-th-thao__promotions {
  background-color: var(--page-th-thao-background-dark);
  color: var(--page-th-thao-light-text-color);
}

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

.page-th-thao__promo-card {
  background-color: #3d3d3d;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

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

.page-th-thao__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: none; /* Đảm bảo không có filter */
}

.page-th-thao__promo-title {
  font-size: 1.4em;
  color: var(--page-th-thao-primary-color);
  padding: 20px 20px 10px;
}

.page-th-thao__promo-card p {
  padding: 0 20px 20px;
  color: #cccccc;
}

.page-th-thao__promo-card .page-th-thao__btn {
  margin-left: 20px;
  background-color: var(--page-th-thao-secondary-color);
  color: var(--page-th-thao-light-text-color);
}

.page-th-thao__promo-card .page-th-thao__btn:hover {
  background-color: #1a7ae0;
}

/* Responsible Gaming Section */
.page-th-thao__responsible-gaming {
  background-color: var(--page-th-thao-background-light);
  position: relative;
}

.page-th-thao__responsibility-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: inline-block;
  text-align: left;
}

.page-th-thao__responsibility-list li {
  font-size: 1.1em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: var(--page-th-thao-dark-text-color);
}

.page-th-thao__list-icon {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  filter: none; /* Đảm bảo không có filter */
}

.page-th-thao__section-outro {
  margin-top: 30px;
  font-size: 1.1em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-th-thao__responsible-image {
  width: 35%;
  max-width: 450px;
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.1;
  z-index: 0;
  filter: none; /* Đảm bảo không có filter */
}

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

/* FAQ Section */
.page-th-thao__faq {
  background-color: var(--page-th-thao-background-dark);
  color: var(--page-th-thao-light-text-color);
  position: relative;
}

.page-th-thao__faq-item {
  background-color: #3d3d3d;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-th-thao__faq-question {
  font-size: 1.3em;
  color: var(--page-th-thao-primary-color);
  margin-bottom: 10px;
}

.page-th-thao__faq-answer {
  font-size: 1em;
  color: #cccccc;
}

.page-th-thao__faq-answer a {
  color: var(--page-th-thao-primary-color);
  text-decoration: none;
  font-weight: bold;
}

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

.page-th-thao__faq-image {
  width: 30%;
  max-width: 400px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0.1;
  z-index: 0;
  filter: none; /* Đảm bảo không có filter */
}

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

/* Final CTA Section */
.page-th-thao__cta-final {
  background: linear-gradient(45deg, var(--page-th-thao-secondary-color), var(--page-th-thao-primary-color));
  padding: 80px 0;
  color: var(--page-th-thao-light-text-color);
  position: relative;
  overflow: hidden;
}

.page-th-thao__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: var(--page-th-thao-light-text-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-th-thao__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 0;
  filter: none; /* Đảm bảo không có filter */
}

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

/* 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__hero-image,
  .page-th-thao__how-to-image,
  .page-th-thao__responsible-image,
  .page-th-thao__faq-image {
    display: none;
  }
}

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

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

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

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

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

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

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

  .page-th-thao__section-intro {
    font-size: 1em;
  }

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

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

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

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

  .page-th-thao__hero-actions .page-th-thao__btn {
    margin: 0;
    width: 100%;
  }

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

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