.page-sports {
  background-color: #B71C1C;
  color: #FFF5E1;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding: 10px 0;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.page-sports__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}

.page-sports__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/9; /* Default aspect ratio for hero */
}

.page-sports__hero-content {
  max-width: 90%;
  margin: 20px auto 0;
  padding: 0 15px;
}

.page-sports__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  color: #F4D34D;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-sports__description {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-sports__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
  font-size: 1rem;
  min-width: 150px;
}

.page-sports__btn--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E;
  border: 1px solid #F2B544;
}

.page-sports__btn--primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px #FFCC66;
}

.page-sports__btn--secondary {
  background-color: #D32F2F;
  color: #FFF5E1;
  border: 1px solid #F2B544;
}

.page-sports__btn--secondary:hover {
  background-color: #E53935;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.page-sports__btn--small {
  padding: 8px 15px;
  font-size: 0.9rem;
  min-width: unset;
}

.page-sports__btn--link {
  background: none;
  border: none;
  color: #F4D34D;
  padding: 0;
  min-width: unset;
  text-decoration: underline;
}

.page-sports__btn--link:hover {
  color: #FFCC66;
}

.page-sports__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #F4D34D;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-sports__section-description {
  font-size: clamp(0.9rem, 2.2vw, 1.1rem);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  padding: 0 15px;
}

.page-sports__categories-section {
  padding: 40px 20px;
  background-color: #7A0E0E;
  border-top: 5px solid #F2B544;
  border-bottom: 5px solid #F2B544;
}

.page-sports__categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-sports__category-card {
  background-color: #D32F2F;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-sports__category-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
  border-bottom: 3px solid #F2B544;
}

.page-sports__category-title {
  font-size: 1.4rem;
  color: #F4D34D;
  margin: 15px 10px 10px;
  font-weight: bold;
}

.page-sports__category-text {
  font-size: 0.95rem;
  color: #FFF5E1;
  padding: 0 15px 15px;
  flex-grow: 1;
}

.page-sports__category-card .page-sports__btn {
  margin-bottom: 15px;
}

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

.page-sports__features-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-sports__feature-content,
.page-sports__feature-image-wrapper {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-sports__feature-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-sports__feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-sports__feature-item {
  background-color: #D32F2F;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid #F2B544;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-sports__feature-heading {
  font-size: 1.25rem;
  color: #F4D34D;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-sports__feature-text {
  font-size: 1rem;
  color: #FFF5E1;
}

.page-sports__guide-section {
  padding: 60px 20px;
  background-color: #2d0000; /* Deep red background */
  border-top: 5px solid #F2B544;
}

.page-sports__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.page-sports__guide-step {
  background-color: #D32F2F;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-sports__step-number {
  font-size: 2.5rem;
  color: #F4D34D;
  font-weight: bold;
  margin-bottom: 15px;
  background-color: #7A0E0E;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #F2B544;
}

.page-sports__step-title {
  font-size: 1.3rem;
  color: #F4D34D;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-sports__step-text {
  font-size: 0.95rem;
  color: #FFF5E1;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-sports__faq-list {
  margin-top: 40px;
}

.page-sports__faq-item {
  background-color: #D32F2F;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid #E53935;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-sports__faq-question {
  font-size: 1.2rem;
  color: #F4D34D;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-sports__faq-answer {
  font-size: 0.95rem;
  color: #FFF5E1;
}

.page-sports__faq-answer a {
  color: #FFCC66;
  text-decoration: underline;
}

.page-sports__faq-answer a:hover {
  color: #F4D34D;
}

@media (max-width: 849px) {
  .page-sports__hero-section {
    padding-bottom: 30px;
  }

  .page-sports__hero-image-wrapper {
    max-height: 400px;
  }

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

  .page-sports__description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

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

  .page-sports__btn {
    width: 80%;
    max-width: 300px;
  }

  .page-sports__categories-section {
    padding: 30px 15px;
  }

  .page-sports__categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .page-sports__features-section {
    padding: 40px 15px;
  }

  .page-sports__features-container {
    flex-direction: column;
    gap: 30px;
  }

  .page-sports__feature-content,
  .page-sports__feature-image-wrapper {
    flex: 1 1 100%;
    min-width: unset;
  }

  .page-sports__guide-section {
    padding: 40px 15px;
  }

  .page-sports__guide-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-sports__faq-section {
    padding: 40px 15px;
  }
}

@media (max-width: 549px) {
  .page-sports {
    padding: 5px 0;
  }
  .page-sports__hero-image-wrapper {
    max-height: 300px;
  }

  .page-sports__main-title {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }

  .page-sports__description {
    font-size: clamp(0.85rem, 3.5vw, 1rem);
  }

  .page-sports__section-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-sports__section-description {
    font-size: clamp(0.8rem, 2.5vw, 0.95rem);
    margin-bottom: 20px;
  }

  .page-sports__categories-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller mobiles */
    gap: 15px;
  }

  .page-sports__category-title {
    font-size: 1.2rem;
  }

  .page-sports__category-text {
    font-size: 0.9rem;
  }

  .page-sports__feature-heading {
    font-size: 1.1rem;
  }

  .page-sports__feature-text {
    font-size: 0.9rem;
  }

  .page-sports__step-title {
    font-size: 1.15rem;
  }

  .page-sports__step-text {
    font-size: 0.9rem;
  }

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

  .page-sports__faq-answer {
    font-size: 0.9rem;
  }

  /* Ensure all images in content area are responsive */
  .page-sports img {
    max-width: 100%;
    height: auto;
  }
}

/* Ensure content images are not smaller than 200px where applicable */
.page-sports__category-image, 
.page-sports__feature-image {
  min-width: 200px;
  min-height: 200px;
}

.page-sports__hero-image {
  min-width: 200px;
  min-height: 200px;
}