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

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

.page-sports__dark-bg {
  background-color: #000000;
  color: #ffffff;
}

.page-sports__light-bg {
  background-color: #f8f8f8;
  color: #333333;
}

.page-sports__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Ensures content is not covered by fixed header */
  position: relative;
  overflow: hidden;
}

.page-sports__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.3;
}

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

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

.page-sports__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-sports__btn-primary {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-sports__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #26A9E0;
  padding: 15px 30px;
  border: 2px solid #26A9E0;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

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

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

.page-sports__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
  color: inherit;
}

.page-sports__features-section,
.page-sports__how-it-works-section,
.page-sports__strategy-section,
.page-sports__success-stories-section,
.page-sports__download-section,
.page-sports__video-section,
.page-sports__faq-section,
.page-sports__cta-section {
  padding: 80px 0;
}

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

.page-sports__card {
  background: #ffffff;
  color: #333333;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-sports__card:hover {
  transform: translateY(-5px);
}

.page-sports__feature-icon {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-sports__feature-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-sports__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-sports__process-grid {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-sports__process-step {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

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

.page-sports__step-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-sports__step-text {
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-sports__supported-sports {
  margin-top: 60px;
  text-align: center;
}

.page-sports__sub-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: inherit;
}

.page-sports__sport-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
}

.page-sports__sport-list li {
  font-size: 1.1em;
  color: inherit;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-sports__strategy-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.page-sports__strategy-text-block {
  flex: 2;
}

.page-sports__paragraph {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333333;
}

.page-sports__strategy-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-sports__strategy-list li {
  font-size: 1em;
  line-height: 1.8;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #333333;
}

.page-sports__strategy-list li::before {
  content: '✓';
  color: #26A9E0;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-sports__strategy-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-sports__strategy-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-sports__story-card {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 30px;
}

.page-sports__story-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-sports__story-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-sports__story-text {
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
}

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

.page-sports__step-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-sports__step-icon {
  font-size: 2.2em;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(38, 169, 224, 0.1);
}

.page-sports__step-heading {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-sports__step-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-sports__download-cta {
  margin-top: 60px;
}

.page-sports__video-section .page-sports__section-title,
.page-sports__video-section .page-sports__section-description {
  color: #ffffff;
}

.page-sports__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-sports__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.page-sports__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  max-width: 100%;
  display: block;
}

.page-sports__faq-section .page-sports__section-title,
.page-sports__faq-section .page-sports__section-description {
  color: #333333;
}

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

.page-sports__faq-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  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: #f9f9f9;
  color: #333333;
  transition: background-color 0.3s ease;
}

.page-sports__faq-question:hover {
  background-color: #f0f0f0;
}

.page-sports__faq-heading {
  font-size: 1.2em;
  font-weight: bold;
  margin: 0;
  color: #26A9E0;
}

.page-sports__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

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

.page-sports__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
  background-color: #ffffff;
}

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

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

.page-sports__cta-section {
  text-align: center;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 3em;
  }
  .page-sports__section-title {
    font-size: 2.2em;
  }
  .page-sports__strategy-content {
    flex-direction: column;
    align-items: center;
  }
  .page-sports__strategy-image-wrapper {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    padding: 60px 0;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-sports__hero-title {
    font-size: 2.5em;
  }
  .page-sports__hero-description {
    font-size: 1.1em;
    padding: 0 15px;
  }
  .page-sports__section-title {
    font-size: 2em;
    padding: 0 15px;
  }
  .page-sports__section-description {
    font-size: 1em;
    padding: 0 15px;
    margin-bottom: 40px;
  }
  .page-sports__features-section,
  .page-sports__how-it-works-section,
  .page-sports__strategy-section,
  .page-sports__success-stories-section,
  .page-sports__download-section,
  .page-sports__video-section,
  .page-sports__faq-section,
  .page-sports__cta-section {
    padding: 60px 0;
  }
  .page-sports__process-grid {
    flex-direction: column;
    padding: 0 15px;
  }
  .page-sports__feature-grid,
  .page-sports__story-grid,
  .page-sports__download-steps {
    padding: 0 15px;
  }
  .page-sports__sport-list {
    padding: 0 15px;
  }
  .page-sports__cta-buttons {
    flex-direction: column;
    align-items: center;
    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__cta-buttons {
    flex-wrap: wrap !important;
    gap: 15px;
  }
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-sports__section,
  .page-sports__card,
  .page-sports__container,
  .page-sports__video-section,
  .page-sports__video-container,
  .page-sports__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-sports video,
  .page-sports__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-sports__video-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-sports__faq-list {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-sports__hero-title {
    font-size: 2em;
  }
  .page-sports__section-title {
    font-size: 1.8em;
  }
  .page-sports__feature-title,
  .page-sports__step-title,
  .page-sports__sub-title,
  .page-sports__story-title,
  .page-sports__step-heading,
  .page-sports__faq-heading {
    font-size: 1.4em;
  }
}