/* style/sports.css */
/* body đã padding-top: var(--header-offset)；trang này cấm viết lại biến đó */
.page-sports {
  background-color: #08160F; /* Nền tối theo yêu cầu */
  color: #F2FFF6; /* Màu chữ chính sáng, tương phản với nền tối */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-sports__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Chỉ một khoảng đệm nhỏ, body đã xử lý --header-offset */
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%); /* Deep Green -> Background */
  overflow: hidden; /* Ensure no overflow */
}

.page-sports__hero-image {
  width: 100%;
  max-width: 1920px; /* Kích thước tối đa cho ảnh hero */
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px; /* Khoảng cách giữa ảnh và nội dung */
}

.page-sports__hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 1; /* Đảm bảo nội dung hiển thị trên ảnh */
  color: #F2FFF6; /* Màu chữ chính */
}

.page-sports__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Sử dụng clamp cho kích thước H1 */
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2FFF6; /* Màu chữ chính */
  line-height: 1.2;
}

.page-sports__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Màu chữ phụ */
}

.page-sports__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Cho phép các nút xuống dòng trên di động */
  width: 100%; /* Đảm bảo container nút chiếm toàn bộ chiều rộng */
  max-width: 500px; /* Giới hạn chiều rộng của nhóm nút */
  margin: 0 auto;
}

.page-sports__btn-primary,
.page-sports__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex; /* Đảm bảo padding và text-align hoạt động */
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box; /* Bao gồm padding và border trong chiều rộng/chiều cao */
  max-width: 100%; /* Đảm bảo nút không vượt quá chiều rộng của container */
  white-space: normal; /* Cho phép văn bản nút xuống dòng */
  word-wrap: break-word; /* Ngắt từ nếu cần */
}

.page-sports__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Màu nút chính */
  color: #F2FFF6; /* Màu chữ chính */
  border: none;
}

.page-sports__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4); /* Glow */
}

.page-sports__btn-secondary {
  background: transparent;
  color: #F2FFF6; /* Màu chữ chính */
  border: 2px solid #2E7A4E; /* Màu viền */
}

.page-sports__btn-secondary:hover {
  background: rgba(46, 122, 78, 0.2); /* Màu viền đậm hơn */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46, 122, 78, 0.2); 
}

.page-sports__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: bold;
  color: #F2FFF6; /* Màu chữ chính */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-sports__subtitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: bold;
  color: #57E38D; /* Màu Glow */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-sports__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-sports__intro-section,
.page-sports__games-section,
.page-sports__guide-section,
.page-sports__promotions-section,
.page-sports__safety-section,
.page-sports__cta-section {
  padding: 60px 0;
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-sports__text-block p {
  margin-bottom: 15px;
  color: #A7D9B8; /* Màu chữ phụ */
}

.page-sports__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #A7D9B8; /* Màu chữ phụ */
}

.page-sports__list li {
  margin-bottom: 10px;
  color: #A7D9B8; /* Màu chữ phụ */
}

.page-sports__list li strong {
  color: #F2FFF6; /* Màu chữ chính */
}

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

.page-sports__card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  color: #F2FFF6; /* Màu chữ chính */
  border: 1px solid #2E7A4E; /* Màu viền */
}

.page-sports__card-image {
  width: 100%;
  height: 200px; /* Chiều cao cố định cho ảnh card */
  object-fit: cover;
  display: block;
}

.page-sports__card-title {
  font-size: 1.4rem;
  font-weight: bold;
  padding: 20px 20px 10px;
  color: #F2C14E; /* Màu Gold */
}

.page-sports__card p {
  padding: 0 20px 20px;
  flex-grow: 1; /* Đảm bảo các đoạn văn bản có chiều cao bằng nhau */
  color: #A7D9B8; /* Màu chữ phụ */
}

.page-sports__card-button {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

.page-sports__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-sports__step-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  color: #F2FFF6; /* Màu chữ chính */
  border: 1px solid #2E7A4E; /* Màu viền */
}

.page-sports__step-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #F2C14E; /* Màu Gold */
  margin-bottom: 15px;
}

