/* style/sports-football-betting.css */
.page-sports-football-betting {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #FFFFFF;
}

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

.page-sports-football-betting__hero-section {
  position: relative;
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 0;
  overflow: hidden;
}

.page-sports-football-betting__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

.page-sports-football-betting__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 450px;
}

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

.page-sports-football-betting__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #FFFFFF;
}

.page-sports-football-betting__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-sports-football-betting__button {
  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;
  font-size: 1.1em;
}

.page-sports-football-betting__button--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-sports-football-betting__button--primary:hover {
  background-color: #e0a53a;
  border-color: #e0a53a;
}

.page-sports-football-betting__button--secondary {
  background-color: transparent;
  color: #FFFFFF; /* Register color */
  border: 2px solid #FFFFFF;
}

.page-sports-football-betting__button--secondary:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.page-sports-football-betting__button--promo {
  background-color: #FCBC45;
  color: #000000;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
}

.page-sports-football-betting__button--promo:hover {
  background-color: #e0a53a;
}

.page-sports-football-betting__button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-sports-football-betting__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

.page-sports-football-betting__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-sports-football-betting__about-section,
.page-sports-football-betting__leagues-section,
.page-sports-football-betting__betting-types-section,
.page-sports-football-betting__tips-section,
.page-sports-football-betting__promotions-section,
.page-sports-football-betting__mobile-section,
.page-sports-football-betting__responsible-gaming-section,
.page-sports-football-betting__faq-section,
.page-sports-football-betting__cta-section {
  padding: 80px 0;
}

.page-sports-football-betting__about-section {
  background-color: #f8f8f8;
}

.page-sports-football-betting__features-grid,
.page-sports-football-betting__leagues-grid,
.page-sports-football-betting__types-grid,
.page-sports-football-betting__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-sports-football-betting__feature-card,
.page-sports-football-betting__league-card,
.page-sports-football-betting__type-card,
.page-sports-football-betting__tip-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-sports-football-betting__feature-card:hover,
.page-sports-football-betting__league-card:hover,
.page-sports-football-betting__type-card:hover,
.page-sports-football-betting__tip-card:hover {
  transform: translateY(-5px);
}

.page-sports-football-betting__feature-title,
.page-sports-football-betting__league-title,
.page-sports-football-betting__type-title,
.page-sports-football-betting__tip-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-sports-football-betting__feature-description,
.page-sports-football-betting__league-description,
.page-sports-football-betting__type-description,
.page-sports-football-betting__tip-description {
  color: #555555;
}

.page-sports-football-betting__live-betting-section,
.page-sports-football-betting__mobile-section {
  background-color: #000000;
  color: #FFFFFF;
}

.page-sports-football-betting__live-betting-section .page-sports-football-betting__section-title,
.page-sports-football-betting__mobile-section .page-sports-football-betting__section-title {
  color: #FFFFFF;
}

.page-sports-football-betting__live-betting-section .page-sports-football-betting__section-intro,
.page-sports-football-betting__mobile-section .page-sports-football-betting__section-intro {
  color: #f0f0f0;
}

.page-sports-football-betting__live-betting-content,
.page-sports-football-betting__mobile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-sports-football-betting__live-betting-text,
.page-sports-football-betting__mobile-text {
  flex: 1;
  min-width: 300px;
}

.page-sports-football-betting__live-betting-image-wrapper,
.page-sports-football-betting__mobile-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-sports-football-betting__live-betting-image,
.page-sports-football-betting__mobile-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce min-size */
  min-height: 200px; /* Enforce min-size */
}

.page-sports-football-betting__live-betting-subtitle,
.page-sports-football-betting__mobile-subtitle {
  font-size: 2em;
  color: #FCBC45;
  margin-bottom: 20px;
}

