.page-sports {
  font-family: Arial, sans-serif;
  color: #000000; /* Dark text for light background */
  background-color: #FFFFFF;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-sports__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF; /* Light text on dark background */
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.page-sports__button {
  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;
}

.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: #e6a73c;
  color: #000000;
}

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

.page-sports__why-choose-section,
.page-sports__popular-sports-section,
.page-sports__getting-started-section,
.page-sports__strategies-section,
.page-sports__features-overview-section,
.page-sports__responsible-gambling-section,
.page-sports__conclusion-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-sports__feature-grid,
.page-sports__sport-cards-grid,
.page-sports__steps-grid,
.page-sports__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

.page-sports__feature-card:hover,
.page-sports__sport-card:hover,
.page-sports__step-card:hover,
.page-sports__tip-card:hover {
  transform: translateY(-5px);
}

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

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

.page-sports__feature-text,
.page-sports__sport-text,
.page-sports__step-text,
.page-sports__tip-text {
  font-size: 1em;
  line-height: 1.6;
  color: #333333;
}

.page-sports__feature-text a,
.page-sports__step-text a,
.page-sports__list-text a,
.page-sports__responsible-text a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-sports__feature-text a:hover,
.page-sports__step-text a:hover,
.page-sports__list-text a:hover,
.page-sports__responsible-text a:hover {
  text-decoration: underline;
}

.page-sports__list-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

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

.page-sports__list-text {
  font-size: 1em;
  line-height: 1.6;
  color: #333333;
}

.page-sports__responsible-text,
.page-sports__conclusion-text {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 20px;
  color: #333333;
}

.page-sports__button--join-now {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 30px;
}

.page-sports__button--join-now:hover {
  background-color: #e6a73c;
  color: #000000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-sports__hero-section {
    padding: 40px 15px;
  }

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

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

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

  .page-sports__button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-sports__section-title {
    font-size: 2em;
    margin: 40px 0 30px;
  }

  .page-sports__why-choose-section,
  .page-sports__popular-sports-section,
  .page-sports__getting-started-section,
  .page-sports__strategies-section,
  .page-sports__features-overview-section,
  .page-sports__responsible-gambling-section,
  .page-sports__conclusion-section {
    padding: 20px 15px;
  }

  .page-sports__feature-grid,
  .page-sports__sport-cards-grid,
  .page-sports__steps-grid,
  .page-sports__tips-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile content image constraint */
  .page-sports img {
    max-width: 100%;
    height: auto;
  }

  .page-sports__feature-image,
  .page-sports__sport-image {
    width: 100%;
    height: auto;
  }
}