.page-resources-online-betting-tips {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #FFFFFF; /* Explicitly set for main content area if needed, though body handles it */
}

.page-resources-online-betting-tips__hero-section {
  background-color: #000000; /* Main color for hero section background */
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-resources-online-betting-tips__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-online-betting-tips__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-resources-online-betting-tips__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources-online-betting-tips__hero-image {
  width: 100%;
  max-width: 1200px; /* Constrain hero image width */
  margin-top: 20px;
}

.page-resources-online-betting-tips__hero-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-resources-online-betting-tips__content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
}

.page-resources-online-betting-tips__section-title {
  font-size: 2em;
  color: #000000; /* Dark color for titles */
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.page-resources-online-betting-tips__sub-section-title {
  font-size: 1.5em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
}

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

.page-resources-online-betting-tips__article-image {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px; /* Enforce minimum image size */
}

.page-resources-online-betting-tips__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
  margin-top: 20px;
}

.page-resources-online-betting-tips__cta-button--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for contrast */
  border: 2px solid #FCBC45;
}

.page-resources-online-betting-tips__cta-button--primary:hover {
  background-color: #e0a53b;
  color: #000000;
}

.page-resources-online-betting-tips__cta-button--secondary {
  background-color: #000000;
  color: #FFFFFF; /* Register button color */
  border: 2px solid #000000;
}

.page-resources-online-betting-tips__cta-button--secondary:hover {
  background-color: #333333;
  color: #FFFFFF;
}

.page-resources-online-betting-tips__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-online-betting-tips__related-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

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

.page-resources-online-betting-tips__related-item a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-online-betting-tips__related-item a:hover {
  color: #FCBC45;
}

.page-resources-online-betting-tips__back-link {
  display: inline-block;
  margin-top: 40px;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
  .page-resources-online-betting-tips {
    padding-top: var(--header-offset, 80px);
  }

  .page-resources-online-betting-tips__hero-section {
    padding: 40px 15px;
    flex-direction: column;
  }

  .page-resources-online-betting-tips__hero-title {
    font-size: 2em;
  }

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

  .page-resources-online-betting-tips__content-area {
    padding: 20px 15px;
  }

  .page-resources-online-betting-tips__section-title {
    font-size: 1.6em;
  }

  .page-resources-online-betting-tips__sub-section-title {
    font-size: 1.3em;
  }

  .page-resources-online-betting-tips__paragraph {
    font-size: 1em;
  }

  .page-resources-online-betting-tips__article-image {
    max-width: 100%;
    height: auto;
  }

  .page-resources-online-betting-tips__cta-button {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  .page-resources-online-betting-tips__cta-group {
    flex-direction: column;
    align-items: center;
  }

  /* Ensure all images in content area are responsive */
  .page-resources-online-betting-tips img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Still enforce minimum size even on mobile */
    min-height: 200px; /* Still enforce minimum size even on mobile */
  }
}