.page-sports {
  background-color: #B71C1C; /* Background */
  color: #FFF5E1; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

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

.page-sports__hero-section {
  padding-top: 10px; /* Small top padding, as body padding-top is handled by shared.css */
  padding-bottom: 40px;
  text-align: center;
  background-color: #7A0E0E; /* Deep Red for hero background */
  position: relative;
  overflow: hidden;
}

.page-sports__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height for hero image */
  overflow: hidden;
}

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

.page-sports__hero-content {
  position: relative;
  z-index: 1;
  padding: 30px 20px;
}

.page-sports__hero-title {
  font-size: clamp(2em, 3.5vw, 3.2em);
  font-weight: bold;
  color: #FFF5E1; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-sports__hero-description {
  font-size: 1.1em;
  color: #FFF5E1; /* Text Main */
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-sports__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-sports__btn-primary,
.page-sports__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-sports__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button color */
  color: #7A0E0E; /* Deep Red for contrast */
  border: none;
}

.page-sports__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-sports__btn-secondary {
  background-color: transparent;
  color: #FFD86A; /* Gold */
  border: 2px solid #FFD86A; /* Gold */
}

.page-sports__btn-secondary:hover {
  background-color: #FFD86A;
  color: #7A0E0E; /* Deep Red */
  transform: translateY(-2px);
}

.page-sports__section-title {
  font-size: 2.5em;
  color: #F4D34D; /* Gold */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-sports__section-title--light {
  color: #FFF5E1; /* Text Main */
}

.page-sports__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
  color: #FFF5E1; /* Text Main */
}

.page-sports__text-block--light {
  color: #FFF5E1; /* Text Main */
}

.page-sports__intro-section,
.page-sports__features-section,
.page-sports__guide-section,
.page-sports__why-choose-section,
.page-sports__faq-section {
  padding: 60px 0;
}

.page-sports__dark-section {
  background-color: #7A0E0E; /* Deep Red */
  padding: 60px 0;
}

.page-sports__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-sports__image-wrapper--center {
  display: flex;
  justify-content: center;
}

.page-sports__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-sports__card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #FFF5E1; /* Text Main */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #F2B544; /* Border */
}

.page-sports__card-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #FFD86A; /* Glow */
  margin-bottom: 15px;
}

.page-sports__card-text {
  font-size: 1em;
  line-height: 1.7;
  color: #FFF5E1; /* Text Main */
  margin-bottom: 20px;
}

.page-sports__btn-link {
  display: inline-block;
  margin-top: auto; /* Push to bottom of flex container */
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button color */
  color: #7A0E0E; /* Deep Red for contrast */
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-sports__btn-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.page-sports__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-sports__text-link {
  color: #FFD86A; /* Gold for links */
  text-decoration: underline;
}

.page-sports__text-link--light {
  color: #FFD86A; /* Gold for links */
}

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

.page-sports__faq-item {
  background-color: #D32F2F; /* Card BG */
  border: 1px solid #F2B544; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF5E1; /* Text Main */
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD86A; /* Glow */
  cursor: pointer;
  list-style: none;
}

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

.page-sports__faq-question::marker {
  display: none;
}

.page-sports__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-sports__faq-item[open] .page-sports__faq-toggle {
  transform: rotate(45deg);
}

.page-sports__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.7;
  color: #FFF5E1; /* Text Main */
}

.page-sports__faq-answer p {
  margin-bottom: 0;
  color: #FFF5E1; /* Text Main */
}

.page-sports__footer-content {
  background-color: #7A0E0E; /* Deep Red */
  padding: 30px 0;
  text-align: center;
  color: #FFF5E1; /* Text Main */
  margin-top: 40px;
}

.page-sports__copyright {
  font-size: 0.9em;
  color: #FFF5E1; /* Text Main */
  margin: 0;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: clamp(2em, 4.5vw, 3em);
  }

  .page-sports__section-title {
    font-size: 2em;
  }

  .page-sports__features-grid,
  .page-sports__guide-steps,
  .page-sports__promotions-grid,
  .page-sports__reason-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  /* 1. HERO 主图区域 */
  .page-sports__hero-section {
    padding-top: 10px !important; /* Small top padding, as body padding-top is handled by shared.css */
    padding-bottom: 30px;
  }
  .page-sports__hero-image-wrapper {
    max-height: 400px;
  }
  .page-sports__hero-title {
    font-size: clamp(1.8em, 7vw, 2.5em) !important;
    margin-bottom: 10px;
  }
  .page-sports__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
    padding: 0 15px;
  }
  .page-sports__hero-cta {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  /* 2. 产品展示图区域 (No explicit product grid, but general grid adaptation) */
  .page-sports__features-grid,
  .page-sports__guide-steps,
  .page-sports__promotions-grid,
  .page-sports__reason-grid {
    grid-template-columns: 1fr !important; /* Single column */
    gap: 20px;
    padding: 0 15px;
  }
  .page-sports__card {
    padding: 20px;
    text-align: left;
  }
  .page-sports__card-title {
    font-size: 1.2em;
  }

  /* 3. 通用图片与容器 */
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-sports__container,
  .page-sports__section,
  .page-sports__card,
  .page-sports__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-sports__intro-section,
  .page-sports__features-section,
  .page-sports__guide-section,
  .page-sports__why-choose-section,
  .page-sports__faq-section,
  .page-sports__dark-section {
    padding: 40px 0;
  }

  /* 4. 按钮与按钮容器 */
  .page-sports__btn-primary,
  .page-sports__btn-secondary,
  .page-sports__btn-link,
  .page-sports a[class*="button"],
  .page-sports a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-sports__hero-cta,
  .page-sports__cta-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column !important; /* Ensure vertical stacking for buttons */
  }

  /* 5. 其他内容模块 */
  .page-sports__section-title {
    font-size: 1.8em !important;
    margin-bottom: 20px;
    padding: 0 15px;
  }
  .page-sports__text-block {
    font-size: 1em;
    padding: 0 15px;
    text-align: left;
  }
  .page-sports__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-sports__faq-answer {
    padding: 0 20px 15px;
  }
  .page-sports__footer-content {
    padding: 20px 15px;
  }
  .page-sports__copyright {
    font-size: 0.85em;
  }
}