/* style/live-scores-streaming.css */
.page-live-scores-streaming {
  font-family: 'Arial', sans-serif;
  color: #1A2E4C; /* Dark blue for main text */
  background-color: #f8f8f8;
}

.page-live-scores-streaming__hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1A2E4C 0%, #3a5c8e 100%); /* Dark blue gradient */
  color: #FFFFFF;
}

.page-live-scores-streaming__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-live-scores-streaming__title {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold for main title */
}

.page-live-scores-streaming__title .highlight {
  color: #FFFFFF;
}

.page-live-scores-streaming__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-live-scores-streaming__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

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

.page-live-scores-streaming__section-title {
  font-size: 2.5em;
  color: #1A2E4C;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-live-scores-streaming__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-live-scores-streaming__features {
  background-color: #FFFFFF;
}

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

.page-live-scores-streaming__feature-item {
  background-color: #f0f4f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live-scores-streaming__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-live-scores-streaming__feature-title {
  font-size: 1.6em;
  color: #1A2E4C;
  margin-bottom: 15px;
  text-align: center;
}

.page-live-scores-streaming__feature-item p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #333;
  text-align: center;
}

.page-live-scores-streaming__sports-coverage {
  background-color: #e9eff5;
}

.page-live-scores-streaming__sport-category {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  gap: 40px;
}

.page-live-scores-streaming__sport-category:last-child {
  margin-bottom: 0;
}

.page-live-scores-streaming__sport-category--reverse {
  flex-direction: row-reverse;
}

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

.page-live-scores-streaming__sport-title {
  font-size: 2em;
  color: #1A2E4C;
  margin-bottom: 20px;
}

.page-live-scores-streaming__sport-text p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
}

.page-live-scores-streaming__sport-link {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2E4C;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-live-scores-streaming__sport-link:hover {
  background-color: #e5c000;
  transform: translateY(-2px);
}

.page-live-scores-streaming__sport-link .arrow {
  margin-left: 10px;
  font-weight: normal;
}

.page-live-scores-streaming__sport-image {
  flex: 1;
  max-width: 50%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-live-scores-streaming__integration {
  background-color: #FFFFFF;
}

.page-live-scores-streaming__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

.page-live-scores-streaming__cta-banner {
  position: relative;
  width: 100%;
  min-height: 250px;
  margin-top: 50px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-live-scores-streaming__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.page-live-scores-streaming__cta-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  padding: 30px;
  max-width: 700px;
}

.page-live-scores-streaming__cta-heading {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live-scores-streaming__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-live-scores-streaming__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2E4C;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  cursor: pointer;
  border: none;
}

.page-live-scores-streaming__cta-button:hover {
  background-color: #e5c000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-live-scores-streaming__cta-button--small {
  font-size: 1em;
  padding: 10px 25px;
}

.page-live-scores-streaming__detail-pages {
  background-color: #f0f4f8;
}

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

.page-live-scores-streaming__detail-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live-scores-streaming__detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-live-scores-streaming__detail-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-live-scores-streaming__detail-title {
  font-size: 1.5em;
  color: #1A2E4C;
  margin: 20px 15px 10px;
}

.page-live-scores-streaming__detail-title a {
  color: inherit;
  text-decoration: none;
}

.page-live-scores-streaming__detail-title a:hover {
  color: #FFD700;
}

.page-live-scores-streaming__detail-description {
  font-size: 1em;
  color: #555;
  padding: 0 15px 20px;
  line-height: 1.6;
}

.page-live-scores-streaming__detail-button {
  display: inline-block;
  background-color: #1A2E4C;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-live-scores-streaming__detail-button:hover {
  background-color: #2e4a77;
}

.page-live-scores-streaming__final-cta {
  text-align: center;
  padding-bottom: 80px;
}

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

.page-live-scores-streaming__cta-button--secondary {
  background-color: #5f6d82; /* Lighter shade of main color for secondary CTA */
  color: #FFFFFF;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-live-scores-streaming__cta-button--secondary:hover {
  background-color: #768294;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

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

  .page-live-scores-streaming__subtitle {
    font-size: 1.2em;
  }

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

  .page-live-scores-streaming__sport-category {
    flex-direction: column;
    text-align: center;
  }

  .page-live-scores-streaming__sport-category--reverse {
    flex-direction: column;
  }

  .page-live-scores-streaming__sport-image {
    max-width: 80%;
    margin-top: 30px;
  }

  .page-live-scores-streaming__sport-text {
    order: 2; /* Ensure text comes after image in column layout */
  }

  .page-live-scores-streaming__sport-category--reverse .page-live-scores-streaming__sport-text {
    order: 2;
  }

  .page-live-scores-streaming__sport-category--reverse .page-live-scores-streaming__sport-image {
    order: 1;
  }
}

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

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

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

  .page-live-scores-streaming__section {
    padding: 40px 15px;
  }

  .page-live-scores-streaming__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-live-scores-streaming__feature-item {
    padding: 20px;
  }

  .page-live-scores-streaming__feature-title {
    font-size: 1.4em;
  }

  .page-live-scores-streaming__feature-item p {
    font-size: 0.95em;
  }

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

  .page-live-scores-streaming__sport-text p {
    font-size: 1em;
  }

  .page-live-scores-streaming__sport-image {
    max-width: 95%;
  }

  .page-live-scores-streaming__cta-heading {
    font-size: 1.8em;
  }

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

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

  .page-live-scores-streaming__detail-title {
    font-size: 1.3em;
  }

  .page-live-scores-streaming__detail-description {
    font-size: 0.9em;
  }

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

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

  .page-live-scores-streaming__subtitle {
    font-size: 0.9em;
  }

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

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

  .page-live-scores-streaming__cta-heading {
    font-size: 1.5em;
  }

  .page-live-scores-streaming__cta-description {
    font-size: 0.9em;
  }

  .page-live-scores-streaming__cta-button {
    width: 100%;
    max-width: 250px;
  }
}