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

.page-sports__hero-section {
  background-color: #0A2463; /* Main brand color for hero background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-sports__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-sports__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.page-sports__button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 180px; /* Ensure button minimum size */
  text-align: center;
}

.page-sports__button--primary {
  background-color: #FFD700; /* Accent color */
  color: #0A2463; /* Main color for text */
  border: 2px solid #FFD700;
}

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

.page-sports__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-sports__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-sports__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  min-width: 120px;
}

.page-sports__features-section, .page-sports__covered-sports-section, 
.page-sports__promotions-section, .page-sports__get-started-section, 
.page-sports__detail-pages-section, .page-sports__responsible-gambling-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.page-sports__live-betting-section, .page-sports__mobile-app-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-sports__live-betting-section {
  flex-direction: row;
}

.page-sports__mobile-app-section {
  flex-direction: row-reverse;
}

.page-sports__features-title, .page-sports__covered-sports-title, 
.page-sports__live-betting-title, .page-sports__promotions-title, 
.page-sports__get-started-title, .page-sports__detail-pages-title, 
.page-sports__mobile-app-title, .page-sports__responsible-gambling-title {
  font-size: 2.5em;
  color: #0A2463;
  margin-bottom: 40px;
}

.page-sports__covered-sports-description, .page-sports__promotions-description, 
.page-sports__responsible-gambling-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__features-grid, .page-sports__sports-grid, 
.page-sports__promotions-grid, .page-sports__steps-grid, 
.page-sports__detail-pages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-sports__feature-card, .page-sports__sport-card, 
.page-sports__promo-card, .page-sports__step-card, 
.page-sports__detail-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 400px; /* Ensure cards are not too small */
}

.page-sports__feature-card:hover, .page-sports__sport-card:hover, 
.page-sports__promo-card:hover, .page-sports__step-card:hover, 
.page-sports__detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-sports__feature-icon, .page-sports__sport-image, 
.page-sports__promo-image, .page-sports__mobile-app-image, 
.page-sports__live-betting-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block; /* Ensure no extra space below image */
  object-fit: cover;
}

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

.page-sports__feature-heading, .page-sports__sport-name, 
.page-sports__promo-heading, .page-sports__step-heading, 
.page-sports__detail-heading {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-sports__detail-heading a {
  color: #0A2463;
  text-decoration: none;
}

.page-sports__detail-heading a:hover {
  text-decoration: underline;
}

.page-sports__feature-description, .page-sports__sport-text, 
.page-sports__promo-text, .page-sports__step-description, 
.page-sports__detail-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-sports__step-card {
  position: relative;
  padding-top: 50px;
}

.page-sports__step-number {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #0A2463;
  font-size: 2em;
  font-weight: bold;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #0A2463;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-sports__live-betting-content, .page-sports__mobile-app-content {
  flex: 1;
  padding-right: 20px;
}

.page-sports__live-betting-image-wrapper, .page-sports__mobile-app-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-sports__all-promos-action {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-sports__hero-title {
    font-size: 2.5em;
  }
  .page-sports__features-title, .page-sports__covered-sports-title, 
  .page-sports__live-betting-title, .page-sports__promotions-title, 
  .page-sports__get-started-title, .page-sports__detail-pages-title, 
  .page-sports__mobile-app-title, .page-sports__responsible-gambling-title {
    font-size: 2em;
  }
  .page-sports__live-betting-section, .page-sports__mobile-app-section {
    flex-direction: column;
    text-align: center;
  }
  .page-sports__live-betting-content, .page-sports__mobile-app-content {
    padding-right: 0;
    padding-bottom: 30px;
  }
  .page-sports__hero-image-wrapper, .page-sports__live-betting-image-wrapper, .page-sports__mobile-app-image-wrapper {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-title {
    font-size: 2em;
  }
  .page-sports__hero-description {
    font-size: 1em;
  }
  .page-sports__button {
    padding: 12px 24px;
    font-size: 1em;
  }
  .page-sports__features-title, .page-sports__covered-sports-title, 
  .page-sports__live-betting-title, .page-sports__promotions-title, 
  .page-sports__get-started-title, .page-sports__detail-pages-title, 
  .page-sports__mobile-app-title, .page-sports__responsible-gambling-title {
    font-size: 1.8em;
  }
  .page-sports__features-grid, .page-sports__sports-grid, 
  .page-sports__promotions-grid, .page-sports__steps-grid, 
.page-sports__detail-pages-grid {
    grid-template-columns: 1fr;
  }
  .page-sports__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  /* Mobile content area image resizing */
  .page-sports img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-sports__hero-title {
    font-size: 1.8em;
  }
  .page-sports__hero-description {
    font-size: 0.9em;
  }
  .page-sports__button {
    min-width: unset;
    width: 100%;
  }
  .page-sports__features-title, .page-sports__covered-sports-title, 
  .page-sports__live-betting-title, .page-sports__promotions-title, 
  .page-sports__get-started-title, .page-sports__detail-pages-title, 
  .page-sports__mobile-app-title, .page-sports__responsible-gambling-title {
    font-size: 1.5em;
  }
  .page-sports__feature-heading, .page-sports__sport-name, 
  .page-sports__promo-heading, .page-sports__step-heading, 
  .page-sports__detail-heading {
    font-size: 1.3em;
  }
}