.page-sports {
  color: #ffffff; /* Text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Clearance for fixed header */
}

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

.page-sports__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background-color: #1A1A1A;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.page-sports__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.page-sports__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-sports__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

.page-sports__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-sports__hero-button--primary {
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-sports__hero-button--primary:hover {
  background-color: #e6c200;
}

.page-sports__hero-button--secondary {
  background-color: #1A1A1A;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-sports__hero-button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-sports__why-choose-section,
.page-sports__categories-section,
.page-sports__live-betting-section,
.page-sports__promotions-section,
.page-sports__responsible-gaming-section,
.page-sports__how-to-start-section,
.page-sports__support-section {
  padding: 80px 0;
  background-color: #1A1A1A;
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-sports__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-sports__section-intro {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.page-sports__feature-grid,
.page-sports__category-grid,
.page-sports__promo-grid,
.page-sports__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-sports__feature-card,
.page-sports__category-card,
.page-sports__promo-card,
.page-sports__step-card,
.page-sports__support-card {
  background-color: #333;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__feature-card:hover,
.page-sports__category-card:hover,
.page-sports__promo-card:hover,
.page-sports__step-card:hover,
.page-sports__support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-sports__feature-icon,
.page-sports__category-image,
.page-sports__promo-image {
  width: 100%;
  height: 200px; /* Minimum height for content images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-sports__feature-title,
.page-sports__category-title,
.page-sports__promo-title,
.page-sports__step-number,
.page-sports__support-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-sports__step-number {
  font-size: 2.2em;
  font-weight: bold;
}

.page-sports__feature-description,
.page-sports__category-description,
.page-sports__promo-description,
.page-sports__step-description,
.page-sports__support-description {
  font-size: 1em;
  color: #cccccc;
}

.page-sports__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.page-sports__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-sports__image--left,
.page-sports__image--right {
  flex: 1;
  max-width: 600px; /* Ensuring image display size is not too small */
  height: 400px; /* Minimum height */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-sports__text-content {
  flex: 1;
  color: #f0f0f0;
}

.page-sports__text-content p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-sports__button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FFD700;
  color: #1A1A1A;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-sports__button:hover {
  background-color: #e6c200;
}

.page-sports__cta-center {
  text-align: center;
  margin-top: 50px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 2.8em;
  }
  .page-sports__section-title {
    font-size: 2.2em;
  }
  .page-sports__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-sports__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-sports__image--left,
  .page-sports__image--right {
    max-width: 100%;
    height: auto; /* Allow height to adjust */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    padding: 60px 0;
  }
  .page-sports__hero-title {
    font-size: 2.2em;
  }
  .page-sports__hero-description {
    font-size: 1em;
  }
  .page-sports__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__hero-button {
    width: 80%;
    margin: 0 auto;
  }
  .page-sports__why-choose-section,
  .page-sports__categories-section,
  .page-sports__live-betting-section,
  .page-sports__promotions-section,
  .page-sports__responsible-gaming-section,
  .page-sports__how-to-start-section,
  .page-sports__support-section {
    padding: 60px 0;
  }
  .page-sports__section-title {
    font-size: 1.8em;
  }
  .page-sports__section-intro {
    font-size: 0.95em;
  }
  .page-sports__feature-icon,
  .page-sports__category-image,
  .page-sports__promo-image {
    height: 200px; /* Maintain minimum height */
  }
  .page-sports__feature-card,
  .page-sports__category-card,
  .page-sports__promo-card,
  .page-sports__step-card,
  .page-sports__support-card {
    padding: 20px;
  }
  .page-sports__feature-title,
  .page-sports__category-title,
  .page-sports__promo-title,
  .page-sports__step-number,
  .page-sports__support-title {
    font-size: 1.5em;
  }
  .page-sports__text-content p {
    font-size: 1em;
  }
  /* Ensure content images do not overflow */
  .page-sports img {
    max-width: 100%;
    height: auto;
  }
}

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