.page-live-scores {
  background-color: #140C0C;
  color: #FFF1E8;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding to avoid content touching header, relying on body padding-top from shared.css */
}

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

/* Hero Section */
.page-live-scores__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background-color: #2A1212;
  border-bottom: 2px solid #6A1E1E;
}

.page-live-scores__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

.page-live-scores__hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  max-width: 100%; /* Ensure responsiveness */
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-live-scores__hero-content {
  max-width: 800px;
}

.page-live-scores__main-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #F3C54D;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-live-scores__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF1E8;
}

.page-live-scores__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #FFF1E8;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-live-scores__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.page-live-scores__features-section {
  padding: 60px 20px;
  background-color: #140C0C;
}

.page-live-scores__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #F3C54D;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 600;
}

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

.page-live-scores__feature-card {
  background-color: #2A1212;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #6A1E1E;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live-scores__feature-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
  object-fit: cover;
  filter: none; /* Ensure no color filters */
}

.page-live-scores__card-title {
  font-size: 1.4em;
  color: #E53030;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-live-scores__card-description {
  font-size: 1em;
  color: #FFF1E8;
}

/* CTA Section */
.page-live-scores__cta-section {
  padding: 60px 20px;
  background-color: #2A1212;
  text-align: center;
  border-top: 2px solid #6A1E1E;
}

.page-live-scores__cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #F3C54D;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-live-scores__cta-description {
  font-size: 1.1em;
  color: #FFF1E8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-live-scores__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-live-scores__hero-section {
    padding: 30px 15px;
  }

  .page-live-scores__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-live-scores__description {
    font-size: 1em;
  }

  .page-live-scores__features-section,
  .page-live-scores__cta-section {
    padding: 40px 15px;
  }

  .page-live-scores__section-title,
  .page-live-scores__cta-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .page-live-scores__feature-grid {
    grid-template-columns: 1fr; /* Single column on smaller screens */
  }

  .page-live-scores__feature-card img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-live-scores__hero-image-wrapper img,
  .page-live-scores__feature-card img {
    max-width: 100%;
    height: auto;
  }
}

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

  .page-live-scores__section-title,
  .page-live-scores__cta-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .page-live-scores__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-live-scores__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

/* Ensure content area images are not smaller than 200px */
.page-live-scores img {
  min-width: 200px;
  min-height: 200px;
}

/* Mobile specific for content images to prevent overflow */
@media (max-width: 768px) {
  .page-live-scores img {
    max-width: 100% !important;
    height: auto !important;
    min-width: unset; /* Allow to scale down if smaller than 200px due to max-width: 100% */
    min-height: unset; /* Allow to scale down if smaller than 200px due to max-width: 100% */
  }
}

/* Re-applying min-width/height for content images outside small mobile media query, if needed for larger mobile screens */
@media (min-width: 769px) and (max-width: 849px) {
  .page-live-scores__feature-card img {
    min-width: 200px;
    min-height: 200px;
  }
}