.page-sports-football-live {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #ffffff;
}

.page-sports-football-live__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-sports-football-live__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-sports-football-live__section-subtitle {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

.page-sports-football-live__btn-primary {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
}

.page-sports-football-live__btn-primary:hover {
  background-color: #1a8cc4;
}

.page-sports-football-live__btn-secondary {
  display: inline-block;
  background-color: #ffffff;
  color: #26A9E0;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: 2px solid #26A9E0;
  box-sizing: border-box;
}

.page-sports-football-live__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-sports-football-live__inline-link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-sports-football-live__inline-link:hover {
  text-decoration: underline;
}

.page-sports-football-live__hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  box-sizing: border-box;
}

.page-sports-football-live__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-sports-football-live__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.page-sports-football-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-sports-football-live__hero-description {
  font-size: 1.5em;
  margin-bottom: 40px;
}

.page-sports-football-live__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-sports-football-live__light-text {
  color: #ffffff;
}

.page-sports-football-live__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-sports-football-live__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* About Section */
.page-sports-football-live__about-section {
  padding: 80px 0;
}

.page-sports-football-live__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-sports-football-live__text-block p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-sports-football-live__image-wrapper {
  text-align: center;
}

.page-sports-football-live__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Leagues Section */
.page-sports-football-live__leagues-section {
  padding: 80px 0;
}

.page-sports-football-live__leagues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports-football-live__league-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
  color: #333333;
}

.page-sports-football-live__league-card:hover {
  transform: translateY(-10px);
}

.page-sports-football-live__league-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-sports-football-live__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-sports-football-live__league-card p {
  font-size: 1em;
  color: #555555;
}

.page-sports-football-live__call-to-action {
  text-align: center;
  margin-top: 50px;
  font-size: 1.2em;
}

/* Features Section */
.page-sports-football-live__features-section {
  padding: 80px 0;
}

.page-sports-football-live__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports-football-live__feature-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
  color: #333333;
}

.page-sports-football-live__feature-card:hover {
  transform: translateY(-10px);
}

.page-sports-football-live__feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 5px;
}

/* Betting Guide Section */
.page-sports-football-live__betting-guide-section {
  padding: 80px 0;
}

.page-sports-football-live__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports-football-live__step-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  color: #333333;
}

.page-sports-football-live__step-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 20px;
  border-radius: 5px;
}

/* Promotions Section */
.page-sports-football-live__promotions-section {
  padding: 80px 0;
}

.page-sports-football-live__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports-football-live__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  color: #333333;
}

.page-sports-football-live__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 5px;
}

/* FAQ Section */
.page-sports-football-live__faq-section {
  padding: 80px 0;
}

.page-sports-football-live__faq-list {
  margin-top: 40px;
}

.page-sports-football-live__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  color: #333333;
}

.page-sports-football-live__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
  list-style: none; /* For details tag */
}

.page-sports-football-live__faq-question::-webkit-details-marker {
  display: none; /* For details tag */
}

.page-sports-football-live__faq-toggle {
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-sports-football-live__faq-item[open] .page-sports-football-live__faq-toggle {
  transform: rotate(45deg);
}

.page-sports-football-live__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #555555;
  border-top: 1px solid #f0f0f0;
}

/* CTA Section */
.page-sports-football-live__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-sports-football-live__cta-content {
  max-width: 800px;
}

.page-sports-football-live__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports-football-live__hero-title {
    font-size: 3em;
  }
  .page-sports-football-live__hero-description {
    font-size: 1.3em;
  }
  .page-sports-football-live__section-title {
    font-size: 2em;
  }
  .page-sports-football-live__content-grid {
    grid-template-columns: 1fr;
  }
  .page-sports-football-live__leagues-grid,
  .page-sports-football-live__features-grid,
  .page-sports-football-live__guide-steps,
  .page-sports-football-live__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-sports-football-live {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-sports-football-live__hero-section {
    height: auto;
    min-height: 400px;
    padding: 60px 20px; /* Adjust padding for mobile */
    padding-top: var(--header-offset, 120px) !important; /* Re-apply for mobile */
  }
  .page-sports-football-live__hero-title {
    font-size: 2.2em;
  }
  .page-sports-football-live__hero-description {
    font-size: 1.1em;
  }
  .page-sports-football-live__hero-buttons,
  .page-sports-football-live__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports-football-live__btn-primary,
  .page-sports-football-live__btn-secondary,
  .page-sports-football-live__cta-button,
  .page-sports-football-live a[class*="button"],
  .page-sports-football-live a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-sports-football-live__section-title {
    font-size: 1.8em;
  }
  .page-sports-football-live__section-subtitle {
    font-size: 1em;
  }
  .page-sports-football-live__container,
  .page-sports-football-live__cta-content {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-sports-football-live__about-section,
  .page-sports-football-live__leagues-section,
  .page-sports-football-live__features-section,
  .page-sports-football-live__betting-guide-section,
  .page-sports-football-live__promotions-section,
  .page-sports-football-live__faq-section,
  .page-sports-football-live__cta-section {
    padding: 40px 0;
  }
  .page-sports-football-live img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-sports-football-live__image-wrapper,
  .page-sports-football-live__league-image,
  .page-sports-football-live__feature-image,
  .page-sports-football-live__step-image,
  .page-sports-football-live__promo-image {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-sports-football-live__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-sports-football-live__faq-answer {
    padding: 15px 20px;
  }
  .page-sports-football-live__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Color Contrast Fixes (if necessary) */
.page-sports-football-live__dark-bg .page-sports-football-live__section-title,
.page-sports-football-live__dark-bg .page-sports-football-live__section-subtitle {
  color: #ffffff; /* Ensure white text on dark blue background */
}

.page-sports-football-live__light-bg .page-sports-football-live__card-title {
  color: #26A9E0;
}

.page-sports-football-live__light-bg p,
.page-sports-football-live__light-bg li {
  color: #333333;
}