/* style/resources-game-safety-guide.css */
.page-resources-game-safety-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-game-safety-guide__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px; /* Adjusted padding */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-resources-game-safety-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Slightly darken image for text readability, NO COLOR CHANGE FILTER */
}

.page-resources-game-safety-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-game-safety-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #F2C94C; /* Accent color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-resources-game-safety-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-resources-game-safety-guide__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-game-safety-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
}

.page-resources-game-safety-guide__btn--primary {
  background-color: #F2C94C; /* Accent color */
  color: #0A2342; /* Main color */
  border: none;
}

.page-resources-game-safety-guide__btn--primary:hover {
  background-color: #e0b83b;
  transform: translateY(-2px);
}

.page-resources-game-safety-guide__btn--secondary {
  background-color: #0A2342; /* Main color */
  color: #F2C94C; /* Accent color */
  border: 2px solid #F2C94C;
}

.page-resources-game-safety-guide__btn--secondary:hover {
  background-color: #1a3c61;
  transform: translateY(-2px);
}

.page-resources-game-safety-guide__content-area {
  max-width: 800px; /* Optimal reading width */
  margin: 0 auto;
  padding: 40px 20px;
}

.page-resources-game-safety-guide__back-link,
.page-resources-game-safety-guide__back-link-bottom {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1em;
}

.page-resources-game-safety-guide__back-link a,
.page-resources-game-safety-guide__back-link-bottom a {
  color: #0A2342;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-game-safety-guide__back-link a:hover,
.page-resources-game-safety-guide__back-link-bottom a:hover {
  text-decoration: underline;
}

.page-resources-game-safety-guide__section-title {
  font-size: 2.2em;
  color: #0A2342; /* Main color */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 3px solid #F2C94C;
  padding-bottom: 10px;
}

.page-resources-game-safety-guide__subsection-title {
  font-size: 1.6em;
  color: #0A2342; /* Main color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-game-safety-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-resources-game-safety-guide__paragraph a {
  color: #0A2342;
  text-decoration: underline;
}

.page-resources-game-safety-guide__paragraph a:hover {
  color: #F2C94C;
}

.page-resources-game-safety-guide__image {
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  height: auto; /* Ensures images are responsive */
  min-width: 200px;
  min-height: 200px;
}

.page-resources-game-safety-guide__keyword {
  font-weight: bold;
  color: #0A2342;
}

.page-resources-game-safety-guide__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
}

.page-resources-game-safety-guide__faq-question {
  font-size: 1.3em;
  color: #0A2342;
  margin-bottom: 10px;
}

.page-resources-game-safety-guide__faq-answer {
  font-size: 1.1em;
  color: #555555;
}

.page-resources-game-safety-guide__cta-section {
  background-color: #0A2342; /* Main color */
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-game-safety-guide__cta-title {
  font-size: 2.5em;
  color: #F2C94C; /* Accent color */
  margin-bottom: 20px;
}

.page-resources-game-safety-guide__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-game-safety-guide__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
  background-color: #F2C94C;
  color: #0A2342;
  border: none;
}

.page-resources-game-safety-guide__btn--large:hover {
  background-color: #e0b83b;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-game-safety-guide__hero-title {
    font-size: 2.8em;
  }
}

@media (max-width: 768px) {
  .page-resources-game-safety-guide {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }
  .page-resources-game-safety-guide__hero-section {
    padding: 60px 15px;
    min-height: 400px;
  }
  .page-resources-game-safety-guide__hero-title {
    font-size: 2.2em;
  }
  .page-resources-game-safety-guide__hero-description {
    font-size: 1em;
  }
  .page-resources-game-safety-guide__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-game-safety-guide__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-resources-game-safety-guide__content-area {
    padding: 30px 15px;
  }
  .page-resources-game-safety-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-game-safety-guide__subsection-title {
    font-size: 1.4em;
  }
  .page-resources-game-safety-guide__paragraph,
  .page-resources-game-safety-guide__faq-answer {
    font-size: 1em;
  }
  .page-resources-game-safety-guide__image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-resources-game-safety-guide__cta-title {
    font-size: 2em;
  }
  .page-resources-game-safety-guide__cta-description {
    font-size: 1.1em;
  }
  .page-resources-game-safety-guide__btn--large {
    width: 90%;
  }
  /* Mobile content image constraint */
  .page-resources-game-safety-guide img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-resources-game-safety-guide__hero-title {
    font-size: 1.8em;
  }
  .page-resources-game-safety-guide__hero-description {
    font-size: 0.9em;
  }
  .page-resources-game-safety-guide__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-resources-game-safety-guide__section-title {
    font-size: 1.6em;
  }
  .page-resources-game-safety-guide__subsection-title {
    font-size: 1.2em;
  }
  .page-resources-game-safety-guide__cta-title {
    font-size: 1.8em;
  }
  .page-resources-game-safety-guide__cta-description {
    font-size: 1em;
  }
}