.page-resources-online-betting-safety-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Inherited from shared.css, explicitly set for context */
}

/* Hero Section */
.page-resources-online-betting-safety-guide__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-resources-online-betting-safety-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-online-betting-safety-guide__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

.page-resources-online-betting-safety-guide__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
  color: #ffffff;
}

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

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

.page-resources-online-betting-safety-guide__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

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

.page-resources-online-betting-safety-guide__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #ffffff; /* Changed from #FFFF00 for WCAG AA contrast */
  border: 2px solid #C30808;
}

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

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

.page-resources-online-betting-safety-guide__btn-secondary:hover {
  background-color: #ffffff;
  color: #017439;
}

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

.page-resources-online-betting-safety-guide__btn-tertiary:hover {
  background-color: #005a2e;
  border-color: #005a2e;
}

/* General Content Area */
.page-resources-online-betting-safety-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

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

.page-resources-online-betting-safety-guide__section-title--light {
  color: #ffffff;
}

.page-resources-online-betting-safety-guide__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #333333;
}

.page-resources-online-betting-safety-guide__section-intro--light {
  color: #f0f0f0;
}

/* Background colors for sections */
.page-resources-online-betting-safety-guide__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-resources-online-betting-safety-guide__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* Feature Grid */
.page-resources-online-betting-safety-guide__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-online-betting-safety-guide__feature-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
  color: #333333;
}

.page-resources-online-betting-safety-guide__feature-card:hover {
  transform: translateY(-5px);
}

.page-resources-online-betting-safety-guide__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-resources-online-betting-safety-guide__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #017439;
}

.page-resources-online-betting-safety-guide__feature-description {
  font-size: 1em;
  color: #555555;
}

/* Tips Grid */
.page-resources-online-betting-safety-guide__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-online-betting-safety-guide__tip-card {
  background-color: #f8f8f8;
  border-left: 5px solid #017439;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  color: #333333;
}

.page-resources-online-betting-safety-guide__tip-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #017439;
}

.page-resources-online-betting-safety-guide__tip-description {
  font-size: 1em;
  color: #555555;
}

/* Game Category Grid */
.page-resources-online-betting-safety-guide__game-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-online-betting-safety-guide__game-category-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-online-betting-safety-guide__game-category-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-resources-online-betting-safety-guide__game-category-description {
  font-size: 0.95em;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* FAQ Section */
.page-resources-online-betting-safety-guide__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-online-betting-safety-guide__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-resources-online-betting-safety-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  color: #017439;
}

.page-resources-online-betting-safety-guide__faq-question:hover {
  background-color: #f0f0f0;
}

.page-resources-online-betting-safety-guide__faq-question h3 {
  margin: 0;
  color: inherit;
}

.page-resources-online-betting-safety-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #017439;
}

.page-resources-online-betting-safety-guide__faq-item.active .page-resources-online-betting-safety-guide__faq-toggle {
  transform: rotate(45deg); /* Plus to X */
}

.page-resources-online-betting-safety-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

.page-resources-online-betting-safety-guide__faq-item.active .page-resources-online-betting-safety-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-resources-online-betting-safety-guide__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

/* Final CTA Section */
.page-resources-online-betting-safety-guide__cta-final {
  text-align: center;
  padding: 80px 20px;
  background-color: #017439;
  color: #ffffff;
}

.page-resources-online-betting-safety-guide__cta-final-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-online-betting-safety-guide__cta-final-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-online-betting-safety-guide__hero-title {
    font-size: 2.4em;
  }
  .page-resources-online-betting-safety-guide__section-title {
    font-size: 2em;
  }
  .page-resources-online-betting-safety-guide__cta-final-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-online-betting-safety-guide {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-online-betting-safety-guide__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }
  .page-resources-online-betting-safety-guide__hero-title {
    font-size: 2em;
  }
  .page-resources-online-betting-safety-guide__hero-description {
    font-size: 1em;
  }
  .page-resources-online-betting-safety-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }
  .page-resources-online-betting-safety-guide__btn-primary,
  .page-resources-online-betting-safety-guide__btn-secondary,
  .page-resources-online-betting-safety-guide__btn-tertiary {
    width: 100%;
    max-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-guide__content-area,
  .page-resources-online-betting-safety-guide__cta-final {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-resources-online-betting-safety-guide__feature-grid,
  .page-resources-online-betting-safety-guide__tips-grid,
  .page-resources-online-betting-safety-guide__game-category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-online-betting-safety-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-online-betting-safety-guide__feature-card,
  .page-resources-online-betting-safety-guide__tip-card,
  .page-resources-online-betting-safety-guide__game-category-card,
  .page-resources-online-betting-safety-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-resources-online-betting-safety-guide__faq-question {
    padding: 15px 20px;
  }
  .page-resources-online-betting-safety-guide__faq-answer {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-online-betting-safety-guide__hero-title {
    font-size: 1.8em;
  }
  .page-resources-online-betting-safety-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-online-betting-safety-guide__cta-final-title {
    font-size: 1.8em;
  }
  .page-resources-online-betting-safety-guide__hero-section {
    height: 450px;
  }
}