/* style/resources-online-betting-safety-guide.css */
.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: transparent; /* Body background handled by shared.css */
}

.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); /* Fixed header offset */
  box-sizing: border-box;
}

.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: -1;
}

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

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

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

.page-resources-online-betting-safety-guide__section {
  padding: 60px 20px;
}

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

.page-resources-online-betting-safety-guide__heading {
  font-size: 2.5em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

.page-resources-online-betting-safety-guide__heading--dark-text {
  color: #333333; /* For sections with light background */
}

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

.page-resources-online-betting-safety-guide__paragraph--dark-text {
  color: #333333;
}

.page-resources-online-betting-safety-guide__btn-primary {
  display: inline-block;
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-resources-online-betting-safety-guide__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #017439;
  padding: 10px 20px;
  border: 2px solid #017439;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

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

.page-resources-online-betting-safety-guide__pillar-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
}

.page-resources-online-betting-safety-guide__card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark body bg */
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-resources-online-betting-safety-guide__pillar-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-resources-online-betting-safety-guide__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-online-betting-safety-guide__list li {
  margin-bottom: 10px;
}

.page-resources-online-betting-safety-guide__list--commitment {
  list-style: none;
  padding-left: 0;
}

.page-resources-online-betting-safety-guide__list--commitment li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.page-resources-online-betting-safety-guide__list--commitment li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #017439;
  font-weight: bold;
}

.page-resources-online-betting-safety-guide__numbered-list {
  list-style: decimal inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-online-betting-safety-guide__numbered-list li {
  margin-bottom: 10px;
}

.page-resources-online-betting-safety-guide__numbered-list--dark-text {
  color: #333333;
}

.page-resources-online-betting-safety-guide a {
  color: #FFFF00; /* Link color */
  text-decoration: underline;
}

.page-resources-online-betting-safety-guide a:hover {
  color: #f0f0f0;
}

.page-resources-online-betting-safety-guide__faq-list {
  margin-top: 40px;
}

.page-resources-online-betting-safety-guide__faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}