.page-sports {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

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

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

.page-sports__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

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

.page-sports__text-contrast-fix {
  color: #ffffff;
}

.page-sports__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  background-color: #017439;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-sports__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.page-sports__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-sports__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-sports__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 30px;
  color: inherit;
}

.page-sports__section--intro .page-sports__section-title,
.page-sports__section--live-betting .page-sports__section-title,
.page-sports__section--guide .page-sports__section-title,
.page-sports__section--tips .page-sports__section-title,
.page-sports__section--faq .page-sports__section-title {
  color: #017439;
}

.page-sports__sub-title {
  font-size: 2em;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
  color: inherit;
}

.page-sports__section--intro .page-sports__sub-title,
.page-sports__section--live-betting .page-sports__sub-title,
.page-sports__section--guide .page-sports__sub-title,
.page-sports__section--tips .page-sports__sub-title,
.page-sports__section--faq .page-sports__sub-title {
  color: #017439;
}

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

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

.page-sports__feature-item {
  display: flex;
  align-items: flex-start;
  background-color: #f8f8f8;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-sports__feature-item:hover {
  transform: translateY(-5px);
}

.page-sports__feature-icon {
  font-size: 2.5em;
  color: #017439;
  margin-right: 15px;
  line-height: 1;
}