.page-sports-football-betting__live-betting-text p,
.page-sports-football-betting__mobile-text p {
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-sports-football-betting__tips-cta,
.page-sports-football-betting__promotions-cta,
.page-sports-football-betting__faq-cta {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #555555;
}

.page-sports-football-betting__tips-cta a,
.page-sports-football-betting__promotions-cta a,
.page-sports-football-betting__faq-cta a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-sports-football-betting__tips-cta a:hover,
.page-sports-football-betting__promotions-cta a:hover,
.page-sports-football-betting__faq-cta a:hover {
  text-decoration: underline;
}

.page-sports-football-betting__promotions-section {
  background-color: #f8f8f8;
}

.page-sports-football-betting__promo-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-sports-football-betting__promo-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sports-football-betting__promo-image {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min-size */
  min-height: 200px; /* Enforce min-size */
}

.page-sports-football-betting__promo-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-sports-football-betting__promo-description {
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-sports-football-betting__responsible-gaming-content {
  max-width: 800px;
  margin: 40px auto 0 auto;
  text-align: center;
}

.page-sports-football-betting__responsible-gaming-content p {
  margin-bottom: 20px;
  color: #555555;
}

.page-sports-football-betting__responsible-gaming-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
  display: inline-block;
}

.page-sports-football-betting__responsible-gaming-list li {
  background-color: #f0f0f0;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-left: 4px solid #FCBC45;
  color: #333333;
  border-radius: 4px;
}

.page-sports-football-betting__responsible-gaming-list strong {
  color: #000000;
}

.page-sports-football-betting__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-sports-football-betting__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
}

.page-sports-football-betting__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-sports-football-betting__faq-answer {
  color: #555555;
}

.page-sports-football-betting__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-sports-football-betting__faq-answer a:hover {
  text-decoration: underline;
}

.page-sports-football-betting__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-sports-football-betting__cta-section .page-sports-football-betting__section-title,
.page-sports-football-betting__cta-section .page-sports-football-betting__section-intro {
  color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports-football-betting__hero-title {
    font-size: 3em;
  }
  .page-sports-football-betting__hero-description {
    font-size: 1.2em;
  }
  .page-sports-football-betting__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-sports-football-betting__hero-section {
    padding: 60px 0;
  }
  .page-sports-football-betting__hero-title {
    font-size: 2.5em;
  }
  .page-sports-football-betting__hero-description {
    font-size: 1em;
  }
  .page-sports-football-betting__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports-football-betting__button {
    width: 100%;
    max-width: 300px;
  }
  .page-sports-football-betting__live-betting-content,
  .page-sports-football-betting__mobile-content {
    flex-direction: column;
  }
  .page-sports-football-betting__live-betting-image-wrapper,
  .page-sports-football-betting__mobile-image-wrapper {
    order: -1; /* Image above text on mobile */
  }
  .page-sports-football-betting__promo-card {
    max-width: none;
  }
  .page-sports-football-betting__live-betting-image,
  .page-sports-football-betting__mobile-image,
  .page-sports-football-betting__promo-image {
    max-width: 100%;
    height: auto;
    max-height: none; /* Allow images to scale */
  }
  .page-sports-football-betting__container {
    padding: 0 15px;
  }
  /* Mobile content area images must not overflow */
  .page-sports-football-betting img {
    max-width: 100%;
    height: auto;
  }
  .page-sports-football-betting__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
  }
}

@media (max-width: 480px) {
  .page-sports-football-betting__hero-title {
    font-size: 2em;
  }
  .page-sports-football-betting__section-title {
    font-size: 1.8em;
  }
  .page-sports-football-betting__feature-title,
  .page-sports-football-betting__league-title,
  .page-sports-football-betting__type-title,
  .page-sports-football-betting__tip-title {
    font-size: 1.3em;
  }
  .page-sports-football-betting__live-betting-subtitle,
  .page-sports-football-betting__mobile-subtitle {
    font-size: 1.8em;
  }
  .page-sports-football-betting__faq-question {
    font-size: 1.2em;
  }
}