/* style/resources-how-to-analyze-football-odds-bet88.css */

/* Base styles for the page content */
.page-resources-how-to-analyze-football-odds-bet88 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

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

.page-resources-how-to-analyze-football-odds-bet88__section-title {
  font-size: 2.5em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-how-to-analyze-football-odds-bet88__sub-title {
  font-size: 1.8em;
  color: #017439;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-how-to-analyze-football-odds-bet88__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-resources-how-to-analyze-football-odds-bet88__highlight {
  color: #FFFF00; /* Yellow for highlights */
  font-weight: bold;
}

/* Hero Section */
.page-resources-how-to-analyze-football-odds-bet88__hero-section {
  background: linear-gradient(135deg, #017439, #005f2c);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-how-to-analyze-football-odds-bet88__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-how-to-analyze-football-odds-bet88__hero-title {
  font-size: 3.5em;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-how-to-analyze-football-odds-bet88__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-resources-how-to-analyze-football-odds-bet88__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-how-to-analyze-football-odds-bet88__btn-primary,
.page-resources-how-to-analyze-football-odds-bet88__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
}

.page-resources-how-to-analyze-football-odds-bet88__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border-color: #C30808;
}

.page-resources-how-to-analyze-football-odds-bet88__btn-primary:hover {
  background-color: #a00707;
  border-color: #a00707;
}

.page-resources-how-to-analyze-football-odds-bet88__btn-secondary {
  background-color: #ffffff;
  color: #017439;
  border-color: #ffffff;
}

.page-resources-how-to-analyze-football-odds-bet88__btn-secondary:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

.page-resources-how-to-analyze-football-odds-bet88__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 1;
}

.page-resources-how-to-analyze-football-odds-bet88__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* General Section Styling */
.page-resources-how-to-analyze-football-odds-bet88__intro-analysis-section,
.page-resources-how-to-analyze-football-odds-bet88__odds-types-section,
.page-resources-how-to-analyze-football-odds-bet88__tools-section {
  padding: 60px 0;
}

.page-resources-how-to-analyze-football-odds-bet88__basic-factors-section,
.page-resources-how-to-analyze-football-odds-bet88__expert-strategy-section,
.page-resources-how-to-analyze-football-odds-bet88__conclusion-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
}

.page-resources-how-to-analyze-football-odds-bet88__dark-bg {
  background-color: #0d0d0d; /* Slightly darker than body for emphasis */
}

/* Card Styles */
.page-resources-how-to-analyze-football-odds-bet88__grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-analyze-football-odds-bet88__card {
  background-color: rgba(255, 255, 255, 0.08); /* Dark card with light text */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 250px; /* Ensure cards are not too small */
}

.page-resources-how-to-analyze-football-odds-bet88__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-analyze-football-odds-bet88__card-title {
  font-size: 1.5em;
  color: #017439; /* Brand color for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-how-to-analyze-football-odds-bet88__card-text {
  font-size: 1em;
  color: #f0f0f0;
}

/* Grid Columns for Text and Image */
.page-resources-how-to-analyze-football-odds-bet88__grid-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-resources-how-to-analyze-football-odds-bet88__content-column {
  display: flex;
  flex-direction: column;
}

.page-resources-how-to-analyze-football-odds-bet88__image-column {
  text-align: center;
}

.page-resources-how-to-analyze-football-odds-bet88__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.page-resources-how-to-analyze-football-odds-bet88__image-full-width {
  margin-top: 60px;
  text-align: center;
}

/* Video Section */
.page-resources-how-to-analyze-football-odds-bet88__video-section {
  padding: 60px 0;
  background-color: #017439; /* Brand color background for video section */
  text-align: center;
}

.page-resources-how-to-analyze-football-odds-bet88__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 1000px; /* Max width for video */
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-how-to-analyze-football-odds-bet88__video-link-wrapper {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.page-resources-how-to-analyze-football-odds-bet88__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

/* FAQ Section */
.page-resources-how-to-analyze-football-odds-bet88__faq-section {
  padding: 60px 0;
}

.page-resources-how-to-analyze-football-odds-bet88__faq-list {
  margin-top: 40px;
}

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

.page-resources-how-to-analyze-football-odds-bet88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.page-resources-how-to-analyze-football-odds-bet88__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.page-resources-how-to-analyze-football-odds-bet88__faq-title {
  color: #ffffff;
  margin: 0;
  font-size: 1.2em;
}

.page-resources-how-to-analyze-football-odds-bet88__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #FFFF00;
}

.page-resources-how-to-analyze-football-odds-bet88__faq-item.active .page-resources-how-to-analyze-football-odds-bet88__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-how-to-analyze-football-odds-bet88__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

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

/* Conclusion Section */
.page-resources-how-to-analyze-football-odds-bet88__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-resources-how-to-analyze-football-odds-bet88__hero-title {
    font-size: 2.8em;
  }

  .page-resources-how-to-analyze-football-odds-bet88__section-title {
    font-size: 2em;
  }

  .page-resources-how-to-analyze-football-odds-bet88__grid-columns {
    grid-template-columns: 1fr;
  }

  .page-resources-how-to-analyze-football-odds-bet88__image-column {
    order: -1; /* Image above text on smaller screens */
    margin-bottom: 30px;
  }
}

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

  .page-resources-how-to-analyze-football-odds-bet88__container {
    padding: 0 15px;
  }

  .page-resources-how-to-analyze-football-odds-bet88__hero-title {
    font-size: 2em;
  }

  .page-resources-how-to-analyze-football-odds-bet88__hero-description {
    font-size: 1.1em;
  }

  .page-resources-how-to-analyze-football-odds-bet88__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-how-to-analyze-football-odds-bet88__btn-primary,
  .page-resources-how-to-analyze-football-odds-bet88__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Image responsive adaptation */
  .page-resources-how-to-analyze-football-odds-bet88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-how-to-analyze-football-odds-bet88__image-full-width,
  .page-resources-how-to-analyze-football-odds-bet88__image-column {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }

  /* Video responsive adaptation */
  .page-resources-how-to-analyze-football-odds-bet88 video,
  .page-resources-how-to-analyze-football-odds-bet88__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-how-to-analyze-football-odds-bet88__video-section,
  .page-resources-how-to-analyze-football-odds-bet88__video-container,
  .page-resources-how-to-analyze-football-odds-bet88__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-analyze-football-odds-bet88__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure video section respects header offset on mobile */
  }

  .page-resources-how-to-analyze-football-odds-bet88__cta-buttons {
    flex-direction: column;
    gap: 15px;
    flex-wrap: wrap !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-how-to-analyze-football-odds-bet88__cta-buttons a {
    width: 100%;
    max-width: 100%;
  }

  .page-resources-how-to-analyze-football-odds-bet88__card {
    padding: 20px;
  }

  .page-resources-how-to-analyze-football-odds-bet88__faq-question,
  .page-resources-how-to-analyze-football-odds-bet88__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-analyze-football-odds-bet88__hero-title {
    font-size: 1.8em;
  }

  .page-resources-how-to-analyze-football-odds-bet88__section-title {
    font-size: 1.6em;
  }

  .page-resources-how-to-analyze-football-odds-bet88__card-title {
    font-size: 1.3em;
  }

  .page-resources-how-to-analyze-football-odds-bet88__btn-primary,
  .page-resources-how-to-analyze-football-odds-bet88__btn-secondary {
    font-size: 1em;
    padding: 12px 20px;
  }
}