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

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background: #26A9E0;
  color: #ffffff;
  text-align: center;
}

.page-sports__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Max width for image wrapper */
  margin-bottom: 30px;
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-sports__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-sports__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-sports__intro-text {
  font-size: 1.15em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-sports__btn-primary,
.page-sports__btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons adapt to mobile */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

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

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

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

.page-sports__btn-secondary:hover {
  background: #f0f0f0;
  color: #1e87b0;
  border-color: #1e87b0;
}

/* General Section Styles */
.page-sports__section {
  padding: 60px 20px;
  text-align: center;
}

.page-sports__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-sports__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-sports__section-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

/* Background colors for sections */
.page-sports__dark-bg {
  background: #26A9E0;
  color: #ffffff;
}

.page-sports__dark-bg .page-sports__section-title,
.page-sports__dark-bg .page-sports__section-description,
.page-sports__dark-bg .page-sports__feature-title,
.page-sports__dark-bg .page-sports__feature-text,
.page-sports__dark-bg .page-sports__guide-title,
.page-sports__dark-bg .page-sports__guide-text,
.page-sports__dark-bg .page-sports__live-betting-features li p {
  color: #ffffff;
}

.page-sports__dark-bg .page-sports__btn-text-link {
  color: #ffffff;
}

.page-sports__dark-bg .page-sports__btn-text-link:hover {
  color: #EA7C07;
}

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

.page-sports__light-bg .page-sports__section-title,
.page-sports__light-bg .page-sports__section-description,
.page-sports__light-bg .page-sports__feature-title,
.page-sports__light-bg .page-sports__feature-text {
  color: #333333;
}

.page-sports__medium-bg {
  background: #F5F7FA; /* A very light grey to provide slight contrast */
  color: #333333;
}

.page-sports__medium-bg .page-sports__section-title,
.page-sports__medium-bg .page-sports__section-description,
.page-sports__medium-bg .page-sports__sport-title,
.page-sports__medium-bg .page-sports__sport-text {
  color: #333333;
}

/* Why Choose Us Section */
.page-sports__why-choose-us .page-sports__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-sports__feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
}

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

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

/* Popular Sports Section */
.page-sports__sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-sports__sport-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
  border: 1px solid #e0e0e0;
}

.page-sports__sport-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  margin-bottom: 15px;
  min-width: 200px; /* Min image size requirement */
  min-height: 200px;
}

.page-sports__sport-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-sports__sport-text {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 15px;
}

.page-sports__btn-text-link {
  color: #EA7C07;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-sports__btn-text-link:hover {
  text-decoration: underline;
  color: #d46f06;
}

/* Live Betting Section */
.page-sports__live-betting-content {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-top: 40px;
}

.page-sports__live-betting-image {
  width: 55%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

.page-sports__live-betting-features {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 45%;
}

.page-sports__live-betting-features li {
  margin-bottom: 25px;
}

.page-sports__live-betting-features li:last-child {
  margin-bottom: 0;
}

.page-sports__live-betting-features li .page-sports__feature-title {
  color: #ffffff;
  font-size: 1.4em;
  margin-bottom: 8px;
}

.page-sports__live-betting-features li p {
  color: #f0f0f0;
  font-size: 1em;
}

.page-sports__cta-buttons--center {
  margin-top: 40px;
}

/* Promotions Section */
.page-sports__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-sports__promotion-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
  border: 1px solid #e0e0e0;
}

.page-sports__promotion-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-sports__promotion-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-sports__promotion-text {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 15px;
}

/* Betting Guides Section */
.page-sports__guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-sports__guide-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
  border: 1px solid #e0e0e0;
}

.page-sports__guide-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-sports__guide-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 15px;
}

/* FAQ Section */
.page-sports__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-sports__faq-item {
  background: #f9f9f9;
  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: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background: #eaf6fc;
  list-style: none; /* For details/summary */
}

.page-sports__faq-question::-webkit-details-marker {
  display: none;
}

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

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

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

.page-sports__faq-answer p {
  margin-bottom: 0;
}

.page-sports__faq-answer a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-sports__faq-answer a:hover {
  color: #EA7C07;
}

/* Final CTA Section */
.page-sports__cta-final {
  padding: 80px 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports__main-title {
    font-size: 2.8em;
  }
  .page-sports__section-title {
    font-size: 2em;
  }
  .page-sports__live-betting-content {
    flex-direction: column;
  }
  .page-sports__live-betting-image,
  .page-sports__live-betting-features {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-sports {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-sports__main-title {
    font-size: clamp(2em, 8vw, 2.5em);
    margin-bottom: 15px;
  }
  .page-sports__intro-text {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-sports__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  .page-sports__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-sports__hero-section,
  .page-sports__section,
  .page-sports__cta-final {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  /* Images responsive */
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .page-sports__hero-image-wrapper,
  .page-sports__sport-card,
  .page-sports__promotion-card,
  .page-sports__guide-item,
  .page-sports__feature-item,
  .page-sports__video-section,
  .page-sports__video-container,
  .page-sports__video-wrapper,
  .page-sports__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Buttons responsive */
  .page-sports__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .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,
  .page-sports__button-group,
  .page-sports__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0px;
    padding-right: 0px;
    overflow: hidden !important;
  }
  .page-sports__faq-item {
    margin-left: 15px;
    margin-right: 15px;
  }
  .page-sports__faq-question {
    padding: 15px 20px;
  }
  .page-sports__faq-answer {
    padding: 10px 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-sports__main-title {
    font-size: clamp(1.8em, 9vw, 2.2em);
  }
  .page-sports__section-title {
    font-size: 1.6em;
  }
  .page-sports__cta-buttons {
    gap: 10px;
  }
}

/* Content area images CSS size lower bound for .page-sports */
.page-sports__hero-image,
.page-sports__sport-image,
.page-sports__live-betting-image,
.page-sports__promotion-image,
.page-sports__guide-item img {
  min-width: 200px;
  min-height: 200px;
}

.page-sports__why-choose-us .page-sports__features-grid .page-sports__feature-item img,
.page-sports__sports-grid .page-sports__sport-card img,
.page-sports__live-betting-content .page-sports__live-betting-image,
.page-sports__promotion-grid .page-sports__promotion-card img,
.page-sports__betting-guides .page-sports__guide-grid .page-sports__guide-item img {
  /* Ensure content area images are not scaled down below 200px by CSS */
  /* These are already covered by the specific img selectors above. */
}