.page-sports {
  color: #333333; /* Default text color for light body background */
}

.page-sports__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #1E90FF; /* Auxiliary blue for hero background */
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.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-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
}

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

.page-sports__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.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.3s ease;
  white-space: nowrap;
}

.page-sports__button--primary {
  background-color: #FFD700; /* Gold primary button */
  color: #1E90FF; /* Blue text on gold */
  border: 2px solid #FFD700;
}

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

.page-sports__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on transparent */
  border: 2px solid #FFD700;
}

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

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

.page-sports__section-title {
  font-size: 2.5em;
  color: #1E90FF; /* Blue for section titles */
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.page-sports__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  margin: 10px auto 0;
  border-radius: 2px;
}

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

.page-sports__features-grid,
.page-sports__sports-grid,
.page-sports__promotions-grid,
.page-sports__steps-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 {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-sports__feature-icon,
.page-sports__sport-image,
.page-sports__promo-image,
.page-sports__app-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too wide */
  min-width: 200px; /* Enforce minimum width */
  min-height: 200px; /* Enforce minimum height */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__card-title {
  font-size: 1.5em;
  color: #1E90FF; /* Blue for card titles */
  margin-bottom: 15px;
}

.page-sports__card-description {
  font-size: 1em;
  line-height: 1.5;
  color: #666666;
  margin-bottom: 20px;
}

.page-sports__live-betting-section {
  background-color: #f8f8f8;
  padding: 80px 0;
  text-align: center;
}

.page-sports__live-betting-image {
  max-width: 800px;
  min-width: 200px; /* Enforce minimum width */
  min-height: 200px; /* Enforce minimum height */
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 40px auto;
  display: block;
}

.page-sports__live-betting-cta {
  margin-top: 30px;
}

.page-sports__promotions-section {
  padding: 80px 0;
}

.page-sports__all-promos-cta {
  margin-top: 50px;
  text-align: center;
}

.page-sports__get-started-section {
  background-color: #1E90FF;
  color: #ffffff;
  padding: 80px 0;
}

.page-sports__get-started-section .page-sports__section-title {
  color: #FFD700; /* Gold for title on blue background */
}

.page-sports__get-started-section .page-sports__section-title::after {
  background-color: #FFD700;
}

.page-sports__get-started-section .page-sports__section-intro {
  color: #f0f0f0;
}

.page-sports__step-card {
  background-color: #ffffff;
  color: #333333;
  position: relative;
  padding-top: 60px; /* Space for step number */
}

.page-sports__step-number {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700; /* Gold number background */
  color: #1E90FF; /* Blue number text */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-sports__responsible-gaming-section {
  padding: 80px 0;
  text-align: center;
}

.page-sports__faq-section {
  background-color: #f8f8f8;
  padding: 80px 0;
}

.page-sports__faq-accordion {
  max-width: 900px;
  margin: 50px auto 0;
}

.page-sports__accordion-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.page-sports__accordion-header {
  width: 100%;
  padding: 20px 25px;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  color: #1E90FF; /* Blue for FAQ header */
  background-color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-sports__accordion-header:hover {
  background-color: #eef7ff;
}

.page-sports__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700; /* Gold plus sign */
  transition: transform 0.3s ease;
}

.page-sports__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-sports__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background-color: #fdfdfd;
  color: #666666;
}

.page-sports__accordion-content p {
  padding-bottom: 20px;
  line-height: 1.6;
}

.page-sports__accordion-content a {
  color: #1E90FF;
  text-decoration: underline;
}

.page-sports__faq-cta {
  margin-top: 40px;
  text-align: center;
}

.page-sports__app-download-section {
  padding: 80px 0;
  text-align: center;
  background-color: #1E90FF;
  color: #ffffff;
}

.page-sports__app-download-section .page-sports__section-title {
  color: #FFD700;
}

.page-sports__app-download-section .page-sports__section-title::after {
  background-color: #FFD700;
}

.page-sports__app-download-section .page-sports__section-intro {
  color: #f0f0f0;
}

.page-sports__app-download-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.page-sports__app-details {
  text-align: left;
  max-width: 500px;
}

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

.page-sports__app-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-sports__app-features li::before {
  content: '✓';
  color: #FFD700; /* Gold checkmark */
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-sports__hero-title {
    font-size: 2.8em;
  }
  .page-sports__section-title {
    font-size: 2em;
  }
  .page-sports__app-download-content {
    flex-direction: column;
  }
  .page-sports__app-details {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-title {
    font-size: 2.2em;
  }
  .page-sports__hero-description {
    font-size: 1em;
  }
  .page-sports__hero-cta {
    flex-direction: column;
  }
  .page-sports__button {
    width: 100%;
    max-width: 300px;
  }
  .page-sports__section-title {
    font-size: 1.8em;
  }
  .page-sports__section-intro {
    font-size: 0.95em;
  }
  .page-sports__feature-card,
  .page-sports__sport-card,
  .page-sports__promo-card,
  .page-sports__step-card {
    padding: 25px 20px;
  }
  /* Mobile content image constraint */
  .page-sports img {
    max-width: 100%;
    height: auto;
  }
  .page-sports__feature-icon,
  .page-sports__sport-image,
  .page-sports__promo-image,
  .page-sports__app-image,
  .page-sports__live-betting-image {
    min-width: 200px;
    min-height: 200px;
    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__container {
    padding: 20px 15px;
  }
  .page-sports__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-sports__app-features {
    text-align: center;
  }
  .page-sports__app-features li {
    padding-left: 0;
  }
  .page-sports__app-features li::before {
    position: static;
    display: inline-block;
    margin-right: 5px;
  }
}