.page-live-scores-center {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

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

.page-live-scores-center__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for hero section */
  text-align: center;
  overflow: hidden;
  padding: 80px 20px;
  background-color: #000000; /* Dark background for contrast with image */
}

.page-live-scores-center__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6; /* Slightly dim the background image for text readability */
}

.page-live-scores-center__hero-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  max-width: 800px;
}

.page-live-scores-center__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live-scores-center__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-live-scores-center__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-live-scores-center__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
  font-size: 1.1em;
}

.page-live-scores-center__btn--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live-scores-center__btn--primary:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

.page-live-scores-center__btn--secondary {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Register color */
  border: 2px solid #FFFFFF;
}

.page-live-scores-center__btn--secondary:hover {
  background-color: #333333;
  border-color: #FCBC45;
}

.page-live-scores-center__btn--link {
  background: none;
  color: #000000;
  border: 2px solid #000000;
  padding: 10px 20px;
  min-width: unset;
}

.page-live-scores-center__btn--link:hover {
  color: #FCBC45;
  border-color: #FCBC45;
}

.page-live-scores-center__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 30px;
  color: #000000;
  font-weight: bold;
}

.page-live-scores-center__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #333333;
}

.page-live-scores-center__about-section,
.page-live-scores-center__sports-coverage-section,
.page-live-scores-center__data-section,
.page-live-scores-center__integration-section,
.page-live-scores-center__mobile-section,
.page-live-scores-center__analysis-section,
.page-live-scores-center__featured-matches-section,
.page-live-scores-center__join-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-live-scores-center__about-section {
  background-color: #f9f9f9;
}

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

.page-live-scores-center__feature-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-live-scores-center__feature-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-live-scores-center__feature-description {
  color: #555555;
}

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

.page-live-scores-center__sport-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live-scores-center__sport-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-live-scores-center__sport-card h3 {
  padding: 20px 20px 0;
  font-size: 1.4em;
  color: #000000;
}

.page-live-scores-center__sport-card p {
  padding: 10px 20px 20px;
  color: #555555;
  flex-grow: 1;
}

.page-live-scores-center__sport-card .page-live-scores-center__btn--link {
  margin: 0 20px 20px;
  align-self: center;
  width: calc(100% - 40px);
}

.page-live-scores-center__data-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
  align-items: center;
}

.page-live-scores-center__data-item {
  text-align: center;
}

.page-live-scores-center__data-item img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-live-scores-center__data-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-live-scores-center__data-description {
  color: #555555;
}

.page-live-scores-center__integration-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-live-scores-center__integration-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-live-scores-center__integration-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-live-scores-center__integration-description {
  color: #555555;
}

.page-live-scores-center__cta-area {
  text-align: center;
  margin-top: 60px;
}

.page-live-scores-center__mobile-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.page-live-scores-center__mobile-image {
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-live-scores-center__mobile-text {
  flex: 1;
}

.page-live-scores-center__mobile-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-live-scores-center__mobile-description {
  color: #555555;
  margin-bottom: 25px;
}

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

.page-live-scores-center__analysis-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-live-scores-center__analysis-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-live-scores-center__analysis-description {
  color: #555555;
}

.page-live-scores-center__match-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-live-scores-center__match-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live-scores-center__match-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-live-scores-center__match-title a {
  text-decoration: none;
  color: #000000;
  transition: color 0.3s ease;
}

.page-live-scores-center__match-title a:hover {
  color: #FCBC45;
}

.page-live-scores-center__match-description {
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-live-scores-center__join-section {
  background-color: #000000;
  color: #FFFFFF;
}

.page-live-scores-center__join-section .page-live-scores-center__section-title {
  color: #FFFFFF;
}

.page-live-scores-center__join-section .page-live-scores-center__section-intro {
  color: #f0f0f0;
}

.page-live-scores-center__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live-scores-center__hero-title {
    font-size: 2.8em;
  }

  .page-live-scores-center__section-title {
    font-size: 2em;
  }

  .page-live-scores-center__data-highlights {
    grid-template-columns: 1fr;
  }

  .page-live-scores-center__data-item:first-child {
    order: 2;
  }
  .page-live-scores-center__data-item:nth-child(2) {
    order: 1;
  }
  .page-live-scores-center__data-item:nth-child(3) {
    order: 3;
  }
}

@media (max-width: 768px) {
  .page-live-scores-center__hero-section {
    min-height: 450px;
    padding: 60px 15px;
  }

  .page-live-scores-center__hero-title {
    font-size: 2.2em;
  }

  .page-live-scores-center__hero-description {
    font-size: 1em;
  }

  .page-live-scores-center__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-live-scores-center__btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-live-scores-center__section-title {
    font-size: 1.8em;
  }

  .page-live-scores-center__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-live-scores-center__about-section,
  .page-live-scores-center__sports-coverage-section,
  .page-live-scores-center__data-section,
  .page-live-scores-center__integration-section,
  .page-live-scores-center__mobile-section,
  .page-live-scores-center__analysis-section,
  .page-live-scores-center__featured-matches-section,
  .page-live-scores-center__join-section {
    padding: 50px 0;
  }

  .page-live-scores-center__features-grid,
  .page-live-scores-center__sports-grid,
  .page-live-scores-center__integration-features,
  .page-live-scores-center__analysis-grid,
  .page-live-scores-center__match-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-live-scores-center__mobile-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-live-scores-center__mobile-image {
    max-width: 80%;
  }

  .page-live-scores-center__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* Enforce min image size for content images */
  .page-live-scores-center img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure content images are not too small */
    min-height: 200px; /* Ensure content images are not too small */
  }
}

@media (max-width: 480px) {
  .page-live-scores-center__hero-title {
    font-size: 1.8em;
  }

  .page-live-scores-center__section-title {
    font-size: 1.5em;
  }

  .page-live-scores-center__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
}