.page-sports {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light background */
  line-height: 1.6;
  background-color: #FFFFFF;
}

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

.page-sports__dark-section {
  background-color: #26A9E0;
  color: #ffffff;
}

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

.page-sports__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  color: inherit; /* Inherit color from parent section */
}

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

.page-sports__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding: 60px 20px;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

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

.page-sports__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

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

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

.page-sports__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
}

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

.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;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

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

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

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

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

.page-sports__about-section,
.page-sports__registration-section,
.page-sports__products-section,
.page-sports__odds-section,
.page-sports__promotions-section,
.page-sports__mobile-app-section,
.page-sports__support-section,
.page-sports__faq-section,
.page-sports__cta-final-section {
  padding: 80px 0;
}

.page-sports__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-sports__content-grid .page-sports__text-block {
  flex: 1;
}

.page-sports__content-grid .page-sports__image-block {
  flex: 1;
  text-align: center;
}

.page-sports__content-grid .page-sports__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

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

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

.page-sports__step-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

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

.page-sports__step-card p {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-sports__step-card .page-sports__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: auto; /* Push image to bottom if content is shorter */
}

.page-sports__cta-center {
  text-align: center;
  margin-top: 50px;
}

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

.page-sports__product-card,
.page-sports__promo-card,
.page-sports__support-card,
.page-sports__feature-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333333;
}

.page-sports__product-card img,
.page-sports__promo-card img,
.page-sports__support-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-sports__product-card .page-sports__product-title,
.page-sports__promo-card .page-sports__promo-title,
.page-sports__support-card .page-sports__support-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  font-weight: bold;
  color: #26A9E0;
}

.page-sports__product-card .page-sports__product-title a,
.page-sports__promo-card .page-sports__promo-title a,
.page-sports__support-card .page-sports__support-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-sports__product-card .page-sports__product-title a:hover,
.page-sports__promo-card .page-sports__promo-title a:hover,
.page-sports__support-card .page-sports__support-title a:hover {
  text-decoration: underline;
}

.page-sports__product-card p,
.page-sports__promo-card p,
.page-sports__support-card p {
  font-size: 1em;
  flex-grow: 1;
}

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

.page-sports__feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-sports__feature-card p {
  font-size: 1em;
  flex-grow: 1;
}

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

.page-sports__app-features {
  flex: 1;
  color: #ffffff;
}

.page-sports__feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.page-sports__feature-list li {
  font-size: 1.1em;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.page-sports__list-icon {
  font-size: 1.2em;
  margin-right: 10px;
  color: #EA7C07; /* Highlight icon with login color */
  font-weight: bold;
}

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

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

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

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

.page-sports__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #f0f0f0;
  color: #26A9E0;
  list-style: none; /* Remove default marker */
}

.page-sports__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for Webkit */
}

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

.page-sports__faq-item[open] summary .page-sports__faq-toggle {
  transform: rotate(45deg);
}

.page-sports__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1.1em;
  color: #555555;
  background-color: #ffffff;
}

.page-sports__cta-final-section {
  text-align: center;
  padding: 100px 0;
}

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

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

  .page-sports__content-grid,
  .page-sports__app-content {
    flex-direction: column;
    text-align: center;
  }

  .page-sports__content-grid .page-sports__text-block,
  .page-sports__app-features {
    order: 2;
  }

  .page-sports__content-grid .page-sports__image-block,
  .page-sports__app-image-wrapper {
    order: 1;
  }
}

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

  .page-sports__hero-title {
    font-size: 2.2em;
  }

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

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

  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    margin: 0 auto;
  }

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

  .page-sports__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-sports__about-section,
  .page-sports__registration-section,
  .page-sports__products-section,
  .page-sports__odds-section,
  .page-sports__promotions-section,
  .page-sports__mobile-app-section,
  .page-sports__support-section,
  .page-sports__faq-section,
  .page-sports__cta-final-section {
    padding: 50px 0;
  }

  .page-sports__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Images responsive */
  .page-sports img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-sports__section,
  .page-sports__card,
  .page-sports__container,
  .page-sports__hero-image-wrapper,
  .page-sports__app-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-sports__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }

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

  .page-sports__faq-answer {
    font-size: 0.95em;
    padding: 10px 20px 15px;
  }

  .page-sports__feature-list {
    text-align: center;
  }

  .page-sports__feature-list li {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .page-sports__hero-title {
    font-size: 1.8em;
  }

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

  .page-sports__step-card .page-sports__step-title {
    font-size: 1.5em;
  }

  .page-sports__product-card .page-sports__product-title,
  .page-sports__promo-card .page-sports__promo-title,
  .page-sports__support-card .page-sports__support-title {
    font-size: 1.3em;
  }
}