.page-sports {
  color: #333333;
}

.page-sports__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  padding-bottom: 60px;
  background-color: #003366;
  color: #ffffff;
  overflow: hidden;
}

.page-sports__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-sports__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-sports__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  margin: 0 auto;
}

.page-sports__hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for emphasis */
  line-height: 1.2;
}

.page-sports__hero-description {
  font-size: 1.3rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.page-sports__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-sports__btn--primary {
  background-color: #FFCC00; /* Gold */
  color: #003366; /* Dark blue */
  border: 2px solid #FFCC00;
}

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

.page-sports__btn--secondary {
  background-color: transparent;
  color: #FFCC00; /* Gold */
  border: 2px solid #FFCC00;
}

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

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

.page-sports__section-title {
  font-size: 2.8rem;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-sports__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

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

.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;
}

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

.page-sports__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

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

.page-sports__feature-title {
  font-size: 1.6rem;
  color: #003366;
  margin-bottom: 15px;
}

.page-sports__feature-description {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
}

.page-sports__popular-sports-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-sports__sport-card {
  background-color: #f0f8ff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-sports__sport-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-sports__sport-title {
  font-size: 1.8rem;
  color: #003366;
  margin: 20px 0 10px;
}

.page-sports__sport-description {
  font-size: 1rem;
  color: #666666;
  padding: 0 20px 20px;
  line-height: 1.6;
}

.page-sports__btn--small {
  padding: 10px 20px;
  font-size: 0.95rem;
  margin-bottom: 20px;
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #003366;
}

.page-sports__btn--small:hover {
  background-color: #002244;
  border-color: #002244;
}

.page-sports__betting-guide-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.page-sports__guide-article {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 40px;
  line-height: 1.7;
}

.page-sports__guide-subtitle {
  font-size: 2.2rem;
  color: #003366;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFCC00;
  padding-left: 15px;
}

.page-sports__guide-article p {
  font-size: 1.05rem;
  color: #444444;
  margin-bottom: 20px;
}

.page-sports__guide-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-sports__guide-list,
.page-sports__guide-ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #444444;
}

.page-sports__guide-ordered-list {
  list-style-type: decimal;
}

.page-sports__guide-list li,
.page-sports__guide-ordered-list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-sports__guide-list strong,
.page-sports__guide-ordered-list strong {
  color: #003366;
}

.page-sports__cta-section {
  background: linear-gradient(135deg, #003366, #002244);
  padding: 80px 0;
  text-align: center;
}

.page-sports__cta-content {
  max-width: 900px;
}

.page-sports__cta-title {
  font-size: 3rem;
  color: #FFCC00;
  margin-bottom: 25px;
}

.page-sports__cta-description {
  font-size: 1.3rem;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 3rem;
  }
  .page-sports__section-title {
    font-size: 2.5rem;
  }
  .page-sports__cta-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    padding-bottom: 40px;
  }
  .page-sports__hero-title {
    font-size: 2.2rem;
  }
  .page-sports__hero-description {
    font-size: 1.1rem;
  }
  .page-sports__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-sports__section-title {
    font-size: 2rem;
  }
  .page-sports__section-intro {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  .page-sports__features-grid,
  .page-sports__sports-grid {
    grid-template-columns: 1fr;
  }
  .page-sports__feature-icon,
  .page-sports__sport-image,
  .page-sports__guide-image {
    max-width: 100%;
    height: auto;
    max-height: 300px; /* Constrain height for mobile */
    object-fit: cover;
  }
  .page-sports__feature-title {
    font-size: 1.4rem;
  }
  .page-sports__sport-title {
    font-size: 1.6rem;
  }
  .page-sports__guide-subtitle {
    font-size: 1.8rem;
  }
  .page-sports__cta-title {
    font-size: 2rem;
  }
  .page-sports__cta-description {
    font-size: 1.1rem;
  }
  .page-sports__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  /* Ensure all images within .page-sports are responsive and don't cause overflow */
  .page-sports img {
    max-width: 100%;
    height: auto;
  }
  .page-sports {
    overflow-x: hidden;
  }
}