/* style/sports.css */

/* Căn chỉnh khoảng cách cho thanh điều hướng cố định */
.page-sports__hero-banner {
  padding-top: 120px; /* Khoảng cách cho desktop */
}

@media (max-width: 768px) {
  .page-sports__hero-banner {
    padding-top: 100px; /* Khoảng cách cho mobile */
  }
}

.page-sports {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Màu chữ mặc định cho nền tối */
  background-color: #0a0a0a; /* Nền tối từ shared.css */
}

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

.page-sports__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700; /* Màu vàng nổi bật */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-sports__text-block {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #e0e0e0;
  text-align: justify;
}

/* Nền tối và nền sáng */
.page-sports__dark-section {
  background-color: #0A246A; /* Màu chủ đạo */
  color: #ffffff;
}

.page-sports__light-section {
  background-color: #1a1a1a; /* Nền xám đậm */
  color: #f0f0f0;
}

/* Các nút */
.page-sports__btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-sports__btn--primary {
  background-color: #FFD700;
  color: #0A246A;
  border: 2px solid #FFD700;
}

.page-sports__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

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

.page-sports__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A246A;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-sports__btn--small {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 6px;
}

.page-sports__btn--inline {
  padding: 8px 15px;
  font-size: 15px;
  border-radius: 5px;
  background-color: #0A246A;
  color: #FFD700;
  border: 1px solid #FFD700;
  margin-top: 10px;
}

.page-sports__btn--inline:hover {
  background-color: #FFD700;
  color: #0A246A;
}

.page-sports__btn--link {
  background: none;
  border: none;
  color: #FFD700;
  font-size: 16px;
  padding: 0;
  margin-top: 15px;
  text-decoration: underline;
}

.page-sports__btn--link:hover {
  color: #e6c200;
}

/* Hero Banner */
.page-sports__hero-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-sports__hero-content {
  z-index: 1;
  max-width: 800px;
  margin-right: 40px;
  text-align: left;
}

