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

.page-resources-how-to-read-88-odds {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Matches body background */
}

.page-resources-how-to-read-88-odds__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  box-sizing: border-box;
}

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

.page-resources-how-to-read-88-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-88-odds__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-resources-how-to-read-88-odds__main-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-resources-how-to-read-88-odds__intro-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-resources-how-to-read-88-odds__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Dark Red for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
}

.page-resources-how-to-read-88-odds__cta-button:hover {
  background-color: #8B0000; /* Dark Red */
  color: #FFD700; /* Gold */
  border-color: #FFD700;
}

.page-resources-how-to-read-88-odds__cta-button--inline {
  margin-top: 30px;
}

.page-resources-how-to-read-88-odds__cta-button--center {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 300px;
}

.page-resources-how-to-read-88-odds__content-area {
  padding: 60px 20px;
  text-align: left;
}

.page-resources-how-to-read-88-odds__dark-bg {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-resources-how-to-read-88-odds__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-how-to-read-88-odds__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 40px;
  text-align: center;
}

.page-resources-how-to-read-88-odds__sub-title {
  font-size: 1.8em;
  color: #f0f0f0;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-how-to-read-88-odds__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-resources-how-to-read-88-odds__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

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

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

.page-resources-how-to-read-88-odds__card {
  background-color: rgba(255, 255, 255, 0.08); /* Light transparent white */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: #ffffff;
}

.page-resources-how-to-read-88-odds__card-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-resources-how-to-read-88-odds__card-text {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-resources-how-to-read-88-odds__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-how-to-read-88-odds__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
}

.page-resources-how-to-read-88-odds__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 10px;
}

.page-resources-how-to-read-88-odds__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.page-resources-how-to-read-88-odds__video-caption {
  text-align: center;
  font-style: italic;
  color: #bbb;
  margin-top: 10px;
}

/* FAQ Section */
.page-resources-how-to-read-88-odds__faq-list {
  margin-top: 40px;
}

.page-resources-how-to-read-88-odds__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-resources-how-to-read-88-odds__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #8B0000; /* Dark Red */
  color: #FFD700; /* Gold */
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-resources-how-to-read-88-odds__faq-question:hover {
  background-color: #a00000; /* Slightly lighter red */
}

.page-resources-how-to-read-88-odds__faq-question h3 {
  margin: 0;
  color: inherit;
  font-size: 1.1em;
}

.page-resources-how-to-read-88-odds__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-how-to-read-88-odds__faq-item.active .page-resources-how-to-read-88-odds__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-how-to-read-88-odds__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background-color: rgba(255, 255, 255, 0.05);
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #e0e0e0;
}

.page-resources-how-to-read-88-odds__faq-item.active .page-resources-how-to-read-88-odds__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 20px 25px;
}

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

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

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

  .page-resources-how-to-read-88-odds__hero-section {
    height: 450px;
    padding-top: var(--header-offset, 120px) !important;
  }

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

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

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

  .page-resources-how-to-read-88-odds__sub-title {
    font-size: 1.5em;
  }

  .page-resources-how-to-read-88-odds__paragraph,
  .page-resources-how-to-read-88-odds__list li,
  .page-resources-how-to-read-88-odds__card-text {
    font-size: 0.95em;
  }

  .page-resources-how-to-read-88-odds__grid {
    grid-template-columns: 1fr;
  }

  .page-resources-how-to-read-88-odds__card {
    padding: 20px;
  }

  .page-resources-how-to-read-88-odds__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-how-to-read-88-odds__cta-button--center {
    max-width: 100% !important;
  }

  .page-resources-how-to-read-88-odds img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-resources-how-to-read-88-odds__video-wrapper,
  .page-resources-how-to-read-88-odds__container {
    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-88-odds__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-resources-how-to-read-88-odds__faq-question h3 {
    font-size: 1em;
  }

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

@media (max-width: 480px) {
  .page-resources-how-to-read-88-odds__main-title {
    font-size: 1.8em;
  }

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