/* style/resources-how-to-read-football-odds.css */

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-dark: #0a0a0a;
  --background-light: #ffffff;
  --register-btn-bg: #C30808;
  --login-btn-bg: #C30808;
  --register-login-text: #FFFF00;
}

.page-resources-how-to-read-football-odds {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--background-dark); /* Inherits from body, but ensures consistency */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-resources-how-to-read-football-odds__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-how-to-read-football-odds__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--text-light);
}

.page-resources-how-to-read-football-odds__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-how-to-read-football-odds__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-resources-how-to-read-football-odds__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}

.page-resources-how-to-read-football-odds__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--secondary-color);
}

.page-resources-how-to-read-football-odds__intro-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.page-resources-how-to-read-football-odds__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-how-to-read-football-odds__btn-primary,
.page-resources-how-to-read-football-odds__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-resources-how-to-read-football-odds__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-how-to-read-football-odds__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
}

.page-resources-how-to-read-football-odds__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-resources-how-to-read-football-odds__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-resources-how-to-read-football-odds__btn-register {
  background-color: var(--register-btn-bg);
  color: var(--register-login-text);
  border-color: var(--register-btn-bg);
}

.page-resources-how-to-read-football-odds__btn-register:hover {
  background-color: darken(var(--register-btn-bg), 10%);
}

.page-resources-how-to-read-football-odds__btn-login {
  background-color: var(--login-btn-bg);
  color: var(--register-login-text);
  border-color: var(--login-btn-bg);
}

.page-resources-how-to-read-football-odds__btn-login:hover {
  background-color: darken(var(--login-btn-bg), 10%);
}

/* Content Area */
.page-resources-how-to-read-football-odds__content-area {
  padding: 60px 0;
}

.page-resources-how-to-read-football-odds__light-bg {
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-resources-how-to-read-football-odds__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-how-to-read-football-odds__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: var(--text-dark);
}

.page-resources-how-to-read-football-odds__section-title--white {
  color: var(--text-light);
}

.page-resources-how-to-read-football-odds__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-how-to-read-football-odds__paragraph--white {
  color: var(--text-light);
}

.page-resources-how-to-read-football-odds__inline-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-resources-how-to-read-football-odds__inline-link:hover {
  text-decoration: underline;
}

.page-resources-how-to-read-football-odds__inline-link--yellow {
  color: var(--register-login-text);
}

.page-resources-how-to-read-football-odds__inline-link--yellow:hover {
  text-decoration: underline;
}

.page-resources-how-to-read-football-odds__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-read-football-odds__feature-item {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: var(--text-dark);
}

.page-resources-how-to-read-football-odds__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-resources-how-to-read-football-odds__feature-description {
  font-size: 1em;
  color: var(--text-dark);
}

.page-resources-how-to-read-football-odds__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-resources-how-to-read-football-odds__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-read-football-odds__card {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
}

.page-resources-how-to-read-football-odds__card-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-resources-how-to-read-football-odds__card-description {
  font-size: 1em;
  margin-bottom: 15px;
}

.page-resources-how-to-read-football-odds__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-how-to-read-football-odds__list--white {
  color: var(--text-light);
}

.page-resources-how-to-read-football-odds__list-item {
  margin-bottom: 10px;
}

.page-resources-how-to-read-football-odds__sub-section-title {
  font-size: 2em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--text-dark);
  text-align: center;
}

.page-resources-how-to-read-football-odds__sub-section-title--white {
  color: var(--text-light);
}

.page-resources-how-to-read-football-odds__info-block {
  margin-top: 40px;
  padding: 20px;
  background-color: var(--secondary-color);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
}

.page-resources-how-to-read-football-odds__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-read-football-odds__strategy-item {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
}

.page-resources-how-to-read-football-odds__strategy-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-resources-how-to-read-football-odds__strategy-description {
  font-size: 1em;
}

.page-resources-how-to-read-football-odds__icon-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-resources-how-to-read-football-odds__icon-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  background-color: var(--secondary-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
}

