/* style/the-thao.css */
:root {
  --primary-color: #FFD700;
  --secondary-color: #000080;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f4f4f4;
  --background-dark: #1a1a2e;
  --border-color: #e0e0e0;
}

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

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

.page-the-thao .text-center {
  text-align: center;
}

.page-the-thao .section-title {
  font-size: 36px;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 30px;
  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: var(--primary-color);
  border-radius: 2px;
}

.page-the-thao .section-text {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-the-thao .cta-button {
  display: inline-block;
  padding: 15px 35px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
}

.page-the-thao .cta-button.primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-the-thao .cta-button.primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-the-thao .cta-button.secondary {
  background-color: var(--secondary-color);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(0, 0, 128, 0.4);
}

.page-the-thao .cta-button.secondary:hover {
  background-color: #000066;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 128, 0.6);
}

.page-the-thao .cta-button.large {
  padding: 18px 45px;
  font-size: 20px;
}

/* Hero Section */
.page-the-thao .hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #000066 100%);
  padding: 80px 0;
  color: var(--text-light);
}

.page-the-thao .hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.page-the-thao .hero-image {
  width: 100%;
  margin-bottom: 40px;
}

.page-the-thao .hero-image img {
  width: 100%;
  height: auto;
  max-width: 1000px;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.page-the-thao .hero-content {
  width: 100%;
  max-width: 800px;
}

.page-the-thao .hero-title {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-the-thao .hero-description {
  font-size: 22px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.page-the-thao .hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Section Intro */
.page-the-thao .section-intro {
  background-color: var(--background-light);
  padding: 80px 0;
}

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

.page-the-thao .intro-item {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-the-thao .intro-item img {
  width: 250px; /* Minimum 200px */
  height: 180px; /* Minimum 200px */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-the-thao .intro-item h3 {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-the-thao .intro-item p {
  font-size: 16px;
  color: var(--text-dark);
}

/* Section Sports Types */
.page-the-thao .section-sports-types {
  padding: 80px 0;
  background-color: var(--text-light);
}

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

.page-the-thao .sport-card {
  background-color: var(--background-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao .sport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-the-thao .sport-card img {
  width: 100%;
  height: 250px; /* Ensure large image size */
  object-fit: cover;
}

.page-the-thao .sport-card h3 {
  font-size: 24px;
  color: var(--secondary-color);
  margin: 20px 20px 10px 20px;
}

.page-the-thao .sport-card p {
  font-size: 16px;
  color: var(--text-dark);
  padding: 0 20px 20px 20px;
}

.page-the-thao .sport-card .card-link {
  display: block;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  text-align: center;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-the-thao .sport-card .card-link:hover {
  background-color: #e6c200;
}

/* Section Advantages */
.page-the-thao .section-advantages {
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 80px 0;
}

.page-the-thao .section-advantages .section-title {
  color: var(--primary-color);
}

.page-the-thao .section-advantages .section-text {
  color: rgba(255, 255, 255, 0.9);
}

.page-the-thao .advantage-list {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  max-width: 800px;
}

.page-the-thao .advantage-list li {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 20px 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: var(--text-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-the-thao .advantage-list li .icon {
  font-size: 28px;
  color: var(--primary-color);
  margin-right: 20px;
}

/* Section Promotions */
.page-the-thao .section-promotions {
  background-color: var(--background-light);
  padding: 80px 0;
}

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

.page-the-thao .promo-card {
  background-color: var(--text-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao .promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-the-thao .promo-card img {
  width: 100%;
  height: 220px; /* Ensure large image size */
  object-fit: cover;
}

.page-the-thao .promo-card h3 {
  font-size: 22px;
  color: var(--secondary-color);
  margin: 20px 20px 10px 20px;
}

.page-the-thao .promo-card h3 a {
  color: var(--secondary-color);
  text-decoration: none;
}

.page-the-thao .promo-card h3 a:hover {
  text-decoration: underline;
}

.page-the-thao .promo-card p {
  font-size: 16px;
  color: var(--text-dark);
  padding: 0 20px 20px 20px;
}

.page-the-thao .promo-card .card-button {
  display: block;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  text-align: center;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border-radius: 0 0 10px 10px;
}

.page-the-thao .promo-card .card-button:hover {
  background-color: #e6c200;
}

/* FAQ Section */
.page-the-thao .section-faq {
  padding: 80px 0;
  background-color: var(--text-light);
}

.page-the-thao .faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-the-thao .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.page-the-thao .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--text-light);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-the-thao .faq-question:hover {
  background: var(--background-light);
}

.page-the-thao .faq-question h3 {
  font-size: 20px;
  color: var(--secondary-color);
  margin: 0;
  flex-grow: 1;
}

.page-the-thao .faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-the-thao .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-the-thao .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background-color: var(--background-light);
}

.page-the-thao .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
}

.page-the-thao .faq-answer p {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 0;
}

/* Call to Action Bottom */
.page-the-thao .section-cta-bottom {
  background: linear-gradient(135deg, var(--primary-color) 0%, #e6c200 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--secondary-color);
}

.page-the-thao .cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-the-thao .cta-title {
  font-size: 38px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-the-thao .cta-description {
  font-size: 20px;
  margin-bottom: 40px;
  color: rgba(0, 0, 128, 0.9);
}

.page-the-thao .cta-description a {
  color: var(--secondary-color);
  font-weight: bold;
  text-decoration: underline;
}

.page-the-thao .cta-description a:hover {
  color: #000066;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-the-thao .hero-title {
    font-size: 42px;
  }
  .page-the-thao .hero-description {
    font-size: 20px;
  }
  .page-the-thao .section-title {
    font-size: 32px;
  }
  .page-the-thao .section-text {
    font-size: 17px;
  }
  .page-the-thao .advantage-list li {
    font-size: 17px;
    padding: 18px 25px;
  }
  .page-the-thao .faq-question h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-the-thao .hero-section {
    padding: 60px 0;
  }
  .page-the-thao .hero-image {
    margin-bottom: 30px;
  }
  .page-the-thao .hero-title {
    font-size: 36px;
  }
  .page-the-thao .hero-description {
    font-size: 18px;
  }
  .page-the-thao .hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-the-thao .section-title {
    font-size: 28px;
  }
  .page-the-thao .section-text {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-the-thao .intro-grid, .page-the-thao .sports-grid, .page-the-thao .promo-grid {
    grid-template-columns: 1fr;
  }
  .page-the-thao .intro-item img {
    width: 200px; 
    height: 150px; 
  }
  .page-the-thao .sport-card img, .page-the-thao .promo-card img {
    height: 200px;
  }
  .page-the-thao .advantage-list li {
    font-size: 16px;
    padding: 15px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .page-the-thao .advantage-list li .icon {
    margin-bottom: 10px;
    margin-right: 0;
  }
  .page-the-thao .faq-question {
    padding: 15px 20px;
  }
  .page-the-thao .faq-question h3 {
    font-size: 16px;
  }
  .page-the-thao .faq-toggle {
    font-size: 24px;
  }
  .page-the-thao .faq-answer {
    padding: 0 20px;
  }
  .page-the-thao .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-the-thao .cta-title {
    font-size: 30px;
  }
  .page-the-thao .cta-description {
    font-size: 18px;
  }
  .page-the-thao .cta-button.large {
    padding: 15px 35px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .page-the-thao .hero-title {
    font-size: 30px;
  }
  .page-the-thao .hero-description {
    font-size: 16px;
  }
  .page-the-thao .section-title {
    font-size: 24px;
  }
  .page-the-thao .section-text {
    font-size: 15px;
  }
  .page-the-thao .cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-the-thao .intro-item h3, .page-the-thao .sport-card h3, .page-the-thao .promo-card h3 {
    font-size: 20px;
  }
  .page-the-thao .cta-title {
    font-size: 26px;
  }
  .page-the-thao .cta-description {
    font-size: 16px;
  }
}