/* style/resources-safe-betting-tips.css */
.page-resources-safe-betting-tips {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF; /* Explicit background for page content */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-resources-safe-betting-tips__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Main brand color for hero background */
  color: #FFFFFF; /* Light text for dark background */
}

.page-resources-safe-betting-tips__hero-content {
  max-width: 800px;
  margin-bottom: 30px;
}

.page-resources-safe-betting-tips__main-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FCBC45; /* Login button color for emphasis */
  font-weight: bold;
}

.page-resources-safe-betting-tips__intro-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

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

.page-resources-safe-betting-tips__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-resources-safe-betting-tips__button--register {
  background-color: #FFFFFF; /* Register button background */
  color: #000000; /* Dark text for light background */
  border: 2px solid #FFFFFF;
}

.page-resources-safe-betting-tips__button--register:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-resources-safe-betting-tips__button--login {
  background-color: #FCBC45; /* Login button background */
  color: #000000; /* Dark text for medium-light background */
  border: 2px solid #FCBC45;
}

.page-resources-safe-betting-tips__button--login:hover {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

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

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

.page-resources-safe-betting-tips__content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-resources-safe-betting-tips__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #FCBC45; /* Highlight color for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-safe-betting-tips__back-link:hover {
  color: #000000;
}

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

.page-resources-safe-betting-tips__sub-title {
  font-size: 1.6em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #000000;
}

.page-resources-safe-betting-tips__mini-title {
  font-size: 1.3em;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #000000;
}

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

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

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

.page-resources-safe-betting-tips__list-strong {
  color: #000000;
}

.page-resources-safe-betting-tips__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-resources-safe-betting-tips__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum image width */
  min-height: 200px; /* Enforce minimum image height */
}

.page-resources-safe-betting-tips__call-to-action {
  background-color: #000000; /* Dark background for CTA */
  color: #FFFFFF; /* Light text */
  padding: 50px 30px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
  margin-bottom: 40px;
}

.page-resources-safe-betting-tips__call-to-action-title {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #FCBC45; /* Highlight color for CTA title */
}

.page-resources-safe-betting-tips__call-to-action-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-safe-betting-tips__button--primary {
  background-color: #FCBC45; /* Primary CTA button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-safe-betting-tips__button--primary:hover {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-safe-betting-tips__hero-section {
    padding: 40px 15px;
  }

  .page-resources-safe-betting-tips__main-title {
    font-size: 2em;
  }

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

  .page-resources-safe-betting-tips__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-safe-betting-tips__button {
    width: 80%;
    max-width: 300px;
  }

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

  .page-resources-safe-betting-tips__section-title {
    font-size: 1.8em;
  }

  .page-resources-safe-betting-tips__sub-title {
    font-size: 1.4em;
  }

  .page-resources-safe-betting-tips__mini-title {
    font-size: 1.2em;
  }

  .page-resources-safe-betting-tips__paragraph,
  .page-resources-safe-betting-tips__list-item {
    font-size: 0.95em;
  }

  .page-resources-safe-betting-tips__content-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small on mobile */
    min-height: 200px;
  }

  .page-resources-safe-betting-tips__call-to-action-title {
    font-size: 1.8em;
  }

  .page-resources-safe-betting-tips__call-to-action-description {
    font-size: 1em;
  }

  /* Ensure no horizontal overflow */
  .page-resources-safe-betting-tips {
    overflow-x: hidden;
  }
}