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

:root {
  --primary-color: #FFD700;
  --secondary-color: #1A1A1A;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-light: #f8f9fa;
  --background-dark: #1A1A1A; /* Assuming shared.css body background is dark */
  --card-background-dark: rgba(255, 255, 255, 0.1);
  --card-background-light: #ffffff;
}

.page-sports-football-betting-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for the page, assuming dark body background */
  background-color: var(--background-dark); /* Ensure consistency with body background */
}

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

/* Hero Section */
.page-sports-football-betting-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not covered by fixed header */
  overflow: hidden;
  background-color: var(--background-dark); /* Dark background for hero */
  color: var(--text-light);
}

.page-sports-football-betting-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-sports-football-betting-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-sports-football-betting-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-sports-football-betting-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-sports-football-betting-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
}

/* Buttons */
.page-sports-football-betting-guide__btn-primary,
.page-sports-football-betting-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 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);
  margin-right: 15px;
}

.page-sports-football-betting-guide__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.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__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Section Titles */
.page-sports-football-betting-guide__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: var(--primary-color);
}

.page-sports-football-betting-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

/* General Section Styling */
.page-sports-football-betting-guide__introduction-section,
.page-sports-football-betting-guide__guide-section,
.page-sports-football-betting-guide__strategy-section,
.page-sports-football-betting-guide__faq-section {
  padding: 60px 0;
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-sports-football-betting-guide__why-choose-section,
.page-sports-football-betting-guide__betting-types-section,
.page-sports-football-betting-guide__video-section,
.page-sports-football-betting-guide__cta-section {
  padding: 60px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

/* Card Styling */
.page-sports-football-betting-guide__feature-card,
.page-sports-football-betting-guide__step-card,
.page-sports-football-betting-guide__type-card,
.page-sports-football-betting-guide__strategy-item {
  background-color: var(--card-background-dark);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--text-light);
  height: 100%; /* Ensure cards have equal height in a row */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-sports-football-betting-guide__feature-card .page-sports-football-betting-guide__card-title,
.page-sports-football-betting-guide__step-card .page-sports-football-betting-guide__card-title,
.page-sports-football-betting-guide__type-card .page-sports-football-betting-guide__card-title,
.page-sports-football-betting-guide__strategy-item .page-sports-football-betting-guide__item-title {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-sports-football-betting-guide__feature-card p,
.page-sports-football-betting-guide__step-card p,
.page-sports-football-betting-guide__type-card p,
.page-sports-football-betting-guide__strategy-item p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.page-sports-football-betting-guide__content-image,
.page-sports-football-betting-guide__card-image,
.page-sports-football-betting-guide__item-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Grids */
.page-sports-football-betting-guide__features-grid,
.page-sports-football-betting-guide__steps-grid,
.page-sports-football-betting-guide__types-grid,
.page-sports-football-betting-guide__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

/* Video Section */
.page-sports-football-betting-guide__video-section .page-sports-football-betting-guide__section-title,
.page-sports-football-betting-guide__video-section .page-sports-football-betting-guide__text-block {
  color: var(--text-light);
}

.page-sports-football-betting-guide__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  max-width: 100%;
  box-sizing: border-box;
}

.page-sports-football-betting-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
}

/* FAQ Section */
.page-sports-football-betting-guide__faq-list {
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports-football-betting-guide__faq-item {
  background-color: var(--card-background-light);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-dark);
}

.page-sports-football-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
}

.page-sports-football-betting-guide__faq-question:hover {
  background-color: #e6e6e6;
}

.page-sports-football-betting-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-sports-football-betting-guide__faq-item.active .page-sports-football-betting-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-sports-football-betting-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-dark);
}

.page-sports-football-betting-guide__faq-item.active .page-sports-football-betting-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-sports-football-betting-guide__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

/* CTA Section */
.page-sports-football-betting-guide__cta-section {
  text-align: center;
  background-color: var(--background-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.page-sports-football-betting-guide__cta-section .page-sports-football-betting-guide__section-title,
.page-sports-football-betting-guide__cta-section .page-sports-football-betting-guide__text-block {
  color: var(--text-light);
}

.page-sports-football-betting-guide__cta-content {
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports-football-betting-guide__hero-title {
    font-size: 3em;
  }
  .page-sports-football-betting-guide__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-sports-football-betting-guide__hero-section {
    min-height: 500px;
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure content is not covered by fixed header on mobile */
  }
  .page-sports-football-betting-guide__hero-title {
    font-size: 2.5em;
  }
  .page-sports-football-betting-guide__hero-description {
    font-size: 1em;
  }
  .page-sports-football-betting-guide__btn-primary,
  .page-sports-football-betting-guide__btn-secondary {
    width: 100% !important;
    margin: 0 !important;
    margin-bottom: 15px !important;
    padding: 12px 20px;
  }
  .page-sports-football-betting-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  /* General mobile padding */
  .page-sports-football-betting-guide__container {
    padding: 0 15px;
  }
  .page-sports-football-betting-guide__introduction-section,
  .page-sports-football-betting-guide__guide-section,
  .page-sports-football-betting-guide__strategy-section,
  .page-sports-football-betting-guide__faq-section,
  .page-sports-football-betting-guide__why-choose-section,
  .page-sports-football-betting-guide__betting-types-section,
  .page-sports-football-betting-guide__video-section,
  .page-sports-football-betting-guide__cta-section {
    padding: 40px 0;
  }
  .page-sports-football-betting-guide__section-title {
    font-size: 1.8em;
  }
  .page-sports-football-betting-guide__text-block {
    font-size: 1em;
  }

  /* Images responsive */
  .page-sports-football-betting-guide img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  /* Content area image minimum size check (already covered by global img rule) */
  .page-sports-football-betting-guide__content-image, 
  .page-sports-football-betting-guide__card-image, 
  .page-sports-football-betting-guide__item-image {
    min-width: 200px !important;
    min-height: 200px !important;
  }

  /* Video responsive */
  .page-sports-football-betting-guide__video-wrapper {
    padding-bottom: 56.25% !important;
    margin: 20px auto !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-sports-football-betting-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
  }

  /* Card responsive */
  .page-sports-football-betting-guide__feature-card,
  .page-sports-football-betting-guide__step-card,
  .page-sports-football-betting-guide__type-card,
  .page-sports-football-betting-guide__strategy-item {
    padding: 20px;
  }
  .page-sports-football-betting-guide__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-sports-football-betting-guide__faq-answer {
    padding: 0 20px;
  }
  .page-sports-football-betting-guide__faq-item.active .page-sports-football-betting-guide__faq-answer {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .page-sports-football-betting-guide__hero-title {
    font-size: 2em;
  }
  .page-sports-football-betting-guide__section-title {
    font-size: 1.5em;
  }
}

/* Color Contrast Fixes (if needed) */
.page-sports-football-betting-guide__dark-bg {
  color: var(--text-light); /* Deep background with light text */
}

.page-sports-football-betting-guide__light-bg {
  color: var(--text-dark); /* Light background with dark text */
}