.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 is not hidden by fixed header */
}

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

.page-sports__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
  background-color: #0d0d0d; /* Dark background for hero section when image loads */
  color: #ffffff;
  padding: 80px 20px;
}

.page-sports__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.5;
}

.page-sports__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

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

.page-sports__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-sports__hero-button {
  display: inline-block;
  background-color: #B80000; /* Main brand color for CTA */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-sports__hero-button:hover {
  background-color: #e00000;
}

.page-sports__section-title {
  font-size: 2.8em;
  color: #B80000; /* Main brand color for section titles */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 40px;
}

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

.page-sports__about-section,
.page-sports__guides-section,
.page-sports__why-choose-section,
.page-sports__promo-section {
  padding: 60px 0;
  background-color: #f8f8f8;
  border-bottom: 1px solid #eeeeee;
}

.page-sports__about-section {
  background-color: #ffffff;
}

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

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

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

.page-sports__feature-icon,
.page-sports__reason-icon {
  width: 400px; /* Must be >= 200px. HTML width/height attributes should be set for CLS. */
  height: 267px;
  object-fit: contain;
  margin: 0 auto 20px auto;
  border-radius: 5px;
}

.page-sports__guide-image {
  width: 100%;
  height: 250px; /* Must be >= 200px */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-sports__feature-title,
.page-sports__reason-title {
  font-size: 1.8em;
  color: #B80000;
  margin-bottom: 15px;
}

.page-sports__feature-description,
.page-sports__reason-description {
  font-size: 1em;
  color: #666666;
}

.page-sports__cta-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0 auto;
  background-color: #FFD700; /* Auxiliary gold for secondary CTA */
  color: #333333;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-sports__cta-button--bottom {
  margin-bottom: 0;
}

.page-sports__guide-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-sports__guide-item {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__guide-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-sports__guide-title {
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-sports__guide-title a {
  color: #B80000; /* Main brand color for link titles */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-sports__guide-title a:hover {
  color: #e00000;
  text-decoration: underline;
}

.page-sports__guide-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
}

.page-sports__guide-button {
  display: inline-block;
  background-color: #B80000;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-sports__guide-button:hover {
  background-color: #e00000;
}

.page-sports__promo-section {
  text-align: center;
  background-color: #0d0d0d;
  color: #ffffff;
}

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

.page-sports__promo-section .page-sports__section-text {
  color: #f0f0f0;
}

.page-sports__promo-button {
  display: inline-block;
  background-color: #FFD700;
  color: #333333;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-right: 20px;
}

.page-sports__promo-button:hover {
  background-color: #e6c200;
}

.page-sports__promo-register-button {
  display: inline-block;
  background-color: #B80000;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-sports__promo-register-button:hover {
  background-color: #e00000;
}

/* Responsive adjustments */
@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: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-sports {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }
  .page-sports__hero-section {
    min-height: 400px;
    padding: 60px 15px;
  }
  .page-sports__hero-title {
    font-size: 2.5em;
  }
  .page-sports__hero-description {
    font-size: 1.1em;
  }
  .page-sports__hero-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-sports__section-title {
    font-size: 1.8em;
  }
  .page-sports__section-text {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-sports__features-grid,
  .page-sports__reason-grid,
  .page-sports__guide-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-sports__feature-icon,
  .page-sports__reason-icon {
    width: 250px; /* Ensure images are not too small but also responsive */
    height: auto; /* Maintain aspect ratio */
  }
  .page-sports__guide-image {
    height: 200px;
  }
  .page-sports__cta-button {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-sports__promo-button,
  .page-sports__promo-register-button {
    display: block;
    margin: 10px auto;
    width: 80%;
  }
  /* Ensure all content area images are responsive and do not overflow */
  .page-sports img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-sports__hero-title {
    font-size: 2em;
  }
  .page-sports__hero-description {
    font-size: 1em;
  }
  .page-sports__hero-button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-sports__section-title {
    font-size: 1.5em;
  }
  .page-sports__promo-button,
  .page-sports__promo-register-button {
    width: 95%;
  }
}