.page-sports {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

.page-sports__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-sports__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

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

.page-sports__hero-description {
  font-size: 1.3em;
  color: #333333;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.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, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.page-sports__button--secondary {
  background-color: #f0f0f0;
  color: #000000;
  box-shadow: none;
  border: 1px solid #ccc;
}

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

.page-sports__button--bet-now, .page-sports__button--claim-bonus, .page-sports__button--explore-live, .page-sports__button--step {
  background-color: #FCBC45;
  color: #000000;
  box-shadow: 0 4px 10px rgba(252, 188, 69, 0.4);
}

.page-sports__button--bet-now:hover, .page-sports__button--claim-bonus:hover, .page-sports__button--explore-live:hover, .page-sports__button--step:hover {
  background-color: #e0a83e;
  transform: translateY(-2px);
}

.page-sports__hero-image-wrapper {
  width: 100%;
  max-width: 1400px;
  margin-top: 40px;
}

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

.page-sports__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin: 60px 0 20px;
  padding-bottom: 10px;
  position: relative;
}

.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__section-intro {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.page-sports__why-us-section, .page-sports__categories-section, .page-sports__live-betting-section, .page-sports__bonuses-section, .page-sports__how-to-start-section, .page-sports__responsible-gaming-section, .page-sports__testimonials-section, .page-sports__faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #FFFFFF;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.page-sports__feature-card, .page-sports__category-card, .page-sports__bonus-card, .page-sports__step-card, .page-sports__testimonial-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-sports__feature-card:hover, .page-sports__category-card:hover, .page-sports__bonus-card:hover, .page-sports__step-card:hover, .page-sports__testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-sports__feature-icon, .page-sports__category-image, .page-sports__bonus-image {
  width: 100%; /* Ensure images fill card width */
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-sports__feature-description, .page-sports__category-description, .page-sports__bonus-description, .page-sports__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-sports__live-betting-section {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-sports__live-betting-content {
  flex: 1;
}

.page-sports__live-betting-image-wrapper {
  flex: 1;
}

.page-sports__live-betting-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-sports__responsible-gaming-section {
  text-align: center;
}

.page-sports__testimonial-card {
  text-align: left;
  font-style: italic;
  background-color: #f0f0f0;
}

.page-sports__testimonial-text {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 15px;
}

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

.page-sports__faq-list {
  margin-top: 30px;
}

.page-sports__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 25px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.page-sports__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 10px;
}

.page-sports__faq-answer {
  font-size: 1em;
  color: #555555;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-sports__hero-title {
    font-size: 2.5em;
  }

  .page-sports__section-title {
    font-size: 2em;
  }

  .page-sports__live-betting-section {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-sports {
    padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
  }

  .page-sports__hero-section {
    padding: 60px 15px 30px;
  }

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

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

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

  .page-sports__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-sports__section-title {
    font-size: 1.8em;
    margin-top: 40px;
  }

  .page-sports__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-sports__why-us-section, .page-sports__categories-section, .page-sports__live-betting-section, .page-sports__bonuses-section, .page-sports__how-to-start-section, .page-sports__responsible-gaming-section, .page-sports__testimonials-section, .page-sports__faq-section {
    padding: 40px 15px;
    margin-bottom: 25px;
  }

  .page-sports__features-grid, .page-sports__categories-grid, .page-sports__bonus-grid, .page-sports__steps-grid, .page-sports__testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-sports__feature-title, .page-sports__category-title, .page-sports__bonus-title, .page-sports__step-title {
    font-size: 1.3em;
  }

  .page-sports__feature-description, .page-sports__category-description, .page-sports__bonus-description, .page-sports__step-description {
    font-size: 0.9em;
  }

  .page-sports__faq-question {
    font-size: 1.1em;
  }

  /* Ensure images do not overflow on mobile */
  .page-sports img {
    max-width: 100%;
    height: auto;
  }
  .page-sports__hero-image,
  .page-sports__feature-icon,
  .page-sports__category-image,
  .page-sports__live-betting-image,
  .page-sports__bonus-image {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-sports__hero-title {
    font-size: 1.8em;
  }

  .page-sports__button {
    width: 100%;
  }

  .page-sports__section-title {
    font-size: 1.5em;
  }
}