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

.page-popular-sports-leagues__dark-bg {
  background-color: #26A9E0; /* Brand primary color */
  color: #ffffff; /* White text for dark background */
}

.page-popular-sports-leagues__light-bg {
  background-color: #ffffff; /* White background */
  color: #333333; /* Dark text for light background */
}

.page-popular-sports-leagues__dark-section {
  background-color: #26A9E0;
  color: #ffffff;
  padding: 60px 20px;
}

.page-popular-sports-leagues__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-popular-sports-leagues__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  overflow: hidden;
}

.page-popular-sports-leagues__hero-image {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
  display: block;
}

.page-popular-sports-leagues__hero-content {
  position: relative;
  padding: 40px 15px;
  background: #ffffff; /* White background for text */
  color: #333333; /* Dark text */
  width: 100%;
  max-width: 800px;
  margin-top: -80px; /* Overlap slightly for visual effect, but not over image */
  z-index: 1;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-popular-sports-leagues__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #000000;
  font-size: clamp(28px, 4vw, 48px); /* Responsive font size for H1 */
}

.page-popular-sports-leagues__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555555;
}

.page-popular-sports-leagues__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-popular-sports-leagues__btn-primary,
.page-popular-sports-leagues__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  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-popular-sports-leagues__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-popular-sports-leagues__btn-primary:hover {
  background-color: #1a8cc4;
  border-color: #1a8cc4;
}

.page-popular-sports-leagues__btn-secondary {
  background-color: #EA7C07; /* Login button color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-popular-sports-leagues__btn-secondary:hover {
  background-color: #c76706;
  border-color: #c76706;
}

.page-popular-sports-leagues__section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: inherit;
}

.page-popular-sports-leagues__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: justify;
  color: inherit;
}

.page-popular-sports-leagues__introduction-section,
.page-popular-sports-leagues__leagues-showcase-section,
.page-popular-sports-leagues__get-started-section,
.page-popular-sports-leagues__responsible-gaming-section,
.page-popular-sports-leagues__faq-section,
.page-popular-sports-leagues__cta-bottom-section,
.page-popular-sports-leagues__support-section {
  padding: 60px 20px;
}

.page-popular-sports-leagues__features-grid,
.page-popular-sports-leagues__league-grid,
.page-popular-sports-leagues__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-popular-sports-leagues__feature-card,
.page-popular-sports-leagues__league-card,
.page-popular-sports-leagues__step-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: inherit;
}

.page-popular-sports-leagues__feature-card .page-popular-sports-leagues__feature-image,
.page-popular-sports-leagues__league-card .page-popular-sports-leagues__league-image {
  width: 100%;
  height: auto;
  min-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-popular-sports-leagues__feature-title,
.page-popular-sports-leagues__league-title,
.page-popular-sports-leagues__step-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
  color: inherit;
}

.page-popular-sports-leagues__feature-text,
.page-popular-sports-leagues__league-description,
.page-popular-sports-leagues__step-text {
  font-size: 1em;
  color: inherit;
}

.page-popular-sports-leagues__btn-text {
  display: inline-block;
  margin-top: 15px;
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-popular-sports-leagues__btn-text:hover {
  color: #1a8cc4;
}

.page-popular-sports-leagues__promotion-image {
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
}

/* FAQ Styles */
.page-popular-sports-leagues__faq-list {
  margin-top: 30px;
}

.page-popular-sports-leagues__faq-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.page-popular-sports-leagues__faq-item[open] {
  background-color: #eaf6fd; /* Lighter background when open */
}

.page-popular-sports-leagues__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  cursor: pointer;
  color: #000000;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}

.page-popular-sports-leagues__faq-question::-webkit-details-marker {
  display: none;
}

.page-popular-sports-leagues__faq-question::marker {
  display: none;
}

.page-popular-sports-leagues__faq-qtext {
  flex-grow: 1;
}

.page-popular-sports-leagues__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-popular-sports-leagues__faq-item[open] .page-popular-sports-leagues__faq-toggle {
  content: '−';
}

.page-popular-sports-leagues__faq-answer {
  padding: 15px 25px;
  font-size: 1em;
  color: #555555;
}

.page-popular-sports-leagues__faq-answer p {
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-popular-sports-leagues {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-popular-sports-leagues__hero-content {
    margin-top: -50px;
    padding: 25px 15px;
  }

  .page-popular-sports-leagues__main-title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .page-popular-sports-leagues__description {
    font-size: 1em;
  }

  .page-popular-sports-leagues__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

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

  .page-popular-sports-leagues__section-title {
    font-size: clamp(20px, 6vw, 32px);
  }

  .page-popular-sports-leagues__introduction-section,
  .page-popular-sports-leagues__why-choose-us-section,
  .page-popular-sports-leagues__leagues-showcase-section,
  .page-popular-sports-leagues__get-started-section,
  .page-popular-sports-leagues__promotions-section,
  .page-popular-sports-leagues__responsible-gaming-section,
  .page-popular-sports-leagues__support-section,
  .page-popular-sports-leagues__faq-section,
  .page-popular-sports-leagues__cta-bottom-section {
    padding: 40px 15px;
  }

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

  .page-popular-sports-leagues__section,
  .page-popular-sports-leagues__card,
  .page-popular-sports-leagues__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-popular-sports-leagues__hero-section {
    padding-top: 10px !important;
  }

  /* Video responsive on mobile (if any) */
  .page-popular-sports-leagues video,
  .page-popular-sports-leagues__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-popular-sports-leagues__video-section,
  .page-popular-sports-leagues__video-container,
  .page-popular-sports-leagues__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-popular-sports-leagues__video-section {
    padding-top: 10px !important;
  }
}