:root {
  --primary-color: #C61F1F;
  --secondary-color: #E53030;
  --button-bg: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  --card-bg: #2A1212;
  --background: #140C0C;
  --text-main: #FFF1E8;
  --border: #6A1E1E;
  --gold: #F3C54D;
  --deep-red: #7E0D0D;
}

.page-sports {
  max-width: 1390px; /* Aligned with boxed feel, max-width around 1200-1390px */
  margin: 0 auto;
  padding: 10px 15px 40px; /* Small top padding, good side padding, more bottom padding */
  box-sizing: border-box;
  overflow-x: hidden; /* Prevent horizontal overflow */
  color: var(--text-main); /* #FFF1E8 */
  background-color: var(--background); /* #140C0C */
}

.page-sports__hero-section {
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  padding: 0 0 20px; /* Adjust padding if needed, but avoid large top padding */
}

.page-sports__hero-image-wrapper {
  width: 100%;
  margin-bottom: 20px; /* Space between image and text */
}

.page-sports__hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

.page-sports__hero-content {
  max-width: 800px;
  padding: 0 15px;
}

.page-sports__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Use clamp for H1 */
  font-weight: 700;
  line-height: 1.2;
  color: var(--gold); /* #F3C54D */
  margin-bottom: 15px;
  text-align: center;
  letter-spacing: 0.5px;
}

.page-sports__description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.page-sports__cta-buttons--center {
  margin-top: 30px;
  text-align: center;
}

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

.page-sports__btn--primary {
  background: var(--button-bg); /* linear-gradient(180deg, #FFB04A 0%, #D86A14 100%) */
  color: var(--text-main); /* #FFF1E8 */
  border: none;
}

.page-sports__btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.1); /* Slight brightness change on hover */
}

.page-sports__btn--secondary {
  background-color: var(--deep-red); /* #7E0D0D */
  color: var(--text-main); /* #FFF1E8 */
  border: 1px solid var(--border); /* #6A1E1E */
}

.page-sports__btn--secondary:hover {
  transform: translateY(-2px);
  background-color: #9C1A1A; /* Slightly lighter deep red */
}

.page-sports__btn--link {
  background: none;
  border: 1px solid var(--gold); /* #F3C54D */
  color: var(--gold); /* #F3C54D */
  padding: 10px 20px;
}

.page-sports__btn--link:hover {
  background-color: var(--gold);
  color: var(--background); /* #140C0C */
  transform: translateY(-2px);
}

.page-sports__section {
  margin-bottom: 50px;
  padding: 20px 0;
  background-color: var(--card-bg); /* #2A1212 */
  border-radius: 10px;
}

.page-sports__section:not(:last-of-type) {
  margin-bottom: 40px;
}

.page-sports__section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: var(--gold); /* #F3C54D */
  text-align: center;
  margin-bottom: 30px;
  padding: 0 15px;
  position: relative;
}

.page-sports__section-title::before,
.page-sports__section-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 50px; /* Shorter lines for mobile */
  height: 2px;
  background-color: var(--border); /* #6A1E1E */
  transform: translateY(-50%);
}

.page-sports__section-title::before {
  left: 0;
  margin-left: 15px; /* Adjust for padding */
}

.page-sports__section-title::after {
  right: 0;
  margin-right: 15px; /* Adjust for padding */
}

.page-sports__content-wrapper {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping for mobile */
  gap: 30px;
  padding: 0 30px;
  align-items: center;
}

.page-sports__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-sports__text-content {
  flex: 1;
  min-width: 300px; /* Ensure text content doesn't shrink too much */
}

.page-sports__text-content p {
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1rem;
}

.page-sports__text-content p a {
  color: var(--gold);
  text-decoration: underline;
}

.page-sports__text-content p a:hover {
  color: var(--deep-red);
}

.page-sports__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-sports__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-sports__list li::before {
  content: '✓'; /* Checkmark icon */
  color: var(--gold); /* #F3C54D */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-sports__image-container {
  flex: 1;
  min-width: 300px; /* Ensure image container doesn't shrink too much */
  text-align: center;
}

.page-sports__image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  min-width: 200px; /* Ensure content images are not too small */
  min-height: 200px;
  filter: none; /* Explicitly disable filters */
}

.page-sports__faq-list {
  padding: 0 30px;
}

.page-sports__faq-item {
  background-color: var(--background); /* #140C0C */
  border: 1px solid var(--border); /* #6A1E1E */
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-sports__faq-question {
  font-size: 1.15rem;
  color: var(--gold); /* #F3C54D */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-sports__faq-answer {
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive styles */
@media (max-width: 850px) {
  .page-sports__content-wrapper {
    flex-direction: column;
    padding: 0 20px;
  }

  .page-sports__content-wrapper--reverse {
    flex-direction: column; /* Stack vertically on smaller screens */
  }

  .page-sports__text-content,
  .page-sports__image-container {
    flex: none;
    width: 100%;
    min-width: unset;
  }

  .page-sports__section-title::before,
  .page-sports__section-title::after {
    width: 30px; /* Shorter lines on mobile */
  }

  .page-sports__section-title::before {
    left: 0;
    margin-left: 20px;
  }

  .page-sports__section-title::after {
    right: 0;
    margin-right: 20px;
  }
}

@media (max-width: 768px) {
  .page-sports {
    padding-left: 12px;
    padding-right: 12px;
  }

  .page-sports__hero-section {
    padding-bottom: 15px;
  }

  .page-sports__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .page-sports__description {
    font-size: 1rem;
  }

  .page-sports__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-sports__btn {
    width: 100%;
    padding: 10px 15px;
  }

  .page-sports__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
    margin-bottom: 25px;
  }

  .page-sports__content-wrapper {
    gap: 20px;
    padding: 0 15px;
  }

  .page-sports__text-content p,
  .page-sports__list li,
  .page-sports__faq-answer {
    font-size: 0.95rem;
  }

  .page-sports__faq-question {
    font-size: 1.05rem;
  }

  /* Mobile content image constraint */
  .page-sports__hero-image-wrapper img,
  .page-sports__image-container img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Keep minimum size */
    min-height: 200px;
  }
}

@media (max-width: 549px) {
  .page-sports__main-title {
    font-size: clamp(1.3rem, 7vw, 2.2rem);
  }

  .page-sports__section-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }

  .page-sports__section-title::before,
  .page-sports__section-title::after {
    width: 20px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .page-sports__content-wrapper {
    padding: 0 10px;
  }

  .page-sports__faq-list {
    padding: 0 10px;
  }
}