.page-sports {
  color: #333333; /* Dark text for default 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__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-sports__section-title {
  font-size: 2.5em;
  color: #007bff; /* Primary brand color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-sports__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__section-footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9em;
  color: #555555;
}

.page-sports__section-footer a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-sports__section-footer a:hover {
  text-decoration: underline;
}

.page-sports__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.page-sports__button--primary {
  background-color: #007bff; /* Primary brand color */
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-sports__button--primary:hover {
  background-color: #0056b3; /* Darker primary */
  transform: translateY(-2px);
}

.page-sports__button--secondary {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
  margin-left: 15px;
}

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

.page-sports__button--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-sports__button--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.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: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.page-sports__hero-content-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.page-sports__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffc107; /* Secondary brand color for emphasis */
  line-height: 1.2;
}

.page-sports__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 900px;
  line-height: 1.5;
}

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

/* Features Section */
.page-sports__features-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-sports__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-sports__feature-icon {
  width: 100%; /* Ensure images take full width of card, min 200px */
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-sports__feature-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-sports__feature-text {
  font-size: 1em;
  color: #555555;
}

/* Sports Categories Section */
.page-sports__sports-categories {
  padding: 80px 0;
}

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

.page-sports__category-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-sports__category-image {
  width: 100%;
  height: 250px; /* Fixed height for category images */
  object-fit: cover;
  display: block;
}

.page-sports__category-title {
  font-size: 1.5em;
  color: #007bff;
  padding: 15px 20px 5px;
}

.page-sports__category-text {
  font-size: 0.95em;
  color: #555555;
  padding: 0 20px 20px;
}

/* Live Betting Section */
.page-sports__live-betting-section {
  padding: 80px 0;
  background-color: #f0f8ff;
}

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

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

.page-sports__live-betting-subtitle {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 15px;
}

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

.page-sports__live-betting-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Promotions Section */
.page-sports__promotions-section {
  padding: 80px 0;
}

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

.page-sports__promo-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-sports__promo-image {
  width: 100%;
  height: 200px; /* Fixed height for promo images */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-sports__promo-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-sports__promo-text {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 25px;
}

/* Getting Started Section */
.page-sports__getting-started-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-sports__step-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-sports__step-title {
  font-size: 1.8em;
  color: #ffc107; /* Secondary brand color */
  margin-bottom: 15px;
}

.page-sports__step-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

/* Mobile App Section */
.page-sports__mobile-app-section {
  padding: 80px 0;
}

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

.page-sports__app-image-wrapper {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.page-sports__app-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-sports__app-text {
  flex: 2;
  min-width: 300px;
}

.page-sports__app-subtitle {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-sports__app-features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-sports__app-features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
}

.page-sports__list-icon {
  color: #28a745; /* Green for checkmark */
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

/* Responsible Gaming Section */
.page-sports__responsible-gaming-section {
  padding: 80px 0;
  background-color: #f0f8ff;
}

.page-sports__responsible-gaming-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto 0;
}

.page-sports__responsible-gaming-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #333333;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-sports__responsible-gaming-list li .page-sports__list-icon {
  font-size: 1.5em;
  color: #007bff;
  margin-right: 15px;
}

/* FAQ Section */
.page-sports__faq-section {
  padding: 80px 0;
}

.page-sports__faq-accordion {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-sports__faq-question {
  font-size: 1.3em;
  color: #007bff;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-sports__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #ffc107;
  transition: transform 0.3s ease;
}

.page-sports__faq-item.active .page-sports__faq-question::after {
  transform: rotate(45deg);
}

.page-sports__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-sports__faq-item.active .page-sports__faq-answer {
  max-height: 200px; /* Adjust based on content */
  padding: 15px 25px 20px;
}

.page-sports__faq-answer p {
  margin: 0;
  color: #555555;
}

.page-sports__faq-answer a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-sports__faq-answer a:hover {
  text-decoration: underline;
}

/* CTA Section */
.page-sports__cta-section {
  padding: 80px 0;
  background-color: #007bff; /* Primary brand color */
  color: #ffffff;
  text-align: center;
}

.page-sports__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffc107; /* Secondary brand color */
}

.page-sports__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

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

  .page-sports__button--secondary {
    margin-left: 0;
  }

  .page-sports__features-grid,
  .page-sports__category-grid,
  .page-sports__promotions-grid,
  .page-sports__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-sports__live-betting-content,
  .page-sports__app-content {
    flex-direction: column;
  }

  .page-sports__live-betting-image,
  .page-sports__app-image {
    max-width: 100%;
    height: auto;
  }

  .page-sports__feature-icon, .page-sports__promo-image, .page-sports__category-image {
    width: 100%;
    height: 200px; /* Ensure minimum size */
    max-width: 100%;
    object-fit: cover;
  }

  .page-sports__cta-title {
    font-size: 2.2em;
  }

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

  /* Ensure all content images are responsive and don't overflow */
  .page-sports img {
    max-width: 100%;
    height: auto;
  }
}

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

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

  .page-sports__button {
    width: 100%;
  }

  .page-sports__hero-actions {
    width: 80%;
  }
}