.page-resources-online-betting-safety-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light background */
  background-color: var(--background-dark); /* Use shared background variable */
}

.page-resources-online-betting-safety-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  background-color: #017439; /* Brand primary color for hero */
  color: #ffffff;
  overflow: hidden;
}

.page-resources-online-betting-safety-tips__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
  margin-bottom: 40px;
}

.page-resources-online-betting-safety-tips__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-resources-online-betting-safety-tips__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ffffff;
}

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

.page-resources-online-betting-safety-tips__btn-primary,
.page-resources-online-betting-safety-tips__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-resources-online-betting-safety-tips__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #ffffff; /* Ensure high contrast */
  border: 2px solid #C30808;
}

.page-resources-online-betting-safety-tips__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-resources-online-betting-safety-tips__btn-secondary {
  background-color: #ffffff;
  color: #017439;
  border: 2px solid #017439;
}

.page-resources-online-betting-safety-tips__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #005a2d;
  border-color: #005a2d;
}

.page-resources-online-betting-safety-tips__btn-primary--large,
.page-resources-online-betting-safety-tips__btn-secondary--large {
  padding: 18px 35px;
  font-size: 1.1em;
}

.page-resources-online-betting-safety-tips__btn-center {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 300px;
}

.page-resources-online-betting-safety-tips__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-resources-online-betting-safety-tips__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-resources-online-betting-safety-tips__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff; /* Explicitly white background for content */
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border-radius: 10px;
  margin-top: -50px; /* Overlap with hero for visual flow */
  position: relative;
  z-index: 2;
}

.page-resources-online-betting-safety-tips__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-online-betting-safety-tips__section-title {
  font-size: 2.5em;
  color: #017439;
  margin-bottom: 30px;
  text-align: center;
}

.page-resources-online-betting-safety-tips__sub-title {
  font-size: 1.8em;
  color: #017439;
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-resources-online-betting-safety-tips p {
  margin-bottom: 1em;
  font-size: 1.1em;
  color: #333333;
}

.page-resources-online-betting-safety-tips__content-image {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-resources-online-betting-safety-tips__dark-section {
  background-color: #017439;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-resources-online-betting-safety-tips__section-title--white {
  color: #ffffff;
}

.page-resources-online-betting-safety-tips__text-block--white {
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.15em;
}

.page-resources-online-betting-safety-tips__cta-group--center {
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-online-betting-safety-tips__hero-title {
    font-size: 2.8em;
  }
  .page-resources-online-betting-safety-tips__section-title {
    font-size: 2em;
  }
  .page-resources-online-betting-safety-tips__sub-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-resources-online-betting-safety-tips__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-online-betting-safety-tips__hero-title {
    font-size: 2em;
  }
  .page-resources-online-betting-safety-tips__hero-description {
    font-size: 1em;
  }
  .page-resources-online-betting-safety-tips__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-online-betting-safety-tips__btn-primary,
  .page-resources-online-betting-safety-tips__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-online-betting-safety-tips__cta-group,
  .page-resources-online-betting-safety-tips__button-group,
  .page-resources-online-betting-safety-tips__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-resources-online-betting-safety-tips__cta-group--center {
    flex-direction: column;
  }
  .page-resources-online-betting-safety-tips__content-area {
    padding: 30px 15px;
    margin-top: -30px;
  }
  .page-resources-online-betting-safety-tips__section-title {
    font-size: 1.8em;
  }
  .page-resources-online-betting-safety-tips__sub-title {
    font-size: 1.3em;
  }
  .page-resources-online-betting-safety-tips p {
    font-size: 1em;
  }
  .page-resources-online-betting-safety-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-online-betting-safety-tips__hero-image-wrapper,
  .page-resources-online-betting-safety-tips__content-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-resources-online-betting-safety-tips__dark-section {
    padding: 50px 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-online-betting-safety-tips__hero-title {
    font-size: 1.8em;
  }
  .page-resources-online-betting-safety-tips__hero-description {
    font-size: 0.95em;
  }
  .page-resources-online-betting-safety-tips__section-title {
    font-size: 1.6em;
  }
  .page-resources-online-betting-safety-tips__sub-title {
    font-size: 1.2em;
  }
  .page-resources-online-betting-safety-tips__btn-primary--large,
  .page-resources-online-betting-safety-tips__btn-secondary--large {
    padding: 12px 20px;
    font-size: 1em;
  }
}