/* style/sports-football-betting-guide.css */
.page-sports-football-betting-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--body-bg-color);
}

.page-sports-football-betting-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 60px 20px;
  padding-top: 10px; /* Small decorative top padding */
  text-align: center;
  overflow: hidden;
}

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

.page-sports-football-betting-guide__hero-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  max-width: 900px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
}

.page-sports-football-betting-guide__hero-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 100%; /* Ensure H1 doesn't overflow */
}

.page-sports-football-betting-guide__hero-description {
  font-size: 1.1em;
  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 {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons adapt */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-sports-football-betting-guide__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

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

.page-sports-football-betting-guide__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-sports-football-betting-guide__btn-secondary:hover {
  background-color: #e0e0e0;
}

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

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

.page-sports-football-betting-guide__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--heading-color);
}

.page-sports-football-betting-guide__introduction-section,
.page-sports-football-betting-guide__bet-types-section,
.page-sports-football-betting-guide__promotions-section,
.page-sports-football-betting-guide__responsible-gaming-section,
.page-sports-football-betting-guide__conclusion-section {
  padding: 60px 0;
}

.page-sports-football-betting-guide__guide-section,
.page-sports-football-betting-guide__strategy-section,
.page-sports-football-betting-guide__features-section,
.page-sports-football-betting-guide__faq-section {
  padding: 60px 0;
}

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

.page-sports-football-betting-guide__columns {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-sports-football-betting-guide__column-item {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  color: #FFFFFF;
  box-sizing: border-box;
}

.page-sports-football-betting-guide__column-item .page-sports-football-betting-guide__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-sports-football-betting-guide__column-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-sports-football-betting-guide__list {
  list-style-type: decimal;
  text-align: left;
  margin: 0 auto 20px;
  padding-left: 20px;
  max-width: 400px;
}

.page-sports-football-betting-guide__list li {
  margin-bottom: 10px;
}

.page-sports-football-betting-guide__link {
  color: #26A9E0;
  text-decoration: none;
}

.page-sports-football-betting-guide__link:hover {
  text-decoration: underline;
}

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

.page-sports-football-betting-guide__card {
  background-color: #FFFFFF;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-sports-football-betting-guide__card-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-sports-football-betting-guide__card-description {
  font-size: 1em;
  line-height: 1.6;
  flex-grow: 1;
}

.page-sports-football-betting-guide__card--promotion .page-sports-football-betting-guide__image {
  width: 100%;
  height: 225px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-sports-football-betting-guide__list--strategy {
  list-style-type: disc;
  text-align: left;
  padding-left: 20px;
  color: #FFFFFF;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-sports-football-betting-guide__list--strategy li {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-sports-football-betting-guide__highlight-text {
  color: #26A9E0;
}

.page-sports-football-betting-guide__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-sports-football-betting-guide__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
  width: 200px; /* Force larger display size */
  height: 200px; /* Force larger display size */
}

.page-sports-football-betting-guide__feature-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-sports-football-betting-guide__feature-description {
  font-size: 0.95em;
}

.page-sports-football-betting-guide__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports-football-betting-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFFFFF;
}

.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: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

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

.page-sports-football-betting-guide__faq-question::marker {
  display: none;
}

.page-sports-football-betting-guide__faq-qtext {
  flex-grow: 1;
  text-align: left;
  color: #FFFFFF;
}

.page-sports-football-betting-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: #26A9E0;
}

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

.page-sports-football-betting-guide__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1.05em;
  text-align: justify;
  color: #F0F0F0;
}

/* Color Contrast System */
:root {
  --body-bg-color: #0d0d0d; /* Assuming a dark body background from shared.css */
  --text-color: #f0f0f0;
  --heading-color: #FFFFFF;
}

.page-sports-football-betting-guide {
  color: var(--text-color); /* Default text color for the page */
}

