.page-resources-deep-dive-88-betting-odds {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --accent-color: #C30808; /* For register/login buttons */
  --text-color-dark-bg: #FFFFFF;
  --text-color-light-bg: #333333;
  --button-text-color-register-login: #FFFF00;
  
  color: var(--text-color-dark-bg); /* Assuming body is dark background from shared.css */
  background-color: var(--dark-bg-1); /* Inherited from shared, ensuring contrast */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-resources-deep-dive-88-betting-odds__hero-section {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-deep-dive-88-betting-odds__hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-resources-deep-dive-88-betting-odds__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.page-resources-deep-dive-88-betting-odds__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-resources-deep-dive-88-betting-odds__hero-title {
  font-size: 3.5em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-deep-dive-88-betting-odds__hero-description {
  font-size: 1.3em;
  color: var(--secondary-color);
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-resources-deep-dive-88-betting-odds__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-deep-dive-88-betting-odds__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--secondary-color); /* Light background for content */
  color: var(--text-color-light-bg);
}

.page-resources-deep-dive-88-betting-odds__introduction,
.page-resources-deep-dive-88-betting-odds__sports-analysis,
.page-resources-deep-dive-88-betting-odds__casino-analysis,
.page-resources-deep-dive-88-betting-odds__promotions,
.page-resources-deep-dive-88-betting-odds__getting-started,
.page-resources-deep-dive-88-betting-odds__faq,
.page-resources-deep-dive-88-betting-odds__conclusion {
  padding: 60px 0;
  background-color: var(--dark-bg-1);
  color: var(--text-color-dark-bg);
}

.page-resources-deep-dive-88-betting-odds__introduction,
.page-resources-deep-dive-88-betting-odds__promotions,
.page-resources-deep-dive-88-betting-odds__getting-started,
.page-resources-deep-dive-88-betting-odds__faq,
.page-resources-deep-dive-88-betting-odds__conclusion {
  background-color: var(--secondary-color);
  color: var(--text-color-light-bg);
}

.page-resources-deep-dive-88-betting-odds__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
}

.page-resources-deep-dive-88-betting-odds__subsection-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-resources-deep-dive-88-betting-odds__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-resources-deep-dive-88-betting-odds__highlight {
  color: var(--primary-color);
  font-weight: bold;
}

.page-resources-deep-dive-88-betting-odds__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-deep-dive-88-betting-odds__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-deep-dive-88-betting-odds__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-deep-dive-88-betting-odds__image-text-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-resources-deep-dive-88-betting-odds__image-text-layout--reverse {
  flex-direction: row-reverse;
}

.page-resources-deep-dive-88-betting-odds__image-left,
.page-resources-deep-dive-88-betting-odds__image-right {
  flex: 1;
  min-width: 200px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-deep-dive-88-betting-odds__image-left img,
.page-resources-deep-dive-88-betting-odds__image-right img {
  width: 100%;
  height: auto;
  display: block;
}

.page-resources-deep-dive-88-betting-odds__text-right,
.page-resources-deep-dive-88-betting-odds__text-left {
  flex: 1;
}

.page-resources-deep-dive-88-betting-odds__btn-primary,
.page-resources-deep-dive-88-betting-odds__btn-secondary,
.page-resources-deep-dive-88-betting-odds__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
}

.page-resources-deep-dive-88-betting-odds__btn-primary {
  background-color: var(--accent-color); /* Register/Login color */
  color: var(--button-text-color-register-login);
  border: 2px solid var(--accent-color);
}

.page-resources-deep-dive-88-betting-odds__btn-primary:hover {
  background-color: #A00707;
  border-color: #A00707;
}

.page-resources-deep-dive-88-betting-odds__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-resources-deep-dive-88-betting-odds__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-resources-deep-dive-88-betting-odds__btn-tertiary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 20px;
  font-size: 1em;
}

.page-resources-deep-dive-88-betting-odds__btn-tertiary:hover {
  background-color: #005F2E;
  border-color: #005F2E;
}

.page-resources-deep-dive-88-betting-odds__button-center {
  display: block;
  margin: 40px auto 20px auto;
  text-align: center;
  max-width: 300px;
}

