/* style/th-thao.css */
.page-th-thao {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text for contrast on dark background */
  background-color: #1A1A2E; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-th-thao__hero-section {
  background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5e 100%); /* Gradient background for hero */
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-th-thao__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-th-thao__hero-title {
  font-size: 3.5em;
  color: #FFFFFF; /* White for main title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-th-thao__hero-description {
  font-size: 1.3em;
  color: #CCCCCC; /* Lighter gray for description */
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-th-thao__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
}

.page-th-thao__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-th-thao__section-title {
  font-size: 2.5em;
  color: #FFFFFF; /* White for section titles */
  text-align: center;
  margin-bottom: 60px;
  font-weight: bold;
  padding-top: 60px;
}

.page-th-thao__about-section, .page-th-thao__features-section, .page-th-thao__sports-categories-section, .page-th-thao__how-to-start-section, .page-th-thao__cta-section, .page-th-thao__responsible-gaming-section {
  padding: 80px 0;
  background-color: #1A1A2E; /* Consistent dark background */
}

.page-th-thao__about-section .page-th-thao__text-content, .page-th-thao__responsible-gaming-section .page-th-thao__text-content {
  font-size: 1.1em;
  text-align: justify;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #E0E0E0;
}

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

.page-th-thao__feature-item, .page-th-thao__sport-card, .page-th-thao__step-item {
  background-color: #282844; /* Slightly lighter dark blue for cards */
  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-th-thao__feature-item:hover, .page-th-thao__sport-card:hover, .page-th-thao__step-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-th-thao__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-th-thao__feature-heading, .page-th-thao__sport-title, .page-th-thao__step-title {
  font-size: 1.5em;
  color: #E94560; /* Accent color for headings */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-th-thao__feature-description, .page-th-thao__sport-description, .page-th-thao__step-description {
  color: #CCCCCC;
  font-size: 1em;
}

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

.page-th-thao__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #E94560; /* Accent color for step numbers */
  color: #FFFFFF;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-th-thao__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
}

.page-th-thao__btn--primary {
  background-color: #E94560; /* Accent color for primary buttons */
  color: #FFFFFF;
}

.page-th-thao__btn--primary:hover {
  background-color: #CC334C; /* Darker accent on hover */
  transform: translateY(-2px);
}

.page-th-thao__btn--secondary {
  background-color: transparent;
  color: #E94560; /* Accent color for secondary buttons */
  border: 2px solid #E94560;
}

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

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

.page-th-thao__action-area {
  text-align: center;
  margin-top: 60px;
}

.page-th-thao__action-text {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-th-thao__cta-section {
  background: linear-gradient(90deg, #E94560 0%, #CC334C 100%); /* Accent gradient for CTA */
  padding: 80px 0;
  text-align: center;
}

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

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

.page-th-thao__cta-description {
  font-size: 1.2em;
  color: #FFDDC1; /* Lighter color for description on accent background */
  margin-bottom: 40px;
}

.page-th-thao__cta-section .page-th-thao__btn--primary {
  background-color: #1A1A2E; /* Dark blue on red CTA */
  color: #FFFFFF;
  margin-right: 15px;
}

.page-th-thao__cta-section .page-th-thao__btn--primary:hover {
  background-color: #3a3a5e;
}

.page-th-thao__cta-section .page-th-thao__btn--secondary {
  border-color: #1A1A2E;
  color: #1A1A2E;
}

.page-th-thao__cta-section .page-th-thao__btn--secondary:hover {
  background-color: #1A1A2E;
  color: #FFFFFF;
}

.highlight {
  color: #E94560; /* Accent color for highlights */
}

strong {
  color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-th-thao__hero-title {
    font-size: 2.8em;
  }
  .page-th-thao__hero-description {
    font-size: 1.1em;
  }
  .page-th-thao__section-title {
    font-size: 2em;
  }
  .page-th-thao__cta-title {
    font-size: 2.2em;
  }
  .page-th-thao__feature-grid, .page-th-thao__sports-grid, .page-th-thao__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-th-thao__hero-section {
    padding: 80px 0 60px;
  }
  .page-th-thao__hero-title {
    font-size: 2.2em;
  }
  .page-th-thao__hero-description {
    font-size: 1em;
  }
  .page-th-thao__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-th-thao__btn {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .page-th-thao__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
    padding-top: 40px;
  }
  .page-th-thao__about-section, .page-th-thao__features-section, .page-th-thao__sports-categories-section, .page-th-thao__how-to-start-section, .page-th-thao__cta-section, .page-th-thao__responsible-gaming-section {
    padding: 60px 0;
  }
  .page-th-thao__cta-title {
    font-size: 1.8em;
  }
  .page-th-thao__cta-description {
    font-size: 1em;
  }
  .page-th-thao__cta-section .page-th-thao__btn--primary {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@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__section-title {
    font-size: 1.5em;
  }
  .page-th-thao__btn {
    padding: 12px 20px;
    font-size: 1em;
    width: 90%;
  }
  .page-th-thao__feature-grid, .page-th-thao__sports-grid, .page-th-thao__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-th-thao__cta-title {
    font-size: 1.5em;
  }
}