/* style/resources-betting-guide.css */
.page-resources-betting-guide {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  background-color: #FFFFFF; /* Ensure content area matches body background if not explicitly set by shared */
  padding-top: var(--header-offset, 120px); /* Fixed header offset for PC and mobile */
}

.page-resources-betting-guide__hero-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #000000; /* Dark background for hero for contrast */
  color: #FFFFFF; /* Light text for dark hero background */
}

.page-resources-betting-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-betting-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Highlight title with accent color */
  line-height: 1.2;
}

.page-resources-betting-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-betting-guide__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-betting-guide__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-resources-betting-guide__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-resources-betting-guide__button--register:hover {
  background-color: #F0F0F0;
  transform: translateY(-2px);
}

.page-resources-betting-guide__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-betting-guide__button--login:hover {
  background-color: #E0A030;
  transform: translateY(-2px);
}

.page-resources-betting-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Subtle background image */
}

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

.page-resources-betting-guide__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-betting-guide__subsection-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 15px;
  border-left: 5px solid #FCBC45;
  padding-left: 15px;
}

.page-resources-betting-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.page-resources-betting-guide__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

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

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

.page-resources-betting-guide__content-image {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure images are not small icons */
  min-height: 200px;
}

.page-resources-betting-guide__faq-item {
  background-color: #F8F8F8;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid #E0E0E0;
}

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

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

.page-resources-betting-guide__cta-section {
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px;
  margin-top: 60px;
  border-radius: 10px;
}

.page-resources-betting-guide__cta-title {
  font-size: 2.8em;
  color: #FCBC45;
  margin-bottom: 20px;
}

.page-resources-betting-guide__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-betting-guide__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.page-resources-betting-guide__cta-return {
  font-size: 1.1em;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-betting-guide__hero-title {
    font-size: 2.8em;
  }
  .page-resources-betting-guide__section-title {
    font-size: 2.2em;
  }
  .page-resources-betting-guide__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-resources-betting-guide__hero-section {
    padding: 60px 15px 30px;
  }
  .page-resources-betting-guide__hero-title {
    font-size: 2.2em;
  }
  .page-resources-betting-guide__hero-description {
    font-size: 1.1em;
  }
  .page-resources-betting-guide__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-betting-guide__content-area {
    padding: 30px 15px;
  }
  .page-resources-betting-guide__section-title {
    font-size: 2em;
  }
  .page-resources-betting-guide__subsection-title {
    font-size: 1.6em;
  }
  .page-resources-betting-guide__paragraph,
  .page-resources-betting-guide__list-item,
  .page-resources-betting-guide__faq-answer {
    font-size: 1em;
  }
  .page-resources-betting-guide__faq-question {
    font-size: 1.2em;
  }
  .page-resources-betting-guide__cta-title {
    font-size: 2em;
  }
  .page-resources-betting-guide__cta-description {
    font-size: 1.1em;
  }
  /* Mobile image responsiveness */
  .page-resources-betting-guide__content-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-resources-betting-guide__hero-title {
    font-size: 1.8em;
  }
  .page-resources-betting-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-betting-guide__cta-title {
    font-size: 1.8em;
  }
  .page-resources-betting-guide__hero-actions {
    flex-direction: column;
  }
  .page-resources-betting-guide__button {
    width: 100%;
  }
}