.page-resources-how-to-read-football-odds__icon {
  font-size: 2.5em;
  margin-right: 20px;
  line-height: 1;
  color: var(--primary-color);
}

.page-resources-how-to-read-football-odds__icon-list-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-resources-how-to-read-football-odds__icon-list-description {
  font-size: 1em;
}

.page-resources-how-to-read-football-odds__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-read-football-odds__security-item {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: var(--text-dark);
}

.page-resources-how-to-read-football-odds__security-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-resources-how-to-read-football-odds__security-description {
  font-size: 1em;
}

.page-resources-how-to-read-football-odds__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-how-to-read-football-odds__faq-section {
  padding: 60px 0;
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-resources-how-to-read-football-odds__faq-list {
  margin-top: 40px;
}

.page-resources-how-to-read-football-odds__faq-item {
  background-color: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-dark);
}

.page-resources-how-to-read-football-odds__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #f9f9f9;
  color: var(--primary-color);
  list-style: none;
}

.page-resources-how-to-read-football-odds__faq-question::-webkit-details-marker {
  display: none;
}

.page-resources-how-to-read-football-odds__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--primary-color);
}

.page-resources-how-to-read-football-odds__faq-answer {
  padding: 0 20px 20px;
  font-size: 1.05em;
  line-height: 1.6;
  color: var(--text-dark);
}

.page-resources-how-to-read-football-odds__faq-item[open] > .page-resources-how-to-read-football-odds__faq-question {
  background-color: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-how-to-read-football-odds__main-title {
    font-size: 2.8em;
  }

  .page-resources-how-to-read-football-odds__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-read-football-odds {
    font-size: 16px;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }

  .page-resources-how-to-read-football-odds__hero-section {
    height: 450px;
  }

  .page-resources-how-to-read-football-odds__hero-content {
    padding: 15px;
  }

  .page-resources-how-to-read-football-odds__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-resources-how-to-read-football-odds__intro-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-resources-how-to-read-football-odds__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-resources-how-to-read-football-odds__btn-primary,
  .page-resources-how-to-read-football-odds__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  .page-resources-how-to-read-football-odds__content-area {
    padding: 40px 0;
  }

  .page-resources-how-to-read-football-odds__container {
    padding: 0 15px;
  }

  .page-resources-how-to-read-football-odds__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-resources-how-to-read-football-odds__sub-section-title {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-resources-how-to-read-football-odds__feature-grid,
  .page-resources-how-to-read-football-odds__card-grid,
  .page-resources-how-to-read-football-odds__strategy-grid,
  .page-resources-how-to-read-football-odds__security-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-how-to-read-football-odds__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 30px auto;
    box-sizing: border-box !important;
  }

  .page-resources-how-to-read-football-odds__info-block,
  .page-resources-how-to-read-football-odds__feature-item,
  .page-resources-how-to-read-football-odds__card,
  .page-resources-how-to-read-football-odds__strategy-item,
  .page-resources-how-to-read-football-odds__icon-list-item,
  .page-resources-how-to-read-football-odds__security-item {
    padding: 20px;
  }

  .page-resources-how-to-read-football-odds__icon-list-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-resources-how-to-read-football-odds__icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-resources-how-to-read-football-odds__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-resources-how-to-read-football-odds__faq-answer {
    padding: 0 15px 15px;
  }

  .page-resources-how-to-read-football-odds__cta-section {
    padding: 60px 0;
  }

  /* Ensure all content containers are responsive */
  .page-resources-how-to-read-football-odds__section,
  .page-resources-how-to-read-football-odds__card,
  .page-resources-how-to-read-football-odds__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-how-to-read-football-odds__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Consistent header offset */
  }

  .page-resources-how-to-read-football-odds video,
  .page-resources-how-to-read-football-odds__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-how-to-read-football-odds__video-section,
  .page-resources-how-to-read-football-odds__video-container,
  .page-resources-how-to-read-football-odds__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-resources-how-to-read-football-odds__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}