.page-sports {
  color: #ffffff; /* Body background is dark (var(--black-color)), so text is light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-sports h1, .page-sports h2, .page-sports h3, .page-sports h4, .page-sports h5, .page-sports h6 {
  color: #26A9E0; /* Brand primary color for headings */
  margin-bottom: 1rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-sports h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #FFFFFF; /* H1 on dark hero background */
}

.page-sports h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.page-sports h3 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin-bottom: 1rem;
}

.page-sports p {
  margin-bottom: 1rem;
  color: #f0f0f0;
}

.page-sports__text-link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-sports__text-link:hover {
  color: #EA7C07;
}

.page-sports__dark-bg {
  background-color: #000000; /* Assuming var(--black-color) resolves to #000000 or similar dark */
  color: #ffffff;
}

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

.page-sports__light-bg h1, .page-sports__light-bg h2, .page-sports__light-bg h3 {
  color: #26A9E0;
}

.page-sports__light-bg p, .page-sports__light-bg li {
  color: #333333;
}

.page-sports__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  overflow: hidden;
  text-align: center;
}

.page-sports__hero-image-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 30px;
}

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

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

.page-sports__description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #f0f0f0;
}

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

.page-sports__btn-primary,
.page-sports__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-sports__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

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

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

.page-sports__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-sports__btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-sports__section {
  padding: 60px 20px;
}

.page-sports__section-title {
  margin-bottom: 1.5rem;
  color: #26A9E0;
}

.page-sports__section-description {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1.05rem;
}

.page-sports__popular-sports .page-sports__section-description {
  color: #333333;
}

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

.page-sports__sports-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-sports__sports-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-sports__sports-card-title {
  color: #26A9E0;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-sports__sports-card-text {
  color: #f0f0f0;
  padding: 0 15px;
  flex-grow: 1;
}

.page-sports__light-bg .page-sports__sports-card {
  background-color: #f9f9f9;
  color: #333333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-sports__light-bg .page-sports__sports-card-title {
  color: #26A9E0;
}

.page-sports__light-bg .page-sports__sports-card-text {
  color: #333333;
}

.page-sports__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.page-sports__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.page-sports__step-title {
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-sports__step-text {
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-sports__tip-card {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.page-sports__tip-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-sports__tip-card h3 {
  color: #26A9E0;
  margin-bottom: 10px;
  flex-basis: calc(100% - 320px);
  flex-grow: 1;
}

.page-sports__tip-card ul {
  list-style: disc inside;
  color: #f0f0f0;
  padding-left: 20px;
  flex-basis: 100%;
}

.page-sports__tip-card li {
  margin-bottom: 8px;
}

.page-sports__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.page-sports__promo-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-sports__promo-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-sports__promo-card-title {
  color: #26A9E0;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-sports__promo-card-text {
  color: #333333;
  padding: 0 15px;
  flex-grow: 1;
}

.page-sports__cta-promotions {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-sports__cta-promotions p {
  margin-bottom: 20px;
  color: #333333;
}

.page-sports__reason-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-sports__reason-card {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-sports__reason-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-sports__reason-title {
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-sports__reason-text {
  color: #f0f0f0;
  flex-grow: 1;
}

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

.page-sports__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-sports__faq-item details > summary {
  list-style: none;
}

.page-sports__faq-item details > summary::-webkit-details-marker {
  display: none;
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #ffffff;
  color: #333333;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.page-sports__faq-qtext {
  flex-grow: 1;
  color: #333333;
}

.page-sports__faq-qtext .page-sports__text-link {
  color: #26A9E0;
}

.page-sports__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-sports__faq-answer {
  padding: 15px 25px 20px;
  border-top: 1px solid #e0e0e0;
  color: #555555;
}

.page-sports__faq-answer p {
  color: #555555;
}

.page-sports__faq-answer .page-sports__text-link {
  color: #26A9E0;
}

.page-sports__conclusion {
  text-align: center;
  padding-bottom: 80px;
}

.page-sports__cta-footer {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-sports__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-sports__tip-card {
    flex-direction: column;
    text-align: center;
  }

  .page-sports__tip-card h3 {
    flex-basis: 100%;
  }

  .page-sports__tip-image {
    max-width: 100%;
  }

  .page-sports__tip-card ul {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .page-sports {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-sports__hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-sports__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-sports__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-sports__description {
    font-size: 1rem;
  }

  .page-sports__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-sports__section {
    padding: 40px 15px;
  }

  .page-sports__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .page-sports__section-description {
    font-size: 0.95rem;
  }

  .page-sports__sports-card-image,
  .page-sports__promo-card-image,
  .page-sports__reason-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-sports__tip-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-sports__tip-card h3 {
    text-align: center;
  }

  .page-sports__tip-card ul {
    text-align: left;
  }

  .page-sports__faq-question {
    padding: 15px 20px;
  }

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

  /* Ensure all containers with images/buttons/videos are responsive */
  .page-sports__section,
  .page-sports__sports-grid,
  .page-sports__guide-steps,
  .page-sports__promo-grid,
  .page-sports__reason-cards,
  .page-sports__faq-list,
  .page-sports__cta-buttons,
  .page-sports__cta-footer {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-sports__tip-card {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-sports__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}