.page-resources-betting-strategies {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px);
}

.page-resources-betting-strategies__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure hero section has a minimum height */
  background-color: #000000;
}

.page-resources-betting-strategies__hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px; /* Constrain max width for large screens */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.page-resources-betting-strategies__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4; /* Slightly dim the image for text readability */
}

.page-resources-betting-strategies__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #ffffff;
}

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

.page-resources-betting-strategies__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

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

.page-resources-betting-strategies__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-resources-betting-strategies__button--register:hover {
  background-color: #e0e0e0;
}

.page-resources-betting-strategies__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-resources-betting-strategies__button--login:hover {
  background-color: #e6a73c;
}

.page-resources-betting-strategies__content-wrapper {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.8;
  background-color: #0a0a0a; /* Slightly lighter dark background for content area */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-betting-strategies__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-betting-strategies__back-link:hover {
  color: #FFFFFF;
}

.page-resources-betting-strategies__article {
  padding: 30px 0;
}

.page-resources-betting-strategies__article-heading {
  font-size: 2.2em;
  color: #FCBC45;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-resources-betting-strategies__article-subheading {
  font-size: 1.7em;
  color: #FFFFFF;
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-resources-betting-strategies__article-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-resources-betting-strategies__article-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

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

.page-resources-betting-strategies__article-list li strong {
  color: #FCBC45;
}

.page-resources-betting-strategies__article-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-resources-betting-strategies__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
  padding-bottom: 40px;
}

.page-resources-betting-strategies__button--join-now {
  background-color: #FCBC45;
  color: #000000;
}

.page-resources-betting-strategies__button--join-now:hover {
  background-color: #e6a73c;
}

.page-resources-betting-strategies__button--promo {
  background-color: #FFFFFF;
  color: #000000;
}

.page-resources-betting-strategies__button--promo:hover {
  background-color: #e0e0e0;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .page-resources-betting-strategies__hero-title {
    font-size: 2.5em;
  }

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

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

  .page-resources-betting-strategies__button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-resources-betting-strategies__content-wrapper {
    margin: 20px auto;
    padding: 0 15px;
  }

  .page-resources-betting-strategies__article-heading {
    font-size: 1.8em;
  }

  .page-resources-betting-strategies__article-subheading {
    font-size: 1.4em;
  }

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

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

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

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

  .page-resources-betting-strategies__hero-section {
    min-height: 400px;
    padding: 30px 15px;
  }

  .page-resources-betting-strategies__hero-content {
    padding: 0;
  }

  .page-resources-betting-strategies__back-link {
    font-size: 1em;
  }
}