.page-sports__step-item p {
  margin-bottom: 20px;
  flex-grow: 1;
  color: #A7D9B8; /* Màu chữ phụ */
}

.page-sports__cta-section {
  text-align: center;
}

.page-sports__cta-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #A7D9B8; /* Màu chữ phụ */
}

/* FAQ Section - Sử dụng Details/Summary */
.page-sports__faq-section {
  padding: 60px 0;
  border-top: 1px solid #1E3A2A;
}

.page-sports__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Màu viền */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-sports__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15rem;
  font-weight: bold;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
  list-style: none; /* Ẩn marker mặc định */
}

.page-sports__faq-item summary::-webkit-details-marker {
  display: none; /* Ẩn marker mặc định cho Webkit */
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-sports__faq-qtext {
  flex-grow: 1;
  color: #F2C14E; /* Màu Gold */
}

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

.page-sports__faq-answer {
  padding: 20px;
  padding-top: 0;
  font-size: 1rem;
  color: #A7D9B8; /* Màu chữ phụ */
}

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

  .page-sports__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* Đảm bảo chỉ 10px */
  }

  .page-sports__hero-title {
    font-size: clamp(2rem, 7vw, 2.8rem); /* Điều chỉnh H1 cho di động */
  }

  .page-sports__hero-description {
    font-size: 1rem;
  }

  .page-sports__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-sports__intro-section,
  .page-sports__games-section,
  .page-sports__guide-section,
  .page-sports__promotions-section,
  .page-sports__safety-section,
  .page-sports__cta-section {
    padding: 40px 0;
  }

  .page-sports__section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 30px;
    padding-top: 20px;
  }

  .page-sports__subtitle {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-sports__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-sports__card {
    margin: 0 10px; /* Thêm khoảng cách hai bên cho card */
  }

  .page-sports__card-image {
    height: 180px;
  }

  .page-sports__card-title {
    font-size: 1.2rem;
    padding: 15px 15px 8px;
  }

  .page-sports__card p {
    padding: 0 15px 15px;
  }

  .page-sports__card-button {
    margin: 0 15px 15px;
    width: calc(100% - 30px);
  }

  .page-sports__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-sports__step-item {
    margin: 0 10px;
    padding: 20px;
  }

  .page-sports__step-title {
    font-size: 1.1rem;
  }

  .page-sports__faq-item summary {
    padding: 15px;
    font-size: 1rem;
  }

  .page-sports__faq-answer {
    padding: 15px;
    padding-top: 0;
  }

  /* Mobile image and video responsiveness */
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

  .page-sports__video-section,
  .page-sports__video-container,
  .page-sports__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-sports__cta-buttons,
  .page-sports__button-group,
  .page-sports__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}

/* Custom colors applied */
.page-sports__card {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  border: 1px solid #2E7A4E; /* Border */
}

.page-sports__card-title {
  color: #F2C14E; /* Gold */
}

.page-sports__faq-item summary {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}

.page-sports__faq-qtext {
  color: #F2C14E; /* Gold */
}

.page-sports__faq-answer {
  color: #A7D9B8; /* Text Secondary */
}

.page-sports__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main */
}

.page-sports__btn-secondary {
  color: #F2FFF6; /* Text Main */
  border-color: #2E7A4E; /* Border */
}

.page-sports__btn-secondary:hover {
  background: rgba(46, 122, 78, 0.2); /* Sử dụng màu border làm nền hover */
}

.page-sports__hero-title,
.page-sports__section-title {
  color: #F2FFF6; /* Text Main */
}

.page-sports__subtitle {
  color: #57E38D; /* Glow */
}

.page-sports p, .page-sports li {
  color: #A7D9B8; /* Text Secondary */
}

.page-sports__hero-description, .page-sports__cta-description {
  color: #A7D9B8; /* Text Secondary */
}

.page-sports__list li strong {
  color: #F2FFF6; /* Text Main */
}

.page-sports__step-title {
  color: #F2C14E; /* Gold */
}

/* Ensure no filter on images */
.page-sports img {
  filter: none !important;
}