.page-sports {
  color: #333333; /* Default text color for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-sports__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header for desktop */
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-sports__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  max-width: 90%;
}

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

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

.page-sports__hero-button,
.page-sports__step-button,
.page-sports__live-betting-button,
.page-sports__mobile-app-button,
.page-sports__cta-button {
  display: inline-block;
  background-color: #CC0000; /* Main brand color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-sports__hero-button:hover,
.page-sports__step-button:hover,
.page-sports__live-betting-button:hover,
.page-sports__mobile-app-button:hover,
.page-sports__cta-button:hover {
  background-color: #FFD700; /* Auxiliary color on hover */
  color: #CC0000;
}

.page-sports__section-title {
  font-size: 2.5em;
  color: #CC0000; /* Main brand color */
  text-align: center;
  margin-bottom: 20px;
  margin-top: 40px;
}

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

.page-sports__about-section,
.page-sports__getting-started-section,
.page-sports__promotions-section,
.page-sports__live-betting-section,
.page-sports__responsible-gaming-section,
.page-sports__tips-section,
.page-sports__mobile-app-section,
.page-sports__support-section,
.page-sports__detail-pages-section,
.page-sports__cta-section {
  padding: 60px 0;
}

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

.page-sports__feature-card,
.page-sports__step-card,
.page-sports__promo-card,
.page-sports__tip-card,
.page-sports__detail-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  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__step-card:hover,
.page-sports__promo-card:hover,
.page-sports__tip-card:hover,
.page-sports__detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

.page-sports__detail-title a {
  color: #CC0000;
  text-decoration: none;
}

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

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

.page-sports__promo-button,
.page-sports__detail-button,
.page-sports__responsible-gaming-button,
.page-sports__support-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color */
  color: #CC0000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.95em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: auto; /* Push button to bottom */
}

.page-sports__promo-button:hover,
.page-sports__detail-button:hover,
.page-sports__responsible-gaming-button:hover,
.page-sports__support-button:hover {
  background-color: #CC0000;
  color: #ffffff;
}

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

.page-sports__live-betting-text,
.page-sports__mobile-app-text {
  flex: 1;
  min-width: 300px;
}

.page-sports__live-betting-image-wrapper,
.page-sports__mobile-app-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-sports__live-betting-image,
.page-sports__mobile-app-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-sports__live-betting-subtitle,
.page-sports__mobile-app-subtitle,
.page-sports__responsible-gaming-subtitle,
.page-sports__support-subtitle {
  font-size: 1.8em;
  color: #CC0000;
  margin-bottom: 15px;
}

.page-sports__live-betting-paragraph,
.page-sports__mobile-app-paragraph,
.page-sports__responsible-gaming-paragraph,
.page-sports__support-paragraph {
  font-size: 1.1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-sports__responsible-gaming-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 30px;
  color: #666666;
}

.page-sports__responsible-gaming-list-item {
  margin-bottom: 10px;
}

.page-sports__cta-section {
  background-color: #CC0000;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-sports__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-sports__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 2.8em;
  }
  .page-sports__hero-description {
    font-size: 1.1em;
  }
  .page-sports__section-title {
    font-size: 2em;
  }
  .page-sports__live-betting-content,
  .page-sports__mobile-app-content {
    flex-direction: column;
    text-align: center;
  }
  .page-sports__live-betting-image-wrapper,
  .page-sports__mobile-app-image-wrapper {
    order: -1; /* Image above text on mobile */
  }
  .page-sports__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-sports {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }
  .page-sports__hero-title {
    font-size: 2.2em;
  }
  .page-sports__hero-description {
    font-size: 1em;
  }
  .page-sports__hero-button,
  .page-sports__step-button,
  .page-sports__live-betting-button,
  .page-sports__mobile-app-button,
  .page-sports__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-sports__section-title {
    font-size: 1.8em;
  }
  .page-sports__section-intro {
    font-size: 0.95em;
  }
  .page-sports__feature-grid,
  .page-sports__steps-grid,
  .page-sports__promo-cards,
  .page-sports__tips-grid,
  .page-sports__detail-cards {
    grid-template-columns: 1fr;
  }
  .page-sports__feature-card,
  .page-sports__step-card,
  .page-sports__promo-card,
  .page-sports__tip-card,
  .page-sports__detail-card {
    padding: 20px;
  }
  .page-sports__feature-title,
  .page-sports__step-title,
  .page-sports__promo-title,
  .page-sports__tip-title,
  .page-sports__detail-title {
    font-size: 1.3em;
  }
  .page-sports__live-betting-subtitle,
  .page-sports__mobile-app-subtitle,
  .page-sports__responsible-gaming-subtitle,
  .page-sports__support-subtitle {
    font-size: 1.5em;
  }
  .page-sports__cta-title {
    font-size: 2em;
  }
  .page-sports__cta-description {
    font-size: 1em;
  }

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

@media (max-width: 480px) {
  .page-sports__hero-title {
    font-size: 1.8em;
  }
  .page-sports__hero-description {
    font-size: 0.9em;
  }
  .page-sports__hero-button,
  .page-sports__step-button,
  .page-sports__live-betting-button,
  .page-sports__mobile-app-button,
  .page-sports__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-sports__section-title {
    font-size: 1.6em;
  }
  .page-sports__cta-title {
    font-size: 1.8em;
  }
}