/* style/live-scores-streaming-football.css */
.page-live-scores-streaming-football {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Light text for dark background */
  background-color: #1A2E4C; /* Main dark blue background */
  line-height: 1.6;
}

.page-live-scores-streaming-football .highlight {
  color: #FFD700; /* Gold accent for keywords */
}

.page-live-scores-streaming-football__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1A2E4C 0%, #0D1B2A 100%); /* Dark gradient */
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.page-live-scores-streaming-football__hero-content {
  max-width: 900px;
  z-index: 2;
}

.page-live-scores-streaming-football__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: bold;
  line-height: 1.2;
}

.page-live-scores-streaming-football__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

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

.page-live-scores-streaming-football__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-live-scores-streaming-football__btn--primary {
  background-color: #FFD700;
  color: #1A2E4C; /* Dark blue text on gold */
}

.page-live-scores-streaming-football__btn--primary:hover {
  background-color: #E5C100;
}

.page-live-scores-streaming-football__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-live-scores-streaming-football__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2E4C;
}

.page-live-scores-streaming-football__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-live-scores-streaming-football__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle background image */
}

.page-live-scores-streaming-football__section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-live-scores-streaming-football__section-title {
  font-size: 2.8em;
  margin-bottom: 50px;
  color: #FFD700;
  font-weight: bold;
}

.page-live-scores-streaming-football__about-clb88 {
  background-color: #0D1B2A;
}

.page-live-scores-streaming-football__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-live-scores-streaming-football__grid-item {
  background-color: #1A2E4C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
}

.page-live-scores-streaming-football__grid-item-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live-scores-streaming-football__grid-item p {
  color: #E0E0E0;
  font-size: 1.1em;
}

.page-live-scores-streaming-football__features {
  background-color: #1A2E4C;
}

.page-live-scores-streaming-football__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-live-scores-streaming-football__feature-item {
  background-color: #0D1B2A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-live-scores-streaming-football__feature-item:hover {
  transform: translateY(-10px);
}

.page-live-scores-streaming-football__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700); /* Gold glow effect */
}

.page-live-scores-streaming-football__feature-item h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-live-scores-streaming-football__feature-item p {
  color: #E0E0E0;
  font-size: 1em;
}

.page-live-scores-streaming-football__how-to {
  background-color: #0D1B2A;
}

.page-live-scores-streaming-football__steps {
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.page-live-scores-streaming-football__steps li {
  background-color: #1A2E4C;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  position: relative;
  padding-left: 80px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-live-scores-streaming-football__steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #1A2E4C;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-live-scores-streaming-football__steps li h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-live-scores-streaming-football__steps li p {
  color: #E0E0E0;
  font-size: 1.1em;
}

.page-live-scores-streaming-football__cta-bottom {
  margin-top: 60px;
}

.page-live-scores-streaming-football__leagues {
  background-color: #1A2E4C;
}

.page-live-scores-streaming-football__league-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 40px;
  text-align: left;
}

.page-live-scores-streaming-football__league-list li {
  background-color: #0D1B2A;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #E0E0E0;
  border-left: 3px solid #FFD700;
}

.page-live-scores-streaming-football__app-promo {
  background-color: #0D1B2A;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-live-scores-streaming-football__app-content {
  max-width: 600px;
  text-align: center;
}

.page-live-scores-streaming-football__app-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 25px;
}

.page-live-scores-streaming-football__app-content p {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-live-scores-streaming-football__app-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  text-align: left;
}

.page-live-scores-streaming-football__app-benefits li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #E0E0E0;
  font-size: 1.05em;
}

.page-live-scores-streaming-football__app-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: bold;
  font-size: 1.2em;
}

.page-live-scores-streaming-football__app-image {
  max-width: 400px;
  width: 100%;
}

