.page-sports {
  background-color: #140C0C; /* Background */
  color: #FFF1E8; /* Text Main */
  padding-bottom: 40px;
}

.page-sports__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  margin-bottom: 40px;
  max-width: 1390px; /* Boxed feel */
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

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

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9; /* Common hero ratio */
  object-fit: cover;
  object-position: center;
  filter: none; /* No color filters */
}

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

.page-sports__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F3C54D; /* Gold */
  margin-bottom: 20px;
  /* H1 font-size: using clamp for responsiveness */
  font-size: clamp(1.8rem, 4.5vw, 3rem); /* Adjusted for the prompt's H1 guidance */
}

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

.page-sports__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button gradient */
  color: #140C0C; /* Text for button, contrasting with gradient */
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  border: none;
  cursor: pointer;
}

.page-sports__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-sports__section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #F3C54D; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  line-height: 1.3;
}

.page-sports__features-section,
.page-sports__bet-types-section,
.page-sports__tips-section,
.page-sports__cta-bottom-section {
  max-width: 1200px; /* Boxed feel */
  margin-left: auto;
  margin-right: auto;
  padding: 20px 15px 40px;
}

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

.page-sports__feature-card {
  background-color: #2A1212; /* Card B G */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #6A1E1E; /* Border */
}

.page-sports__feature-title {
  font-size: 1.4rem;
  color: #FFB04A; /* Lighter gold/orange from button gradient for emphasis */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-sports__feature-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
}

.page-sports__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

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

.page-sports__text-content {
  flex: 1;
  line-height: 1.7;
}

.page-sports__text-content p {
  margin-bottom: 15px;
}

.page-sports__bet-list,
.page-sports__tips-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-sports__bet-list li,
.page-sports__tips-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.page-sports__bet-list li::before,
.page-sports__tips-list li::before {
  content: '✔';
  color: #F3C54D; /* Gold */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-sports__image-right,
.page-sports__image-left {
  flex: 1;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #6A1E1E; /* Border */
}

.page-sports__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: none; /* No color filters */
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-sports__cta-bottom-section {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 60px;
}


/* Responsive adjustments */
@media (max-width: 850px) {
  .page-sports__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  .page-sports__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
  .page-sports__content-wrapper,
  .page-sports__content-wrapper--reverse {
    flex-direction: column;
    gap: 30px;
  }
  .page-sports__image-right,
  .page-sports__image-left {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-image,
  .page-sports__image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 549px) {
  .page-sports__cta-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  .page-sports__features-grid {
    grid-template-columns: 1fr;
  }
  .page-sports__description {
    font-size: 1rem;
  }
  .page-sports__bet-list li,
  .page-sports__tips-list li {
    font-size: 0.95rem;
  }
}