.page-sports {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--black-color); /* Inherit from shared.css */
}

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

/* Hero Section */
.page-sports__hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  text-align: center;
  background-color: #26A9E0; /* Primary brand color for hero background */
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-sports__hero-section .page-sports__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  text-align: left;
  z-index: 1;
}

.page-sports__hero-content {
  flex: 1;
}

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

.page-sports__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-sports__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.page-sports__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* General Section Styles */
.page-sports__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-sports__section-subtitle {
  font-size: 1.3em;
  text-align: center;
  margin-bottom: 40px;
  opacity: 0.8;
  color: #ffffff;
}

.page-sports__light-bg {
  background-color: #FFFFFF;
  color: #333333; /* Dark text for light background */
  padding: 60px 0;
}

.page-sports__dark-bg {
  background-color: #26A9E0;
  color: #ffffff; /* Light text for dark background */
  padding: 60px 0;
}

.page-sports__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.page-sports__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-sports__btn-primary:hover {
  background-color: #d16b06;
  transform: translateY(-2px);
}

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

.page-sports__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
  transform: translateY(-2px);
}

/* Intro Section */
.page-sports__intro-section .page-sports__section-title {
  color: #333333;
}

/* Games Section */
.page-sports__games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.page-sports__game-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sports__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 15px;
}

.page-sports__game-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #ffffff;
}

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

.page-sports__game-title a:hover {
  color: #EA7C07;
}

.page-sports__game-description {
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.8);
  padding: 0 15px;
}

/* Advantages Section */
.page-sports__advantages-section .page-sports__section-title {
  color: #333333;
}

.page-sports__advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.page-sports__advantage-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  color: #333333;
}

.page-sports__advantage-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-sports__advantage-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-sports__advantage-description {
  font-size: 0.95em;
  line-height: 1.7;
}

/* Guide Section */
.page-sports__guide-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.page-sports__step-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  color: #ffffff;
  position: relative;
}

.page-sports__step-number {
  width: 50px;
  height: 50px;
  background-color: #EA7C07;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0 auto 20px auto;
  position: relative;
  z-index: 1;
}

.page-sports__step-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-sports__step-description {
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.8);
}

.page-sports__guide-cta {
  text-align: center;
  margin-top: 60px;
}

/* Promotions Section */
.page-sports__promotions-section .page-sports__section-title {
  color: #333333;
}

.page-sports__promotions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.page-sports__promotion-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding-bottom: 20px;
  color: #333333;
}

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

.page-sports__promotion-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-sports__promotion-title a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-sports__promotion-title a:hover {
  color: #EA7C07;
}

.page-sports__promotion-description {
  font-size: 0.95em;
  color: #555555;
  padding: 0 15px;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-sports__faq-section .page-sports__section-title {
  color: #ffffff;
}

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

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

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

.page-sports__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

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

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

.page-sports__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 1em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.page-sports__faq-item.active .page-sports__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

/* CTA Section */
.page-sports__cta-section .page-sports__section-title {
  color: #333333;
}

.page-sports__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 2.8em;
  }

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

  .page-sports__games-grid,
  .page-sports__advantages-grid,
  .page-sports__guide-steps,
  .page-sports__promotions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-sports__hero-section .page-sports__container {
    flex-direction: column;
    text-align: center;
  }

  .page-sports__hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-sports__hero-section {
    padding-top: 0; /* Avoid double padding if shared.css handles body padding */
    padding-bottom: 40px;
  }

  .page-sports__hero-section .page-sports__container {
    padding: 0 15px;
    gap: 20px;
  }

  .page-sports__hero-title {
    font-size: 2.2em;
    margin-top: 20px;
  }

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

  .page-sports__hero-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  /* 产品展示图区域 */
  .page-sports__games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* 通用图片与容器 */
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-sports__container,
  .page-sports__section,
  .page-sports__card,
  .page-sports__game-card,
  .page-sports__advantage-item,
  .page-sports__step-item,
  .page-sports__promotion-card,
  .page-sports__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 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__hero-buttons,
  .page-sports__cta-buttons {
    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;
  }

  /* 其他内容模块 */
  .page-sports__section-title {
    font-size: 1.8em;
    padding: 0 15px;
  }

  .page-sports__section-subtitle,
  .page-sports__text-block {
    font-size: 1em;
    padding: 0 15px;
  }

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

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

  .page-sports__faq-answer {
    padding: 10px 20px;
  }

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