.page-sports {
  color: #333333; /* Dark text for light body background */
}

.page-sports__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for hero section */
}

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

.page-sports__hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay */
  padding: 40px;
  border-radius: 10px;
  max-width: 900px;
  color: #FFFFFF; /* White text on dark overlay */
}

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

.page-sports__hero-description {
  font-size: 1.3rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-sports__hero-actions {
  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.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-sports__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-sports__button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-sports__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-sports__button--login:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-sports__button--primary {
  background-color: #FCBC45;
  color: #000000;
}

.page-sports__button--primary:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-sports__button--secondary {
  background-color: #000000;
  color: #FFFFFF;
}

.page-sports__button--secondary:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-sports__button--link {
  background: none;
  border: 2px solid #FCBC45;
  color: #FCBC45;
  padding: 10px 20px;
  font-size: 1rem;
}

.page-sports__button--link:hover {
  background-color: #FCBC45;
  color: #000000;
}

.page-sports__content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-sports__section-title {
  font-size: 2.8rem;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-sports__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-sports__paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-sports__about-section, .page-sports__how-to-start-section, .page-sports__testimonials-section, .page-sports__cta-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-sports__featured-sports-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-sports__sport-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-sports__sport-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-sports__sport-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
}

.page-sports__sport-card-title {
  font-size: 1.8rem;
  color: #000000;
  margin: 25px 15px 15px;
}

.page-sports__sport-card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
  padding: 0 20px 25px;
  flex-grow: 1;
}

.page-sports__sport-card .page-sports__button--secondary {
  margin: 0 20px 25px;
  width: calc(100% - 40px);
}

.page-sports__live-betting-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: #FFFFFF;
}

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

.page-sports__live-betting-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-sports__live-betting-text {
  flex: 1;
  max-width: 50%;
}

.page-sports__live-betting-text .page-sports__paragraph {
  color: #f0f0f0;
}

.page-sports__live-betting-text .page-sports__button--primary {
  margin-top: 20px;
}

.page-sports__why-choose-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-sports__feature-item {
  text-align: center;
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-sports__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-sports__feature-title {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 10px;
}

.page-sports__feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

.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: #000000;
  color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-sports__step-number {
  font-size: 3.5rem;
  font-weight: bold;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-sports__step-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.page-sports__step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.page-sports__testimonial-card {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
}

.page-sports__testimonial-quote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 20px;
}

.page-sports__testimonial-author {
  font-weight: bold;
  color: #000000;
  font-size: 1rem;
}

.page-sports__cta-section {
  text-align: center;
  background: #000000;
  color: #FFFFFF;
  padding: 80px 0;
}

.page-sports__cta-section .page-sports__section-title {
  color: #FFFFFF;
}

.page-sports__cta-section .page-sports__section-title::after {
  background-color: #FCBC45;
}

.page-sports__cta-section .page-sports__paragraph {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-sports__cta-section .page-sports__hero-actions {
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 3rem;
  }
  .page-sports__hero-description {
    font-size: 1.2rem;
  }
  .page-sports__section-title {
    font-size: 2.5rem;
  }
  .page-sports__live-betting-content {
    flex-direction: column;
  }
  .page-sports__live-betting-image,
  .page-sports__live-betting-text {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    min-height: 500px;
    padding: 40px 15px;
  }
  .page-sports__hero-overlay {
    padding: 30px;
  }
  .page-sports__hero-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  .page-sports__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .page-sports__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__button {
    width: 100%;
    max-width: 300px;
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-sports__button--link {
    max-width: none;
  }
  .page-sports__content-container {
    padding: 30px 15px;
  }
  .page-sports__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .page-sports__paragraph {
    font-size: 0.95rem;
  }
  .page-sports__sports-grid, .page-sports__feature-list, .page-sports__steps-grid, .page-sports__testimonial-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-sports__sport-card-image, .page-sports__feature-icon, .page-sports__live-betting-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive */
    width: 100%; /* Ensure images fill their container */
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px; /* Ensure images are not too small */
    object-fit: cover;
  }
  .page-sports__sport-card-image, .page-sports__feature-icon, .page-sports__live-betting-image, .page-sports__why-choose-section img, .page-sports__how-to-start-section img, .page-sports__testimonials-section img, .page-sports__cta-section img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

/* Ensure all images within .page-sports are at least 200x200px */
.page-sports img {
  min-width: 200px;
  min-height: 200px;
}

/* No filter property to change image colors */
.page-sports img {
  filter: none; /* Explicitly remove any potential filter */
}