.page-resources-betting-guide {
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px); /* Ensure header offset for desktop */
}

.page-resources-betting-guide__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero section */
  color: #FFFFFF;
  padding: 0;
  text-align: center;
}

.page-resources-betting-guide__hero-container {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.page-resources-betting-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
}

.page-resources-betting-guide__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  z-index: 1;
}

.page-resources-betting-guide__hero-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  line-height: 1.2;
}

.page-resources-betting-guide__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-resources-betting-guide__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for the button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-resources-betting-guide__hero-button:hover {
  background-color: #e0a53b;
}

.page-resources-betting-guide__content-area {
  max-width: 800px; /* Content width for comfortable reading */
  margin: 40px auto;
  padding: 0 20px;
}

.page-resources-betting-guide__article-navigation {
  margin-bottom: 40px;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid #FCBC45;
}

.page-resources-betting-guide__back-link {
  display: block;
  margin-bottom: 20px;
  font-weight: bold;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-betting-guide__back-link:hover {
  color: #FCBC45;
}

.page-resources-betting-guide__table-of-contents {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-resources-betting-guide__toc-item {
  margin-bottom: 10px;
}

.page-resources-betting-guide__toc-item a {
  color: #555555;
  text-decoration: none;
  font-weight: normal;
  transition: color 0.3s ease;
}

.page-resources-betting-guide__toc-item a:hover,
.page-resources-betting-guide__toc-item a.active {
  color: #FCBC45;
  font-weight: bold;
}

.page-resources-betting-guide__article-body {
  font-size: 1.1em;
  line-height: 1.7;
}

.page-resources-betting-guide__article-heading {
  font-size: 2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-resources-betting-guide__sub-heading {
  font-size: 1.5em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-betting-guide__article-paragraph {
  margin-bottom: 20px;
}

.page-resources-betting-guide__article-image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-betting-guide__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-betting-guide__list-item {
  margin-bottom: 10px;
}

.page-resources-betting-guide__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  margin-top: 20px;
  margin-right: 15px;
  transition: background-color 0.3s ease;
}

.page-resources-betting-guide__cta-button:hover {
  background-color: #e0a53b;
}

.page-resources-betting-guide__cta-button--register {
  background-color: #FCBC45; /* Register uses login color as per spec */
  color: #000000;
}

.page-resources-betting-guide__cta-button--login {
  background-color: #000000;
  color: #FFFFFF;
}

.page-resources-betting-guide__cta-button--login:hover {
  background-color: #333333;
}

.page-resources-betting-guide__cta-buttons {
  margin-top: 40px;
  text-align: center;
}

.page-resources-betting-guide__faq-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 4px solid #FCBC45;
}

.page-resources-betting-guide__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-betting-guide__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-resources-betting-guide__faq-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-betting-guide__faq-link:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-betting-guide__hero-title {
    font-size: 1.8em;
  }

  .page-resources-betting-guide__hero-description {
    font-size: 0.95em;
  }

  .page-resources-betting-guide__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-betting-guide__content-area {
    padding: 0 15px;
    margin-top: 20px;
  }

  .page-resources-betting-guide__article-heading {
    font-size: 1.7em;
  }

  .page-resources-betting-guide__sub-heading {
    font-size: 1.3em;
  }

  .page-resources-betting-guide__article-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive */
  }

  .page-resources-betting-guide__article-body img {
    max-width: 100%;
    height: auto;
  }

  .page-resources-betting-guide__cta-button {
    display: block;
    width: calc(100% - 30px);
    margin: 15px auto;
  }

  .page-resources-betting-guide__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-betting-guide__cta-button--register, .page-resources-betting-guide__cta-button--login {
    margin-right: 0;
  }

  /* Ensure content area does not cause horizontal scroll */
  .page-resources-betting-guide {
    overflow-x: hidden;
  }
}