/* style/sports.css */
/* body đã padding-top: var(--header-offset) từ shared.css; trang này không cần thêm */
.page-sports {
  background-color: var(--dark-bg-1); /* Giả định dark-bg-1 là màu tối */
  color: #ffffff; /* Văn bản mặc định màu trắng trên nền tối */
}

.page-sports__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Nhỏ hơn so với --header-offset để tránh trùng lặp */
  background-color: var(--dark-bg-1);
  color: #ffffff;
  text-align: center;
}

.page-sports__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-sports__hero-content {
  max-width: 900px;
  margin-top: 30px;
}

.page-sports__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
  /* Sử dụng clamp để kiểm soát kích thước H1 */
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-sports__description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-sports__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-sports__btn-primary,
.page-sports__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-sports__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-sports__btn-primary:hover {
  background-color: #1e87b6;
  border-color: #1e87b6;
}

.page-sports__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-sports__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-sports__video-section {
  background-color: var(--dark-bg-2, #1a1a1a); /* Nền tối cho phần video */
  padding: 60px 20px;
  padding-top: 10px; /* Nhỏ hơn so với --header-offset để tránh trùng lặp */
  text-align: center;
  color: #ffffff;
}

.page-sports__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-sports__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  background-color: #000;
  box-sizing: border-box;
}

.page-sports__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  cursor: pointer;
}

.page-sports__video-description {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 25px;
}

.page-sports__video-cta {
  margin-top: 20px;
}

.page-sports__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--dark-bg-1);
  color: #ffffff;
}

.page-sports__container {
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-sports__sub-title {
  font-size: 1.5rem;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-sports p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-sports__grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-sports__card {
  background-color: rgba(255, 255, 255, 0.1); /* Nền hơi trong suốt trên nền tối */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sports__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-sports__card-title {
  font-size: 1.3rem;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-sports__card p {
  font-size: 0.95rem;
  color: #e0e0e0;
}

.page-sports__guide-list,
.page-sports__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-sports__guide-list li,
.page-sports__promo-list li {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

.page-sports__list-item-title {
  font-size: 1.2rem;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-sports__guide-list p,
.page-sports__promo-list p {
  color: #cccccc;
}

.page-sports__guide-list a,
.page-sports__promo-list a,
.page-sports__faq-answer a,
.page-sports__conclusion-section a {
  color: #EA7C07; /* Màu cam cho liên kết nổi bật */
  text-decoration: none;
  font-weight: bold;
}

.page-sports__guide-list a:hover,
.page-sports__promo-list a:hover,
.page-sports__faq-answer a:hover,
.page-sports__conclusion-section a:hover {
  text-decoration: underline;
}

.page-sports__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-sports__promo-cta {
  margin-top: 30px;
}

.page-sports__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-sports__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

.page-sports__feature-title {
  font-size: 1.3rem;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-sports__feature-item p {
  font-size: 0.95rem;
  color: #e0e0e0;
}

.page-sports__faq-list {
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-sports__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-sports__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-sports__faq-item summary {
  list-style: none;
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  background-color: #26A9E0;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.page-sports__faq-question:hover {
  background-color: #1e87b6;
}

.page-sports__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
}

.page-sports__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
  background-color: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-sports__support-cta {
  margin-top: 20px;
}

.page-sports__conclusion-section {
  background-color: #26A9E0; /* Sử dụng màu chủ đạo cho phần kết luận */
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
}

.page-sports__conclusion-section .page-sports__section-title {
  color: #ffffff;
}

.page-sports__conclusion-section p {
  font-size: 1.1rem;
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-sports {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-sports__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-sports__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-sports__description {
    font-size: 1rem;
  }

  .page-sports__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-sports__video-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-sports__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 20px;
  }

  .page-sports__video-wrapper {
    padding-bottom: 56.25%;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-sports__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-sports__content-area,
  .page-sports__conclusion-section {
    padding: 30px 15px;
  }

  .page-sports__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-sports__card {
    padding: 20px;
  }

  .page-sports__card-image,
  .page-sports__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-sports__sub-title,
  .page-sports__card-title,
  .page-sports__list-item-title,
  .page-sports__feature-title {
    font-size: 1.1rem;
  }

  .page-sports__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-sports__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.9rem;
  }

  .page-sports__grid-3,
  .page-sports__features-grid {
    gap: 20px;
  }

  .page-sports__guide-list li,
  .page-sports__promo-list li {
    padding: 15px;
  }
}

/* Ensure all images adhere to min-size in content area */
.page-sports__content-area img {
  min-width: 200px;
  min-height: 200px;
}

.page-sports a {
  color: #26A9E0;
}

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