.page-sports-football-betting-guide__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-sports-football-betting-guide__light-bg .page-sports-football-betting-guide__section-title,
.page-sports-football-betting-guide__light-bg .page-sports-football-betting-guide__card-title {
  color: #26A9E0;
}

.page-sports-football-betting-guide__dark-bg {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-sports-football-betting-guide__dark-bg .page-sports-football-betting-guide__section-title {
  color: #FFFFFF;
}

.page-sports-football-betting-guide__highlight {
  color: #EA7C07; /* Login color for highlight */
}

/* Ensure content area images display at least 200x200 */
.page-sports-football-betting-guide__introduction-section img,
.page-sports-football-betting-guide__guide-section img,
.page-sports-football-betting-guide__bet-types-section img,
.page-sports-football-betting-guide__strategy-section img,
.page-sports-football-betting-guide__promotions-section img,
.page-sports-football-betting-guide__features-section img,
.page-sports-football-betting-guide__responsible-gaming-section img,
.page-sports-football-betting-guide__faq-section img,
.page-sports-football-betting-guide__conclusion-section img {
  min-width: 200px;
  min-height: 200px;
  width: auto;
  height: auto;
}

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

@media (max-width: 768px) {
  .page-sports-football-betting-guide__hero-section {
    min-height: 400px;
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-sports-football-betting-guide__hero-content {
    padding: 20px;
  }

  .page-sports-football-betting-guide__hero-title {
    font-size: 1.8em;
    line-height: 1.3;
  }

  .page-sports-football-betting-guide__hero-description {
    font-size: 1em;
  }

  .page-sports-football-betting-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-sports-football-betting-guide__btn-primary,
  .page-sports-football-betting-guide__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 10px 15px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-sports-football-betting-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-sports-football-betting-guide__introduction-section,
  .page-sports-football-betting-guide__bet-types-section,
  .page-sports-football-betting-guide__promotions-section,
  .page-sports-football-betting-guide__responsible-gaming-section,
  .page-sports-football-betting-guide__conclusion-section,
  .page-sports-football-betting-guide__guide-section,
  .page-sports-football-betting-guide__strategy-section,
  .page-sports-football-betting-guide__features-section,
  .page-sports-football-betting-guide__faq-section {
    padding: 40px 0;
  }

  .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__columns {
    flex-direction: column;
    gap: 30px;
  }

  .page-sports-football-betting-guide__column-item {
    max-width: 100%;
  }

  .page-sports-football-betting-guide__grid {
    grid-template-columns: 1fr;
  }

  .page-sports-football-betting-guide__card,
  .page-sports-football-betting-guide__feature-item {
    padding: 20px;
  }

  .page-sports-football-betting-guide__card--promotion .page-sports-football-betting-guide__image {
    height: auto;
  }

  .page-sports-football-betting-guide__list--strategy,
  .page-sports-football-betting-guide__faq-list {
    padding-left: 0;
    max-width: 100%;
  }

  .page-sports-football-betting-guide__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-sports-football-betting-guide__faq-answer {
    padding: 10px 20px 15px;
    font-size: 1em;
  }

  /* Mobile image and video responsiveness */
  .page-sports-football-betting-guide img,
  .page-sports-football-betting-guide video,
  .page-sports-football-betting-guide__video {
    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__video-section,
  .page-sports-football-betting-guide__video-container,
  .page-sports-football-betting-guide__video-wrapper,
  .page-sports-football-betting-guide__cta-buttons,
  .page-sports-football-betting-guide__button-group,
  .page-sports-football-betting-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-sports-football-betting-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

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

/* Ensure .page-sports-football-betting-guide__video-container has width: 100% on desktop */
.page-sports-football-betting-guide__video-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Specific colors */
.page-sports-football-betting-guide__highlight {
  color: #EA7C07;
}
.page-sports-football-betting-guide__login-button {
  background-color: #EA7C07;
  color: #FFFFFF;
}
.page-sports-football-betting-guide__background-color {
  background-color: #FFFFFF;
}
.page-sports-football-betting-guide__black-color {
  color: #000000;
}