.page-sports {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Ensure consistency with body background */
}

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

.page-sports__section-title {
  font-size: 2.8em;
  color: #E0B050;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-sports__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-sports__btn-primary {
  background-color: #E0B050;
  color: #1A2B3C;
  border: 2px solid #E0B050;
}

.page-sports__btn-primary:hover {
  background-color: #ffc107;
  border-color: #ffc107;
}

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

.page-sports__btn-secondary:hover {
  background-color: #E0B050;
  color: #1A2B3C;
}

.page-sports__btn-link {
  color: #E0B050;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-sports__btn-link:hover {
  color: #ffc107;
  text-decoration: underline;
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  box-sizing: border-box;
}

.page-sports__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.5);
}

.page-sports__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.page-sports__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
}

.page-sports__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: #E0B050;
  font-weight: bold;
  line-height: 1.2;
}

.page-sports__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  line-height: 1.5;
}

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

/* Why Choose Section */
.page-sports__why-choose-section {
  padding: 80px 0;
  background-color: #1A2B3C; /* Dark background for this section */
  color: #ffffff;
}

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

.page-sports__feature-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-sports__feature-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-sports__feature-icon {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__feature-title {
  font-size: 1.8em;
  color: #E0B050;
  margin-bottom: 15px;
}

.page-sports__feature-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Popular Sports Section */
.page-sports__popular-sports-section {
  padding: 80px 0;
  background-color: #000000; /* Dark background */
  color: #ffffff;
}

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

.page-sports__sport-card {
  background-color: #1A2B3C;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__sport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.page-sports__sport-title {
  font-size: 1.8em;
  color: #E0B050;
  padding: 20px 20px 10px;
}

.page-sports__sport-description {
  font-size: 1em;
  color: #f0f0f0;
  padding: 0 20px 20px;
}

/* Guide Section */
.page-sports__guide-section {
  padding: 80px 0;
  background-color: #1A2B3C;
  color: #ffffff;
}

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

.page-sports__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-sports__step-number {
  font-size: 3em;
  color: #E0B050;
  font-weight: bold;
  margin-bottom: 15px;
}

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

.page-sports__step-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-sports__guide-cta {
  text-align: center;
}

/* Promotions Section */
.page-sports__promotions-section {
  padding: 80px 0;
  background-color: #000000;
  color: #ffffff;
}

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

.page-sports__promotion-card {
  background-color: #1A2B3C;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-sports__promotion-title {
  font-size: 1.6em;
  color: #E0B050;
  padding: 20px 20px 10px;
}

.page-sports__promotion-description {
  font-size: 1em;
  color: #f0f0f0;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-sports__promotions-cta {
  text-align: center;
}

/* Download App Section */
.page-sports__download-app-section {
  padding: 80px 0;
  background-color: #1A2B3C;
  color: #ffffff;
}

.page-sports__download-app-section .page-sports__container {
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.page-sports__app-download-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-sports__download-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-sports__download-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* FAQ Section */
.page-sports__faq-section {
  padding: 80px 0;
  background-color: #000000;
  color: #ffffff;
}

.page-sports__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  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.1);
}

.page-sports__faq-title {
  font-size: 1.4em;
  color: #E0B050;
  margin: 0;
}

.page-sports__faq-toggle {
  font-size: 1.8em;
  color: #E0B050;
  font-weight: bold;
  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 20px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #f0f0f0;
  font-size: 1em;
}

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

.page-sports__faq-answer p {
  margin: 0;
}

/* CTA Banner */
.page-sports__cta-banner {
  padding: 80px 0;
  background-color: #E0B050; /* Auxiliary color for CTA */
  color: #1A2B3C;
  text-align: center;
}

.page-sports__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #1A2B3C;
  font-weight: bold;
}

.page-sports__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__cta-banner .page-sports__btn-primary {
  background-color: #1A2B3C;
  color: #E0B050;
  border-color: #1A2B3C;
}

.page-sports__cta-banner .page-sports__btn-primary:hover {
  background-color: #0d1a26;
  border-color: #0d1a26;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 3em;
  }
  .page-sports__hero-description {
    font-size: 1.2em;
  }
  .page-sports__section-title {
    font-size: 2.2em;
  }
  .page-sports__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    height: auto;
    min-height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-sports__hero-title {
    font-size: 2.5em;
  }
  .page-sports__hero-description {
    font-size: 1em;
  }
  .page-sports__hero-cta-buttons {
    flex-direction: column;
    gap: 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-cta-buttons,
  .page-sports__app-download-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;
  }
  .page-sports__section-title {
    font-size: 1.8em;
  }
  .page-sports__section-description {
    font-size: 0.95em;
  }
  .page-sports__why-choose-section,
  .page-sports__popular-sports-section,
  .page-sports__guide-section,
  .page-sports__promotions-section,
  .page-sports__download-app-section,
  .page-sports__faq-section,
  .page-sports__cta-banner {
    padding: 60px 0;
  }
  .page-sports__download-app-section .page-sports__container {
    flex-direction: column;
  }
  .page-sports__download-image-wrapper {
    order: -1; /* Image above text on mobile */
  }
  .page-sports__cta-title {
    font-size: 2em;
  }
  .page-sports__cta-description {
    font-size: 1em;
  }
  /* All images responsive */
  .page-sports img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  /* All image containers responsive */
  .page-sports__hero-section,
  .page-sports__feature-card,
  .page-sports__sport-card,
  .page-sports__promotion-card,
  .page-sports__download-image-wrapper,
  .page-sports__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  /* Specific content area padding adjustments for mobile */
  .page-sports__why-choose-section .page-sports__container,
  .page-sports__popular-sports-section .page-sports__container,
  .page-sports__guide-section .page-sports__container,
  .page-sports__promotions-section .page-sports__container,
  .page-sports__download-app-section .page-sports__container,
  .page-sports__faq-section .page-sports__container,
  .page-sports__cta-banner .page-sports__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-sports__faq-question,
  .page-sports__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-sports__hero-title {
    font-size: 2em;
  }
  .page-sports__hero-description {
    font-size: 0.9em;
  }
  .page-sports__section-title {
    font-size: 1.6em;
  }
  .page-sports__feature-title,
  .page-sports__sport-title,
  .page-sports__step-title,
  .page-sports__promotion-title,
  .page-sports__faq-title {
    font-size: 1.3em;
  }
  .page-sports__cta-title {
    font-size: 1.8em;
  }
  .page-sports__cta-description {
    font-size: 0.9em;
  }
  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
  }
}