.page-sports__hero-title {
  font-size: 48px;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-sports__hero-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-sports__hero-image-wrapper {
  position: relative;
  width: 50%;
  max-width: 600px;
  min-width: 300px;
}

.page-sports__hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.page-sports__introduction {
  padding: 60px 0;
  text-align: center;
}

.page-sports__introduction .page-sports__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Categories Section */
.page-sports__categories {
  padding: 60px 0;
  text-align: center;
}

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

.page-sports__category-card {
  background-color: #1a1a1a; /* Nền xám đậm cho card */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-sports__category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-sports__category-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-sports__category-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-sports__category-description {
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.6;
  padding: 0 15px;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Guide Section */
.page-sports__guide {
  padding: 60px 0;
  text-align: center;
}

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

.page-sports__guide-step-item {
  background-color: #0A246A; /* Màu chủ đạo */
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-sports__guide-step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-sports__guide-step-icon {
  width: 80px;
  height: 80px;
  background-color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-sports__guide-step-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.page-sports__guide-step-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-sports__guide-step-description {
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.6;
  flex-grow: 1;
}

/* Promotions Section */
.page-sports__promotions {
  padding: 60px 0;
  text-align: center;
}

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

.page-sports__promotion-card {
  background-color: #1a1a1a; /* Nền xám đậm cho card */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-sports__promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-sports__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-sports__promotion-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-sports__promotion-description {
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.6;
  padding: 0 15px;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Security and Support Section */
.page-sports__security-support {
  padding: 60px 0;
  text-align: center;
}

.page-sports__security-support .page-sports__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.page-sports__faq {
  padding: 60px 0;
  text-align: center;
}

.page-sports__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1a1a1a; /* Nền xám đậm cho FAQ item */
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #0A246A; /* Màu chủ đạo */
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-sports__faq-question:hover {
  background-color: #0c2b78;
  border-color: #333;
}

.page-sports__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700; /* Màu vàng cho câu hỏi */
  pointer-events: none; /* Ngăn h3 chặn sự kiện click */
}

.page-sports__faq-toggle {
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Ngăn icon chặn sự kiện click */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-sports__faq-item.active .page-sports__faq-toggle {
  transform: rotate(45deg);
  color: #ffffff;
}

.page-sports__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background-color: #1a1a1a; /* Nền tối hơn cho câu trả lời */
  border-top: 1px solid #333;
  border-radius: 0 0 8px 8px;
}

.page-sports__faq-item.active .page-sports__faq-answer {
  max-height: 2000px !important; /* Đảm bảo đủ cao cho mọi nội dung */
  padding: 20px 25px !important;
  opacity: 1;
}

.page-sports__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #e0e0e0;
  text-align: justify;
}

/* News Section */
.page-sports__news {
  padding: 60px 0;
  text-align: center;
}

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

.page-sports__news-card {
  background-color: #0A246A; /* Màu chủ đạo */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.page-sports__news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-sports__news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-sports__news-title {
  font-size: 22px;
  margin: 20px 20px 10px 20px;
  line-height: 1.4;
}

.page-sports__news-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-sports__news-title a:hover {
  color: #e6c200;
}

.page-sports__news-excerpt {
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.6;
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 40px;
  }
  .page-sports__hero-description {
    font-size: 18px;
  }
  .page-sports__hero-banner {
    flex-direction: column;
    text-align: center;
    min-height: auto;
  }
  .page-sports__hero-content {
    margin-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  .page-sports__hero-image-wrapper {
    width: 80%;
    max-width: 500px;
  }
  .page-sports__section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-sports__container {
    padding: 30px 15px;
  }
  .page-sports__hero-title {
    font-size: 32px;
  }
  .page-sports__hero-description {
    font-size: 16px;
  }
  .page-sports__btn {
    padding: 12px 24px;
    font-size: 16px;
  }
  .page-sports__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-sports__text-block {
    font-size: 15px;
  }
  .page-sports__category-grid, .page-sports__guide-steps, .page-sports__promotion-grid, .page-sports__news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-sports__category-image, .page-sports__promotion-image, .page-sports__news-image {
    height: 180px;
  }
  .page-sports__category-title, .page-sports__promotion-title, .page-sports__news-title {
    font-size: 20px;
  }
  .page-sports__faq-question {
    padding: 15px 20px;
  }
  .page-sports__faq-question h3 {
    font-size: 16px;
  }
  .page-sports__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-sports__faq-answer {
    padding: 0 20px;
  }
  .page-sports__faq-item.active .page-sports__faq-answer {
    padding: 15px 20px !important;
  }
  /* Đảm bảo hình ảnh không vượt quá chiều rộng màn hình */
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-sports__section, .page-sports__card, .page-sports__container,
  .page-sports__hero-banner, .page-sports__introduction, .page-sports__categories, 
  .page-sports__guide, .page-sports__promotions, .page-sports__security-support,
  .page-sports__faq, .page-sports__news, .page-sports__category-card,
  .page-sports__guide-step-item, .page-sports__promotion-card, .page-sports__news-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-sports__hero-title {
    font-size: 28px;
  }
  .page-sports__hero-description {
    font-size: 15px;
  }
  .page-sports__btn {
    padding: 10px 20px;
    font-size: 15px;
  }
  .page-sports__section-title {
    font-size: 24px;
  }
  .page-sports__text-block {
    font-size: 14px;
  }
  .page-sports__category-image, .page-sports__promotion-image, .page-sports__news-image {
    height: 150px;
  }
  .page-sports__category-title, .page-sports__promotion-title, .page-sports__news-title {
    font-size: 18px;
  }
  .page-sports__guide-step-title {
    font-size: 20px;
  }
  .page-sports__guide-step-description {
    font-size: 14px;
  }
  .page-sports__faq-question h3 {
    font-size: 15px;
  }
  .page-sports__faq-answer p {
    font-size: 14px;
  }
}