.page-live-scores-streaming-football__app-mockup {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-live-scores-streaming-football__security {
  background-color: #1A2E4C;
}

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

.page-live-scores-streaming-football__security-item {
  background-color: #0D1B2A;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-live-scores-streaming-football__security-item h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live-scores-streaming-football__security-item p {
  color: #E0E0E0;
  font-size: 1.05em;
}

.page-live-scores-streaming-football__support-image {
  margin-top: 50px;
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-live-scores-streaming-football__responsible-gambling {
  background-color: #0D1B2A;
}

.page-live-scores-streaming-football__responsible-gambling p {
  color: #E0E0E0;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-live-scores-streaming-football__responsibility-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-live-scores-streaming-football__responsibility-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #E0E0E0;
  font-size: 1.05em;
}

.page-live-scores-streaming-football__responsibility-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: bold;
  font-size: 1.5em;
  line-height: 1;
}

.page-live-scores-streaming-football__faq {
  background-color: #1A2E4C;
}

.page-live-scores-streaming-football__faq-item {
  background-color: #0D1B2A;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-live-scores-streaming-football__faq-item h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-live-scores-streaming-football__faq-item p {
  color: #E0E0E0;
  font-size: 1em;
}

.page-live-scores-streaming-football__final-cta {
  background: linear-gradient(135deg, #FFD700 0%, #E5C100 100%); /* Gold gradient */
  padding: 60px 20px;
  color: #1A2E4C; /* Dark text on gold background */
}

.page-live-scores-streaming-football__final-cta .page-live-scores-streaming-football__section-title {
  color: #1A2E4C;
}

.page-live-scores-streaming-football__final-cta p {
  color: #333333;
  font-size: 1.2em;
  margin-bottom: 40px;
}

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

.page-live-scores-streaming-football__final-cta .page-live-scores-streaming-football__btn--primary {
  background-color: #1A2E4C;
  color: #FFD700;
}

.page-live-scores-streaming-football__final-cta .page-live-scores-streaming-football__btn--primary:hover {
  background-color: #0D1B2A;
}

.page-live-scores-streaming-football__final-cta .page-live-scores-streaming-football__btn--secondary {
  background-color: transparent;
  color: #1A2E4C;
  border: 2px solid #1A2E4C;
}

.page-live-scores-streaming-football__final-cta .page-live-scores-streaming-football__btn--secondary:hover {
  background-color: #1A2E4C;
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-live-scores-streaming-football__hero-title {
    font-size: 2.8em;
  }
  .page-live-scores-streaming-football__hero-subtitle {
    font-size: 1.1em;
  }
  .page-live-scores-streaming-football__section-title {
    font-size: 2.2em;
  }
  .page-live-scores-streaming-football__app-promo {
    flex-direction: column;
  }
  .page-live-scores-streaming-football__app-content, .page-live-scores-streaming-football__app-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-live-scores-streaming-football__hero {
    padding: 40px 15px;
    min-height: 400px;
  }
  .page-live-scores-streaming-football__hero-title {
    font-size: 2.2em;
  }
  .page-live-scores-streaming-football__hero-subtitle {
    font-size: 1em;
  }
  .page-live-scores-streaming-football__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live-scores-streaming-football__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-live-scores-streaming-football__section {
    padding: 50px 15px;
  }
  .page-live-scores-streaming-football__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-live-scores-streaming-football__grid-item, .page-live-scores-streaming-football__feature-item, .page-live-scores-streaming-football__security-item {
    padding: 25px;
  }
  .page-live-scores-streaming-football__grid-item-title, .page-live-scores-streaming-football__feature-item h3, .page-live-scores-streaming-football__security-item h3 {
    font-size: 1.4em;
  }
  .page-live-scores-streaming-football__steps li {
    padding-left: 60px;
  }
  .page-live-scores-streaming-football__steps li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
    left: 15px;
  }
  .page-live-scores-streaming-football__steps li h3 {
    font-size: 1.6em;
  }
  .page-live-scores-streaming-football__app-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-live-scores-streaming-football__hero-title {
    font-size: 1.8em;
  }
  .page-live-scores-streaming-football__section-title {
    font-size: 1.6em;
  }
  .page-live-scores-streaming-football__grid-container, .page-live-scores-streaming-football__feature-list, .page-live-scores-streaming-football__security-grid, .page-live-scores-streaming-football__league-list {
    grid-template-columns: 1fr;
  }
  .page-live-scores-streaming-football__steps li h3 {
    font-size: 1.4em;
  }
  .page-live-scores-streaming-football__app-title {
    font-size: 1.8em;
  }
  .page-live-scores-streaming-football__final-cta p {
    font-size: 1em;
  }
}