.page-sports {
  color: #333333; /* Dark text for light body background */
}

.page-sports__hero-section {
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-sports__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 1;
}

.page-sports__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

.page-sports__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f0f0;
}

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

.page-sports__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-sports__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-sports__button--register:hover {
  background-color: #e0e0e0;
  color: #000000;
}

.page-sports__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-sports__button--login:hover {
  background-color: #e0a53a;
  color: #000000;
}

.page-sports__section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

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

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

.page-sports__grid {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}

.page-sports__grid--2-col {
  grid-template-columns: 1fr 1fr;
}

.page-sports__grid--3-col {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-sports__feature-card,
.page-sports__sport-card,
.page-sports__promo-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__feature-card:hover,
.page-sports__sport-card:hover,
.page-sports__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-sports__feature-title,
.page-sports__sport-title,
.page-sports__promo-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-sports__section-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-sports__content-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.page-sports__button--play {
  background-color: #000000;
  color: #FCBC45;
  border: 2px solid #000000;
  margin-top: 10px;
}

.page-sports__button--play:hover {
  background-color: #333333;
  color: #FCBC45;
}

.page-sports__button--view-all {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
}

.page-sports__button--view-all:hover {
  background-color: #e0a53a;
  color: #000000;
}

.page-sports__steps-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-sports__step-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-sports__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

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

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

.page-sports__button--register-large {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  display: block;
  width: fit-content;
  margin: 50px auto 0 auto;
  font-size: 1.1em;
  padding: 18px 35px;
}

.page-sports__button--register-large:hover {
  background-color: #e0a53a;
  color: #000000;
}

.page-sports__mobile-app-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin: 0 auto;
}

.page-sports__button--download {
  background-color: #000000;
  color: #FCBC45;
  border: 2px solid #000000;
  margin-top: 20px;
}

.page-sports__button--download:hover {
  background-color: #333333;
  color: #FCBC45;
}

.page-sports__button--learn-more {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
}

.page-sports__button--learn-more:hover {
  background-color: #333333;
  color: #FFFFFF;
}

.page-sports__faq-container {
  margin-top: 40px;
}

.page-sports__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.page-sports__faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-sports__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin: 0;
  font-weight: bold;
  position: relative;
  padding-right: 30px;
}

.page-sports__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FCBC45;
  transition: transform 0.3s ease;
}

.page-sports__faq-item.active .page-sports__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-sports__faq-answer {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
  margin-top: 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
  opacity: 0;
}

.page-sports__faq-item.active .page-sports__faq-answer {
  max-height: 200px; /* Adjust as needed */
  opacity: 1;
}

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

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

  .page-sports__grid--2-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    min-height: 400px;
    padding: 30px 15px;
  }

  .page-sports__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-sports__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-sports__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-sports__button {
    padding: 12px 25px;
    width: 100%;
  }

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

  .page-sports__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-sports__grid--3-col {
    grid-template-columns: 1fr;
  }

  .page-sports__grid--reverse-on-mobile {
    display: flex;
    flex-direction: column-reverse;
  }

  .page-sports__text {
    font-size: 1em;
  }

  .page-sports__steps-list {
    grid-template-columns: 1fr;
  }

  .page-sports__button--register-large,
  .page-sports__button--view-all,
  .page-sports__button--learn-more {
    font-size: 1em;
    padding: 15px 30px;
    width: 100%;
  }

  .page-sports__section img {
    max-width: 100%;
    height: auto;
  }

  /* Ensure all images within .page-sports are responsive and not too small */
  .page-sports img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover; /* Ensures images fill their space without distortion */
  }

  .page-sports__sport-image {
    height: 200px; /* Maintain a reasonable height for card images */
  }

  .page-sports__mobile-app-image {
    max-width: 300px;
  }
}