.page-sports {
  background-color: #F5F7FA;
  color: #333333;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-sports__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1390px;
  margin: 0 auto 40px auto;
  padding: 0 15px;
  text-align: center;
  box-sizing: border-box;
}

.page-sports__hero-image-wrapper {
  width: 100%;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 12px;
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/5; /* Approx 1920x600 */
  object-fit: cover;
  object-position: center;
  filter: none;
}

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

.page-sports__main-title {
  font-family: Arial, sans-serif;
  color: #E53935;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
}

.page-sports__description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333333;
}

.page-sports__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
}

.page-sports__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(229, 57, 53, 0.6);
}

.page-sports__section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-sports__section-title {
  font-family: Arial, sans-serif;
  color: #E53935;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  position: relative;
}

.page-sports__section-title::before, .page-sports__section-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 50px;
  height: 3px;
  background-color: #FF5A4F;
  transform: translateY(-50%);
}

.page-sports__section-title::before {
  left: calc(50% - 100px);
}

.page-sports__section-title::after {
  right: calc(50% - 100px);
}

@media (max-width: 768px) {
  .page-sports__section-title::before, .page-sports__section-title::after {
    width: 30px;
    left: calc(50% - 70px);
  }
  .page-sports__section-title::after {
    right: calc(50% - 70px);
  }
}

@media (max-width: 549px) {
  .page-sports__section-title::before, .page-sports__section-title::after {
    width: 20px;
    left: calc(50% - 50px);
  }
  .page-sports__section-title::after {
    right: calc(50% - 50px);
  }
}

.page-sports__about-sports .page-sports__content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: left;
}

.page-sports__text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333333;
}

.page-sports__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  filter: none;
  min-width: 200px;
  min-height: 200px;
}

.page-sports__why-choose-us .page-sports__content-wrapper--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-sports__feature-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #E0E0E0;
}

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

.page-sports__feature-title {
  color: #E53935;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 15px;
}

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

.page-sports__betting-tips .page-sports__content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: left;
}

.page-sports__tip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #333333;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 700px;
}

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

.page-sports__tip-item strong {
  color: #E53935;
}

.page-sports__cta-bottom {
  text-align: center;
  margin-bottom: 80px;
}

.page-sports__description--bottom {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__cta-button--bottom {
  margin-top: 30px;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-sports__about-sports .page-sports__content-wrapper {
    flex-direction: row;
    text-align: left;
  }
  .page-sports__about-sports .page-sports__image--left {
    order: -1; /* Image on left */
    max-width: 40%;
  }
  .page-sports__betting-tips .page-sports__content-wrapper {
    flex-direction: row;
    text-align: left;
  }
  .page-sports__betting-tips .page-sports__image--right {
    max-width: 40%;
  }
}

@media (max-width: 768px) {
  .page-sports__main-title {
    font-size: clamp(1.5rem, 7vw, 2.5rem);
  }
  .page-sports__description {
    font-size: 1rem;
  }
  .page-sports__cta-button {
    font-size: 1rem;
    padding: 12px 25px;
  }
  .page-sports__section {
    margin: 40px auto;
  }
  .page-sports__image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
  }
  .page-sports__hero-image-wrapper {
    margin-bottom: 20px;
  }
  .page-sports__hero-image {
    aspect-ratio: 16/9; /* Taller on mobile */
  }
  .page-sports__section-title::before, .page-sports__section-title::after {
    width: 20px;
    left: calc(50% - 50px);
  }
  .page-sports__section-title::after {
    right: calc(50% - 50px);
  }
}

@media (max-width: 549px) {
  .page-sports__section-title::before, .page-sports__section-title::after {
    display: none;
  }
  .page-sports__main-title {
    font-size: clamp(1.3rem, 8vw, 2.2rem);
  }
  .page-sports__feature-card {
    padding: 20px;
  }
  .page-sports__why-choose-us .page-sports__content-wrapper--grid {
    grid-template-columns: 1fr;
  }
}