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

.page-resources-betting-strategy__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-betting-strategy__hero-section {
  background: linear-gradient(135deg, #017439, #4CAF50); /* Green gradient */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-resources-betting-strategy__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-resources-betting-strategy__hero-cta-button {
  display: inline-block;
  background-color: #C30808; /* Register button color */
  color: #FFFF00; /* Register button font color */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-betting-strategy__hero-cta-button:hover {
  background-color: #e02020;
  transform: translateY(-2px);
}

.page-resources-betting-strategy__article-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-resources-betting-strategy__article-container {
  max-width: 750px; /* Optimal width for long-form reading */
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-betting-strategy__return-link {
  font-size: 1em;
  margin-bottom: 40px;
}

.page-resources-betting-strategy__return-link a {
  color: #017439;
  text-decoration: none;
  font-weight: bold;
}

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

.page-resources-betting-strategy__article-heading {
  font-size: 2em;
  color: #017439;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}

.page-resources-betting-strategy__article-subheading {
  font-size: 1.5em;
  color: #017439;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-betting-strategy__article-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-betting-strategy__article-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

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

.page-resources-betting-strategy__article-list-item strong {
  color: #017439;
}

.page-resources-betting-strategy__image-figure {
  margin: 40px 0;
  text-align: center;
}

.page-resources-betting-strategy__article-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px; /* Enforce minimum image size */
}

.page-resources-betting-strategy__image-caption {
  font-style: italic;
  color: #666666;
  margin-top: 10px;
  font-size: 0.95em;
}

.page-resources-betting-strategy__article-paragraph a,
.page-resources-betting-strategy__article-list-item a {
  color: #017439;
  text-decoration: underline;
  font-weight: bold;
}

.page-resources-betting-strategy__article-paragraph a:hover,
.page-resources-betting-strategy__article-list-item a:hover {
  color: #005f2e;
}

.page-resources-betting-strategy__cta-section {
  background-color: #f5f5f5;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-betting-strategy__cta-text {
  font-size: 1.3em;
  font-weight: bold;
  color: #017439;
  margin-bottom: 30px;
}

.page-resources-betting-strategy__cta-button {
  display: inline-block;
  background-color: #C30808; /* Register button color */
  color: #FFFF00; /* Register button font color */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-betting-strategy__cta-button:hover {
  background-color: #e02020;
  transform: translateY(-2px);
}

.page-resources-betting-strategy__cta-button--login {
  background-color: #017439; /* Login button color */
  color: #FFFFFF; /* Login button font color */
}

.page-resources-betting-strategy__cta-button--login:hover {
  background-color: #005f2e;
}

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

  .page-resources-betting-strategy__hero-description {
    font-size: 1em;
  }

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

  .page-resources-betting-strategy__article-subheading {
    font-size: 1.3em;
  }

  .page-resources-betting-strategy__article-paragraph,
  .page-resources-betting-strategy__article-list {
    font-size: 1em;
  }

  .page-resources-betting-strategy__hero-section {
    padding: 60px 0;
  }

  .page-resources-betting-strategy__cta-button {
    margin: 10px 0;
    display: block;
  }
}

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

  .page-resources-betting-strategy__hero-description {
    font-size: 0.9em;
  }

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

  .page-resources-betting-strategy__article-heading {
    font-size: 1.5em;
  }

  .page-resources-betting-strategy__article-subheading {
    font-size: 1.2em;
  }

  .page-resources-betting-strategy__cta-text {
    font-size: 1.1em;
  }
}