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

/* Reset & Base Styles */
.page-sports-football-betting-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default light text for dark body background */
  background-color: transparent; /* Body background is #000 from shared.css */
  padding-top: 120px; /* Space for fixed header */
}

@media (max-width: 768px) {
  .page-sports-football-betting-guide {
    padding-top: 100px; /* Space for fixed header on mobile */
  }
}

.page-sports-football-betting-guide img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .page-sports-football-betting-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-sports-football-betting-guide__section,
  .page-sports-football-betting-guide__card,
  .page-sports-football-betting-guide__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Color Contrast Classes */
.page-sports-football-betting-guide__dark-bg {
  background-color: #1A1A1A; /* Auxiliary dark color */
  color: #ffffff; /* Light text */
}

.page-sports-football-betting-guide__light-bg {
  background-color: #f8f9fa; /* Light background */
  color: #333333; /* Dark text */
}

/* Sections */
.page-sports-football-betting-guide__section {
  padding: 60px 20px;
}

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

.page-sports-football-betting-guide__container--center {
  text-align: center;
}

.page-sports-football-betting-guide__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD700; /* Gold color for titles */
}

.page-sports-football-betting-guide__subsection-title {
  font-size: 28px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #FFD700; /* Gold color for subtitles */
}

.page-sports-football-betting-guide__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Hero Section */
.page-sports-football-betting-guide__hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A1A1A 0%, #000000 100%); /* Dark gradient for hero */
}

.page-sports-football-betting-guide__hero-content {
  flex: 1;
  max-width: 600px;
}

.page-sports-football-betting-guide__hero-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
}

.page-sports-football-betting-guide__hero-description {
  font-size: 19px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-sports-football-betting-guide__hero-buttons {
  display: flex;
  gap: 20px;
}

.page-sports-football-betting-guide__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-sports-football-betting-guide__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-sports-football-betting-guide__btn-primary,
.page-sports-football-betting-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-sports-football-betting-guide__btn-primary {
  background-color: #FFD700; /* Gold */
  color: #1A1A1A; /* Dark text for gold background */
  border: 2px solid #FFD700;
}

.page-sports-football-betting-guide__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-sports-football-betting-guide__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-sports-football-betting-guide__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-2px);
}

.page-sports-football-betting-guide__btn--center {
  display: block;
  margin: 30px auto 0 auto;
  max-width: 300px;
}

.page-sports-football-betting-guide__btn--large {
  padding: 18px 40px;
  font-size: 20px;
}

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

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

/* Feature Cards */
.page-sports-football-betting-guide__feature-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark bg */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.0s ease, box-shadow 0.0s ease; /* Removed transition for faster generation */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-sports-football-betting-guide__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-sports-football-betting-guide__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-sports-football-betting-guide__feature-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD700; /* Gold */
}

.page-sports-football-betting-guide__feature-description {
  font-size: 16px;
  color: #f0f0f0;
}

/* Bet Type Cards */
.page-sports-football-betting-guide__card--bet-type {
  background-color: #ffffff; /* White background for card */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.0s ease, box-shadow 0.0s ease; /* Removed transition for faster generation */
  color: #333333; /* Dark text for white background */
  border: 1px solid #e0e0e0;
}

.page-sports-football-betting-guide__card--bet-type:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-sports-football-betting-guide__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-sports-football-betting-guide__card-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1A1A1A; /* Dark text */
}

.page-sports-football-betting-guide__card-description {
  font-size: 16px;
  color: #555555;
}

/* Lists */
.page-sports-football-betting-guide__ordered-list,
.page-sports-football-betting-guide__unordered-list {
  list-style-position: inside;
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-sports-football-betting-guide__list-item {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.6;
}

.page-sports-football-betting-guide__unordered-list .page-sports-football-betting-guide__list-item::marker {
  color: #FFD700; /* Gold bullet points */
  font-weight: bold;
}

.page-sports-football-betting-guide__ordered-list .page-sports-football-betting-guide__list-item {
  color: #333333; /* Dark text for light bg */
}

.page-sports-football-betting-guide__dark-bg .page-sports-football-betting-guide__ordered-list .page-sports-football-betting-guide__list-item,
.page-sports-football-betting-guide__dark-bg .page-sports-football-betting-guide__unordered-list .page-sports-football-betting-guide__list-item {
  color: #f0f0f0; /* Light text for dark bg */
}

/* Full Width Images */
.page-sports-football-betting-guide__image--full-width {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.page-sports-football-betting-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark bg */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-sports-football-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  color: #f0f0f0; /* Light text for dark bg */
  background-color: rgba(255, 255, 255, 0.05);
}

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

.page-sports-football-betting-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700; /* Gold for FAQ questions */
  pointer-events: none;
}

.page-sports-football-betting-guide__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700; /* Gold for toggle icon */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

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

.page-sports-football-betting-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #f0f0f0; /* Light text for dark bg */
}

.page-sports-football-betting-guide__faq-item.active .page-sports-football-betting-guide__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 0 0 8px 8px;
}

.page-sports-football-betting-guide__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports-football-betting-guide__hero-section {
    flex-direction: column;
    text-align: center;
  }
  .page-sports-football-betting-guide__hero-content {
    max-width: 100%;
  }
  .page-sports-football-betting-guide__hero-title {
    font-size: 40px;
  }
  .page-sports-football-betting-guide__hero-description {
    font-size: 18px;
  }
  .page-sports-football-betting-guide__hero-buttons {
    justify-content: center;
  }
  .page-sports-football-betting-guide__hero-image-wrapper {
    margin-top: 40px;
  }
  .page-sports-football-betting-guide__section-title {
    font-size: 32px;
  }
  .page-sports-football-betting-guide__subsection-title {
    font-size: 26px;
  }
  .page-sports-football-betting-guide__text-block, .page-sports-football-betting-guide__list-item {
    font-size: 16px;
  }
  .page-sports-football-betting-guide__feature-title {
    font-size: 20px;
  }
  .page-sports-football-betting-guide__card-title {
    font-size: 18px;
  }
  .page-sports-football-betting-guide__faq-question h3 {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-sports-football-betting-guide__section {
    padding: 40px 15px;
  }
  .page-sports-football-betting-guide__hero-section {
    padding: 60px 15px;
  }
  .page-sports-football-betting-guide__hero-title {
    font-size: 32px;
  }
  .page-sports-football-betting-guide__hero-description {
    font-size: 16px;
  }
  .page-sports-football-betting-guide__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports-football-betting-guide__btn-primary,
  .page-sports-football-betting-guide__btn-secondary {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
  }
  .page-sports-football-betting-guide__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-sports-football-betting-guide__subsection-title {
    font-size: 22px;
    margin-top: 30px;
  }
  .page-sports-football-betting-guide__grid-3-cols,
  .page-sports-football-betting-guide__grid-2-cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-sports-football-betting-guide__feature-card,
  .page-sports-football-betting-guide__card--bet-type {
    padding: 20px;
  }
  .page-sports-football-betting-guide__feature-icon {
    width: 80px;
    height: 80px;
  }
  .page-sports-football-betting-guide__feature-title {
    font-size: 18px;
  }
  .page-sports-football-betting-guide__card-image {
    height: 180px;
  }
  .page-sports-football-betting-guide__card-title {
    font-size: 16px;
  }
  .page-sports-football-betting-guide__faq-question {
    padding: 15px 20px;
  }
  .page-sports-football-betting-guide__faq-question h3 {
    font-size: 16px;
  }
  .page-sports-football-betting-guide__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .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: 15px 20px !important;
  }
  .page-sports-football-betting-guide__faq-answer p {
    font-size: 15px;
  }
}