.page-resources-deep-dive-88-betting-odds__promotion-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-deep-dive-88-betting-odds__card {
  background-color: var(--dark-bg-1);
  color: var(--text-color-dark-bg);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-resources-deep-dive-88-betting-odds__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-deep-dive-88-betting-odds__card-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-deep-dive-88-betting-odds__card-description {
  font-size: 1em;
  margin-bottom: 20px;
}

.page-resources-deep-dive-88-betting-odds__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-deep-dive-88-betting-odds__step-card {
  background-color: var(--dark-bg-1);
  color: var(--text-color-dark-bg);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-deep-dive-88-betting-odds__step-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-deep-dive-88-betting-odds__step-description {
  font-size: 1em;
  margin-bottom: 20px;
}

.page-resources-deep-dive-88-betting-odds__qr-code {
  max-width: 200px;
  height: auto;
  margin-top: 15px;
  margin-bottom: 20px;
  border: 5px solid var(--secondary-color);
}

.page-resources-deep-dive-88-betting-odds__video-section {
  background-color: var(--dark-bg-1);
  color: var(--text-color-dark-bg);
  padding: 60px 20px;
  text-align: center;
}

.page-resources-deep-dive-88-betting-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;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-resources-deep-dive-88-betting-odds__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
}

.page-resources-deep-dive-88-betting-odds__video-caption {
  margin-top: 20px;
  font-style: italic;
  color: var(--text-color-dark-bg);
}

.page-resources-deep-dive-88-betting-odds__faq-list {
  margin-top: 40px;
}

.page-resources-deep-dive-88-betting-odds__faq-item {
  background-color: var(--dark-bg-1);
  color: var(--text-color-dark-bg);
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-deep-dive-88-betting-odds__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: var(--primary-color);
  color: var(--secondary-color);
  transition: background-color 0.3s ease;
}

.page-resources-deep-dive-88-betting-odds__faq-question:hover {
  background-color: #005F2E;
}

.page-resources-deep-dive-88-betting-odds__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-deep-dive-88-betting-odds__faq-item.active .page-resources-deep-dive-88-betting-odds__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-deep-dive-88-betting-odds__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: var(--dark-bg-1);
  color: var(--text-color-dark-bg);
}

.page-resources-deep-dive-88-betting-odds__faq-item.active .page-resources-deep-dive-88-betting-odds__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-resources-deep-dive-88-betting-odds__faq-answer p {
  margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-deep-dive-88-betting-odds__hero-title {
    font-size: 3em;
  }

  .page-resources-deep-dive-88-betting-odds__section-title {
    font-size: 2em;
  }

  .page-resources-deep-dive-88-betting-odds__image-text-layout {
    flex-direction: column;
  }

  .page-resources-deep-dive-88-betting-odds__image-text-layout--reverse {
    flex-direction: column-reverse;
  }
}

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

  .page-resources-deep-dive-88-betting-odds__hero-section {
    height: auto;
    min-height: 400px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-deep-dive-88-betting-odds__hero-title {
    font-size: 2.2em;
  }

  .page-resources-deep-dive-88-betting-odds__hero-description {
    font-size: 1em;
  }

  .page-resources-deep-dive-88-betting-odds__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-deep-dive-88-betting-odds__btn-primary,
  .page-resources-deep-dive-88-betting-odds__btn-secondary,
  .page-resources-deep-dive-88-betting-odds__btn-tertiary {
    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-deep-dive-88-betting-odds__hero-cta-buttons,
  .page-resources-deep-dive-88-betting-odds__button-group,
  .page-resources-deep-dive-88-betting-odds__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-resources-deep-dive-88-betting-odds__content-area,
  .page-resources-deep-dive-88-betting-odds__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-deep-dive-88-betting-odds__image-left img,
  .page-resources-deep-dive-88-betting-odds__image-right img,
  .page-resources-deep-dive-88-betting-odds__card-image,
  .page-resources-deep-dive-88-betting-odds__qr-code {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-deep-dive-88-betting-odds__image-left,
  .page-resources-deep-dive-88-betting-odds__image-right,
  .page-resources-deep-dive-88-betting-odds__card,
  .page-resources-deep-dive-88-betting-odds__step-card,
  .page-resources-deep-dive-88-betting-odds__section,
  .page-resources-deep-dive-88-betting-odds__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-deep-dive-88-betting-odds__video-wrapper {
    padding-bottom: 56.25% !important; /* 16:9 aspect ratio */
    height: 0 !important;
    overflow: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 20px auto !important;
  }

  .page-resources-deep-dive-88-betting-odds__video {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
  }

  .page-resources-deep-dive-88-betting-odds__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}

@media (max-width: 480px) {
  .page-resources-deep-dive-88-betting-odds__hero-title {
    font-size: 1.8em;
  }

  .page-resources-deep-dive-88-betting-odds__section-title {
    font-size: 1.8em;
  }

  .page-resources-deep-dive-88-betting-odds__subsection-title {
    font-size: 1.4em;
  }

  .page-resources-deep-dive-88-betting-odds__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-resources-deep-dive-88-betting-odds__faq-answer {
    padding: 10px 20px;
  }
}