/* style/resources-online-betting-safety-guide.css */

/* Base styles for the page content */
.page-resources-online-betting-safety-guide {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark (#000000), so use light text */
  background-color: #000000; /* Ensure main content area also respects dark background */
  margin: 0;
  padding: 0;
}

.page-resources-online-betting-safety-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-online-betting-safety-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #000000;
  overflow: hidden;
}

.page-resources-online-betting-safety-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3; /* Subtle background image */
}

.page-resources-online-betting-safety-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-online-betting-safety-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #ffffff;
}

.page-resources-online-betting-safety-guide__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for title */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-resources-online-betting-safety-guide__intro-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

/* General Content Sections */
.page-resources-online-betting-safety-guide__content-area {
  padding: 60px 0;
  background-color: #000000;
  color: #ffffff;
}

.page-resources-online-betting-safety-guide__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-online-betting-safety-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #26A9E0;
  border-radius: 2px;
}

.page-resources-online-betting-safety-guide__sub-title {
  font-size: 1.6em;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-resources-online-betting-safety-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #f0f0f0;
}

/* Images within content */
.page-resources-online-betting-safety-guide__image-full-width,
.page-resources-online-betting-safety-guide__image-center {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

/* Dark section for contrast */
.page-resources-online-betting-safety-guide__dark-section {
  background-color: #1a1a1a; /* Slightly lighter dark background */
  color: #ffffff;
}

.page-resources-online-betting-safety-guide__dark-section .page-resources-online-betting-safety-guide__section-title,
.page-resources-online-betting-safety-guide__dark-section .page-resources-online-betting-safety-guide__sub-title {
  color: #26A9E0;
}