/* style/resources-game-safety-guide.css */
.page-resources-game-safety-guide {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

.page-resources-game-safety-guide .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-resources-game-safety-guide .hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.page-resources-game-safety-guide .hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffc107; /* Auxiliary color for emphasis */
}

.page-resources-game-safety-guide .hero-description {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-resources-game-safety-guide .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-resources-game-safety-guide .btn-primary {
  background-color: #ffc107;
  color: #000000;
}

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

.page-resources-game-safety-guide .btn-secondary {
  background-color: #007bff;
  color: #ffffff;
  border: 1px solid #007bff;
}

.page-resources-game-safety-guide .btn-secondary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-resources-game-safety-guide .btn-lg {
  padding: 15px 30px;
  font-size: 1.2em;
}

.page-resources-game-safety-guide .content-section {
  padding: 40px 0;
}

.page-resources-game-safety-guide .article-content {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 20px auto;
}

.page-resources-game-safety-guide .back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-game-safety-guide .back-link:hover {
  color: #0056b3;
}

.page-resources-game-safety-guide .section-title {
  font-size: 2em;
  color: #007bff;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 2px solid #ffc107;
  padding-bottom: 10px;
}

.page-resources-game-safety-guide .subsection-title {
  font-size: 1.5em;
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #ffc107;
  padding-left: 10px;
}

.page-resources-game-safety-guide p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #555;
}

.page-resources-game-safety-guide ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #555;
}

.page-resources-game-safety-guide ul li {
  margin-bottom: 8px;
}

.page-resources-game-safety-guide strong {
  color: #007bff;
}

.page-resources-game-safety-guide .image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-resources-game-safety-guide .article-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-game-safety-guide figcaption {
  font-style: italic;
  font-size: 0.9em;
  color: #777;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-game-safety-guide .hero-title {
    font-size: 2em;
  }

  .page-resources-game-safety-guide .hero-description {
    font-size: 1em;
  }

  .page-resources-game-safety-guide .section-title {
    font-size: 1.8em;
  }

  .page-resources-game-safety-guide .subsection-title {
    font-size: 1.3em;
  }

  .page-resources-game-safety-guide .btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-resources-game-safety-guide .btn-lg {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-game-safety-guide .article-content {
    padding: 20px;
  }
}

@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 .section-title {
    font-size: 1.5em;
  }

  .page-resources-game-safety-guide .subsection-title {
    font-size: 1.2em;
  }

  .page-resources-game-safety-guide .btn {
    display: block;
    margin-bottom: 10px;
    width: 100%;
  }
}