.page-sports {
  color: #FFF6D6; /* Text Main color on dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #0A0A0A; /* Background color from custom配色 */
}

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

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  text-align: center;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 50px;
  overflow: hidden;
}

.page-sports__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 600px; /* Default height for hero image */
  overflow: hidden;
}

.page-sports__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the area */
  display: block;
}

.page-sports__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 30px auto 0;
  padding: 0 20px;
}

.page-sports__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size */
  color: #FFD36B; /* Glow color for main title */
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.6);
}

.page-sports__subtitle {
  font-size: 1.2em;
  color: #FFF6D6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-sports__btn-primary,
.page-sports__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-sports__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Custom button gradient */
  color: #333333; /* Dark text for contrast on light gradient */
  border: none;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-sports__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
}

.page-sports__btn-secondary {
  background: #111111; /* Card BG color */
  color: #FFD36B; /* Glow color for text */
  border: 2px solid #3A2A12; /* Border color */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-sports__btn-secondary:hover {
  transform: translateY(-3px);
  background: #1a1a1a;
  border-color: #FFD36B;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* General Section Styles */
.page-sports__section {
  padding: 60px 0;
  background-color: #0A0A0A;
  position: relative;
}

.page-sports__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Main color for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-sports__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-sports__text-block p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #FFF6D6;
}

.page-sports__text-block h3 {
  color: #FFD36B;
  font-size: 1.5em;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-sports__image-inline {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Product Grid Section */
.page-sports__products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports__card {
  background: #111111; /* Card BG color */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.page-sports__product-card {
  padding-bottom: 20px;
}

.page-sports__card-title {
  font-size: 1.4em;
  color: #F2C14E;
  margin: 20px 15px 10px;
  font-weight: 600;
}

.page-sports__card-description {
  font-size: 1em;
  color: #FFF6D6;
  padding: 0 15px;
  flex-grow: 1;
}

.page-sports__card-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #333333; /* Dark text for contrast */
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  max-width: calc(100% - 30px);
  margin-left: 15px;
  margin-right: 15px;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-sports__card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.4);
}

/* Guide Section */
.page-sports__guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-sports__guide-list li {
  background: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-sports__guide-list li h3 {
  color: #F2C14E;
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-sports__guide-list li p {
  color: #FFF6D6;
  font-size: 1.05em;
  margin-bottom: 0;
}

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

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

.page-sports__advantage-card {
  padding: 25px;
}

.page-sports__card-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 0; /* Icons typically don't have border-radius */
}

/* Promotions Section */
.page-sports__promotions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-sports__promotions-list li {
  background: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-sports__promotions-list li h3 {
  color: #F2C14E;
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-sports__promotions-list li p {
  color: #FFF6D6;
  font-size: 1.05em;
  margin-bottom: 0;
}

/* FAQ Section */
details.page-sports__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #3A2A12; /* Border color */
  overflow: hidden;
  background: #111111; /* Card BG color */
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
details.page-sports__faq-item summary.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-sports__faq-item summary.page-sports__faq-question::-webkit-details-marker {
  display: none;
}
details.page-sports__faq-item summary.page-sports__faq-question:hover {
  background: #1a1a1a;
}
.page-sports__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF6D6; /* Text Main color */
}
.page-sports__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F2C14E; /* Main color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-sports__faq-item .page-sports__faq-answer {
  padding: 0 20px 20px;
  background: #0A0A0A; /* Background color */
  border-radius: 0 0 5px 5px;
  color: #FFF6D6;
}

/* Conclusion Section */
.page-sports__final-cta {
  margin-top: 50px;
}

/* General Image Styles */
.page-sports img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-sports__hero-image-wrapper {
    height: 500px;
  }
  .page-sports__main-title {
    font-size: clamp(2.2em, 4.5vw, 3em);
  }
  .page-sports__subtitle {
    font-size: 1.1em;
  }
  .page-sports__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-sports__hero-section {
    padding-top: 10px; /* Small top padding */
    padding-bottom: 30px;
  }
  .page-sports__hero-image-wrapper {
    height: 300px;
  }
  .page-sports__hero-image {
    object-fit: contain !important; /* Mobile: contain to avoid cropping */
    aspect-ratio: unset !important; /* Mobile: unset aspect ratio */
  }
  .page-sports__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-top: 20px;
  }
  .page-sports__subtitle {
    font-size: 1em;
    padding: 0 15px;
  }
  .page-sports__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
    padding: 0 15px;
  }
  .page-sports__btn-primary,
  .page-sports__btn-secondary,
  .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__products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 2 columns for products */
    gap: 20px;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
  .page-sports__product-card {
    padding-bottom: 15px;
  }
  .page-sports__card-image {
    height: 180px;
  }
  .page-sports__card-title {
    font-size: 1.2em;
    margin: 15px 10px 8px;
  }
  .page-sports__card-description {
    font-size: 0.95em;
    padding: 0 10px;
  }
  .page-sports__card-button {
    font-size: 0.9em;
    padding: 8px 20px;
  }

  /* 装饰主标题 + 长文 SEO 区 */
  .page-sports__section {
    padding: 40px 0;
  }
  .page-sports__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding: 0 15px;
  }
  .page-sports__content-area,
  .page-sports__article-body {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-sports__text-block p,
  .page-sports__guide-list li p,
  .page-sports__promotions-list li p {
    font-size: 1em;
  }
  .page-sports__text-block h3,
  .page-sports__guide-list li h3,
  .page-sports__promotions-list li h3 {
    font-size: 1.4em;
  }
  .page-sports__image-inline {
    margin: 20px auto;
  }

  /* 通用图片与容器 */
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-sports__container,
  .page-sports__section,
  .page-sports__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* FAQ */
  details.page-sports__faq-item summary.page-sports__faq-question {
    padding: 15px;
  }
  .page-sports__faq-qtext {
    font-size: 15px;
  }
  .page-sports__faq-toggle {
    font-size: 20px;
    margin-left: 10px;
    width: 24px;
    height: 24px;
  }
  details.page-sports__faq-item .page-sports__faq-answer {
    padding: 0 15px 15px;
  }

  /* Advantages Grid */
  .page-sports__advantages-grid {
    grid-template-columns: 1fr; /* Single column for advantages */
    gap: 20px;
  }
  .page-sports__advantage-card {
    padding: 20px;
  }
  .page-sports__card-icon {
    width: 80px;
    height: 80px;
  }
}