.page-resources-betting-guide {
  color: #ffffff; /* Light text on dark body background */
  background-color: transparent; /* Body background from shared.css */
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

.page-resources-betting-guide__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-resources-betting-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  z-index: -1;
  filter: brightness(0.6); /* Darken image for text readability, not changing color */
}

.page-resources-betting-guide__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Ensure hero section has a decent height */
}

.page-resources-betting-guide__hero-content {
  z-index: 1;
  color: #ffffff;
  max-width: 800px;
}

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

.page-resources-betting-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

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

.page-resources-betting-guide__button {
  display: inline-block;
  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, transform 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.page-resources-betting-guide__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Deep red text */
}

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

.page-resources-betting-guide__button--secondary {
  background-color: #8B0000; /* Deep red button */
  color: #FFD700; /* Gold text */
  border-color: #FFD700;
}

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

.page-resources-betting-guide__content-area {
  max-width: 800px; /* Content width for comfortable reading */
  margin: 40px auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background for content */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-resources-betting-guide__article-wrapper {
  padding: 20px;
}

.page-resources-betting-guide__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: left;
  border-bottom: 2px solid #8B0000;
  padding-bottom: 10px;
}

.page-resources-betting-guide__sub-section-title {
  font-size: 1.8em;
  color: #f0f0f0;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
}

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

.page-resources-betting-guide__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

.page-resources-betting-guide__ordered-list,
.page-resources-betting-guide__unordered-list {
  list-style-position: inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #e0e0e0;
}

.page-resources-betting-guide__ordered-list li,
.page-resources-betting-guide__unordered-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-betting-guide__call-to-action {
  margin-top: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-betting-guide__main-title {
    font-size: 3em;
  }
  .page-resources-betting-guide__hero-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-betting-guide__hero-section {
    padding-top: var(--header-offset, 80px);
    padding: 60px 15px;
  }
  .page-resources-betting-guide__main-title {
    font-size: 2.5em;
  }
  .page-resources-betting-guide__hero-description {
    font-size: 1em;
  }
  .page-resources-betting-guide__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-betting-guide__button {
    width: 100%;
    max-width: 280px;
  }
  .page-resources-betting-guide__content-area {
    margin: 20px auto;
    padding: 15px;
  }
  .page-resources-betting-guide__section-title {
    font-size: 2em;
  }
  .page-resources-betting-guide__sub-section-title {
    font-size: 1.5em;
  }
  .page-resources-betting-guide__paragraph,
  .page-resources-betting-guide__ordered-list li,
  .page-resources-betting-guide__unordered-list li {
    font-size: 1em;
  }
  /* Mobile content area images must be responsive */
  .page-resources-betting-guide__content-area img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Still enforce minimum size */
    min-height: 200px;
  }
  .page-resources-betting-guide__image-full-width {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-resources-betting-guide__main-title {
    font-size: 2em;
  }
  .page-resources-betting-guide__hero-container {
    padding: 40px 10px;
    min-height: 400px;
  }
  .page-resources-betting-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-betting-guide__sub-section-title {
    font-size: 1.3em;
  }
}