.page-resources-football-odds-analysis {
  color: #ffffff; /* Default text color for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #121212; /* Inherited from body, but ensures consistency */
}

.page-resources-football-odds-analysis__hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  box-sizing: border-box;
}

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

.page-resources-football-odds-analysis__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.page-resources-football-odds-analysis__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
}

.page-resources-football-odds-analysis__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #CC0000; /* Brand red for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-football-odds-analysis__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-football-odds-analysis__section {
  padding: 80px 0;
  position: relative;
}

.page-resources-football-odds-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-football-odds-analysis__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 40px;
  color: #CC0000;
}

.page-resources-football-odds-analysis__section-title--white {
  color: #ffffff;
}

.page-resources-football-odds-analysis__text-block {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-football-odds-analysis__text-block--white {
  color: #f0f0f0;
}

.page-resources-football-odds-analysis__cta-button {
  display: inline-block;
  background: #CC0000;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-football-odds-analysis__cta-button:hover {
  background-color: #e60000;
  transform: translateY(-3px);
}

.page-resources-football-odds-analysis__cta-button--secondary {
  background: #333333;
}

.page-resources-football-odds-analysis__cta-button--secondary:hover {
  background-color: #555555;
}

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

.page-resources-football-odds-analysis__card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.page-resources-football-odds-analysis__card:hover {
  transform: translateY(-5px);
}

.page-resources-football-odds-analysis__card-title {
  font-size: 1.8em;
  color: #CC0000;
  margin-bottom: 15px;
}

.page-resources-football-odds-analysis__card-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-resources-football-odds-analysis__light-bg {
  background-color: #f8f8f8;
  color: #333333;
}

.page-resources-football-odds-analysis__light-bg .page-resources-football-odds-analysis__section-title {
  color: #CC0000;
}

.page-resources-football-odds-analysis__light-bg .page-resources-football-odds-analysis__text-block {
  color: #333333;
}

.page-resources-football-odds-analysis__light-bg .page-resources-football-odds-analysis__card {
  background: #ffffff;
  color: #333333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-football-odds-analysis__light-bg .page-resources-football-odds-analysis__card-title {
  color: #CC0000;
}

.page-resources-football-odds-analysis__light-bg .page-resources-football-odds-analysis__card-text {
  color: #333333;
}

.page-resources-football-odds-analysis__dark-section {
  background-color: #333333;
  color: #ffffff;
}

.page-resources-football-odds-analysis__grid-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.page-resources-football-odds-analysis__grid-two-columns--reversed {
  grid-template-areas: "image text";
}

.page-resources-football-odds-analysis__grid-two-columns--reversed .page-resources-football-odds-analysis__image-wrapper {
  grid-area: image;
}

.page-resources-football-odds-analysis__grid-two-columns--reversed .page-resources-football-odds-analysis__text-content {
  grid-area: text;
}

.page-resources-football-odds-analysis__sub-title {
  font-size: 1.8em;
  color: #CC0000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-football-odds-analysis__dark-section .page-resources-football-odds-analysis__sub-title {
  color: #ffffff;
}

.page-resources-football-odds-analysis__image-wrapper {
  text-align: center;
}

.page-resources-football-odds-analysis__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-football-odds-analysis__ordered-list,
.page-resources-football-odds-analysis__unordered-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-resources-football-odds-analysis__ordered-list li,
.page-resources-football-odds-analysis__unordered-list li {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.page-resources-football-odds-analysis__light-bg .page-resources-football-odds-analysis__ordered-list li,
.page-resources-football-odds-analysis__light-bg .page-resources-football-odds-analysis__unordered-list li {
  background: #ffffff;
  color: #333333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-football-odds-analysis__ordered-list li p,
.page-resources-football-odds-analysis__unordered-list li p {
  margin-top: 10px;
  text-align: left;
}

.page-resources-football-odds-analysis__cta-wrapper {
  text-align: center;
  margin-top: 60px;
}

.page-resources-football-odds-analysis__video-section {
  position: relative;
  text-align: center;
  padding: 80px 0;
  background-color: #1a1a1a; /* Darker background for video section */
}

.page-resources-football-odds-analysis__video-wrapper {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-football-odds-analysis__video {
  width: 100%;
  height: auto;
  display: block;
}

.page-resources-football-odds-analysis__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none; /* Allow click to pass through to video/link */
}

.page-resources-football-odds-analysis__video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4em;
  color: #CC0000;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 2;
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.page-resources-football-odds-analysis__video-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: #ffffff;
}

.page-resources-football-odds-analysis__faq-section {
  background-color: #333333;
}

.page-resources-football-odds-analysis__faq-list {
  margin-top: 50px;
}

.page-resources-football-odds-analysis__faq-item {
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-football-odds-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #444444;
  color: #ffffff;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-football-odds-analysis__faq-question:hover {
  background-color: #555555;
}

.page-resources-football-odds-analysis__faq-title {
  margin: 0;
  color: #ffffff;
}

.page-resources-football-odds-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-football-odds-analysis__faq-item.active .page-resources-football-odds-analysis__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-football-odds-analysis__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: #2a2a2a;
  color: #f0f0f0;
}

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

.page-resources-football-odds-analysis__faq-answer p {
  margin: 0;
  text-align: left;
}

.page-resources-football-odds-analysis__cta-bottom {
  text-align: center;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-resources-football-odds-analysis__hero-title {
    font-size: 2.8em;
  }

  .page-resources-football-odds-analysis__section-title {
    font-size: 2.2em;
  }

  .page-resources-football-odds-analysis__grid-two-columns {
    grid-template-columns: 1fr;
  }

  .page-resources-football-odds-analysis__grid-two-columns--reversed {
    grid-template-areas: unset; /* Reset for single column */
  }

  .page-resources-football-odds-analysis__sub-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-resources-football-odds-analysis {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-football-odds-analysis__hero-section {
    height: auto;
    min-height: 70vh;
  }

  .page-resources-football-odds-analysis__hero-title {
    font-size: 2em;
    margin-top: 20px;
  }

  .page-resources-football-odds-analysis__hero-description {
    font-size: 1em;
  }

  .page-resources-football-odds-analysis__section {
    padding: 60px 0;
  }

  .page-resources-football-odds-analysis__content-area {
    padding: 0 15px;
  }

  .page-resources-football-odds-analysis__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-football-odds-analysis__text-block {
    font-size: 1em;
    margin-bottom: 40px;
  }

  .page-resources-football-odds-analysis__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-football-odds-analysis__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-football-odds-analysis__card {
    padding: 20px;
  }

  .page-resources-football-odds-analysis__card-title {
    font-size: 1.5em;
  }

  .page-resources-football-odds-analysis__image {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-resources-football-odds-analysis__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-resources-football-odds-analysis__ordered-list li,
  .page-resources-football-odds-analysis__unordered-list li {
    padding: 20px;
  }

  .page-resources-football-odds-analysis__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-football-odds-analysis__video,
  .page-resources-football-odds-analysis__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-football-odds-analysis__video-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-football-odds-analysis__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-resources-football-odds-analysis__faq-answer {
    padding: 0 20px;
  }

  .page-resources-football-odds-analysis__faq-item.active .page-resources-football-odds-analysis__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-football-odds-analysis__hero-title {
    font-size: 1.6em;
  }

  .page-resources-football-odds-analysis__hero-description {
    font-size: 0.9em;
  }

  .page-resources-football-odds-analysis__section-title {
    font-size: 1.5em;
  }

  .page-resources-football-odds-analysis__sub-title {
    font-size: 1.2em;
  }

  .page-resources-football-odds-analysis__video-play-button {
    width: 80px;
    height: 80px;
    font-size: 3em;
  }
}