/* style/sports-football-betting-guide.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --login-button-color: #EA7C07;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #ffffff;
  --background-dark: #000000;
}

.page-sports-football-betting-guide {
  color: var(--text-light); /* Assuming body background is dark */
  background-color: var(--background-dark); /* Fallback, but body will use shared var(--dark-bg-1) */
}

.page-sports-football-betting-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
  background-color: var(--background-dark);
}

.page-sports-football-betting-guide__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-sports-football-betting-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-sports-football-betting-guide__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  z-index: 1;
}

.page-sports-football-betting-guide__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-sports-football-betting-guide__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

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

.page-sports-football-betting-guide__btn-primary,
.page-sports-football-betting-guide__btn-secondary {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-sports-football-betting-guide__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-sports-football-betting-guide__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.page-sports-football-betting-guide__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-sports-football-betting-guide__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-sports-football-betting-guide__section {
  padding: 60px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-sports-football-betting-guide__section-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--secondary-color);
  line-height: 1.3;
}

.page-sports-football-betting-guide__sub-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-sports-football-betting-guide__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.page-sports-football-betting-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-sports-football-betting-guide__image-content-block {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-sports-football-betting-guide__content-image {
  width: 50%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-sports-football-betting-guide__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-sports-football-betting-guide__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.page-sports-football-betting-guide__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2em;
}

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

.page-sports-football-betting-guide__card {
  background-color: rgba(255, 255, 255, 0.08); /* Light on dark background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-sports-football-betting-guide__card-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-sports-football-betting-guide__card-text {
  font-size: 1em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.page-sports-football-betting-guide__step-by-step {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.page-sports-football-betting-guide__step-card {
  flex: 1 1 calc(33% - 20px);
  min-width: 280px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-sports-football-betting-guide__step-title {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-sports-football-betting-guide__step-text {
  font-size: 1em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.page-sports-football-betting-guide__grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-sports-football-betting-guide__strategy-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

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

.page-sports-football-betting-guide__strategy-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-sports-football-betting-guide__strategy-text {
  font-size: 1em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.page-sports-football-betting-guide__dark-section {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-sports-football-betting-guide__dark-section .page-sports-football-betting-guide__section-title {
  color: var(--secondary-color);
}

.page-sports-football-betting-guide__dark-section .page-sports-football-betting-guide__text-block {
  color: rgba(255, 255, 255, 0.9);
}

.page-sports-football-betting-guide__feature-card {
  background-color: rgba(255, 255, 255, 0.2); /* Slightly lighter card on brand color background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
  height: 100%;
}

.page-sports-football-betting-guide__feature-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-sports-football-betting-guide__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.page-sports-football-betting-guide__faq-section {
  background-color: var(--background-dark);
  color: var(--text-light);
}

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

.page-sports-football-betting-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-light);
}

.page-sports-football-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  color: var(--secondary-color);
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-sports-football-betting-guide__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

.page-sports-football-betting-guide__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-sports-football-betting-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--primary-color);
}

.page-sports-football-betting-guide__faq-answer {
  padding: 0 30px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.page-sports-football-betting-guide__faq-item[open] .page-sports-football-betting-guide__faq-question {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-sports-football-betting-guide__conclusion .page-sports-football-betting-guide__cta-buttons--center {
  margin-top: 40px;
}

.page-sports-football-betting-guide__cta-buttons--center {
  justify-content: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-sports-football-betting-guide__main-title {
    font-size: 2.8em;
  }
  .page-sports-football-betting-guide__section-title {
    font-size: 2em;
  }
  .page-sports-football-betting-guide__grid-2-col {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-sports-football-betting-guide {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-sports-football-betting-guide__hero-section {
    padding-bottom: 40px;
  }
  .page-sports-football-betting-guide__hero-image-wrapper {
    max-height: 400px;
  }
  .page-sports-football-betting-guide__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-sports-football-betting-guide__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-sports-football-betting-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-sports-football-betting-guide__btn-primary,
  .page-sports-football-betting-guide__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-sports-football-betting-guide__section {
    padding: 40px 0;
  }
  .page-sports-football-betting-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-sports-football-betting-guide__sub-title {
    font-size: 1.4em;
    margin-top: 30px;
  }
  .page-sports-football-betting-guide__text-block {
    font-size: 0.95em;
  }
  .page-sports-football-betting-guide__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-sports-football-betting-guide__image-content-block {
    flex-direction: column;
    gap: 20px;
  }
  .page-sports-football-betting-guide__content-image {
    width: 100%;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-sports-football-betting-guide__grid-3-col,
  .page-sports-football-betting-guide__grid-2-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-sports-football-betting-guide__step-card {
    flex: 1 1 100%;
    min-width: unset;
  }
  .page-sports-football-betting-guide__strategy-image {
    height: 200px;
  }
  .page-sports-football-betting-guide__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-sports-football-betting-guide__faq-answer {
    padding: 0 20px 15px;
  }

  /* Mobile image and container overflow fixes */
  .page-sports-football-betting-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-sports-football-betting-guide__section,
  .page-sports-football-betting-guide__card,
  .page-sports-football-betting-guide__container,
  .page-sports-football-betting-guide__step-card,
  .page-sports-football-betting-guide__strategy-item,
  .page-sports-football-betting-guide__feature-card,
  .page-sports-football-betting-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* padding-left: 15px; padding-right: 15px; */ /* Handled by .page-sports-football-betting-guide__container */
  }
  .page-sports-football-betting-guide__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}