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

.page-resources-new-player-guide__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

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

.page-resources-new-player-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
  padding: 30px;
  border-radius: 10px;
}

.page-resources-new-player-guide__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Primary brand color */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-new-player-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-new-player-guide__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Primary brand color */
  color: #1E90FF; /* Auxiliary brand color for text, ensuring contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
}

.page-resources-new-player-guide__cta-button:hover {
  background-color: #1E90FF; /* Auxiliary brand color on hover */
  color: #FFD700; /* Primary brand color for text on hover */
  border-color: #1E90FF;
}

.page-resources-new-player-guide__cta-button--centered {
  display: block;
  margin: 40px auto;
  max-width: 300px;
}

.page-resources-new-player-guide__table-of-contents {
  max-width: 800px;
  margin: 40px auto;
  background-color: #f9f9f9;
  border-left: 5px solid #1E90FF; /* Auxiliary brand color */
  padding: 20px 30px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.page-resources-new-player-guide__toc-title {
  font-size: 1.8em;
  color: #1E90FF; /* Auxiliary brand color */
  margin-bottom: 20px;
  text-align: center;
}

.page-resources-new-player-guide__toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-resources-new-player-guide__toc-list li {
  margin-bottom: 10px;
}

.page-resources-new-player-guide__toc-link {
  text-decoration: none;
  color: #333333;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-new-player-guide__toc-link:hover {
  color: #FFD700; /* Primary brand color on hover */
}

.page-resources-new-player-guide__article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-resources-new-player-guide__section {
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 1px dashed #cccccc;
}

.page-resources-new-player-guide__section:last-of-type {
  border-bottom: none;
}

.page-resources-new-player-guide__section-title {
  font-size: 2.2em;
  color: #1E90FF; /* Auxiliary brand color */
  margin-bottom: 25px;
  text-align: left;
  border-left: 5px solid #FFD700; /* Primary brand color accent */
  padding-left: 15px;
}

.page-resources-new-player-guide__sub-title {
  font-size: 1.6em;
  color: #333333;
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-resources-new-player-guide__article-content p {
  margin-bottom: 20px;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-resources-new-player-guide__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-resources-new-player-guide__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-resources-new-player-guide__inline-link {
  color: #1E90FF; /* Auxiliary brand color */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-resources-new-player-guide__inline-link:hover {
  color: #FFD700; /* Primary brand color on hover */
}

.page-resources-new-player-guide__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  min-width: 200px;
  min-height: 200px;
}

.page-resources-new-player-guide__related-resources {
  max-width: 800px;
  margin: 60px auto 40px auto;
  padding: 30px;
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.page-resources-new-player-guide__related-title {
  font-size: 2em;
  color: #1E90FF; /* Auxiliary brand color */
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-new-player-guide__related-list {
  list-style: none;
  padding: 0;
  text-align: center;
}

.page-resources-new-player-guide__related-list li {
  margin-bottom: 12px;
}

.page-resources-new-player-guide__related-link {
  text-decoration: none;
  color: #333333;
  font-size: 1.1em;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 5px 10px;
  border-bottom: 1px dashed #ccc;
}

.page-resources-new-player-guide__related-link:hover {
  color: #FFD700; /* Primary brand color on hover */
  border-bottom-color: #FFD700;
}

.page-resources-new-player-guide__back-to-resources-button {
  display: block;
  margin-top: 40px;
  text-align: center;
  color: #1E90FF; /* Auxiliary brand color */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-new-player-guide__back-to-resources-button:hover {
  color: #FFD700; /* Primary brand color on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-new-player-guide {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }

  .page-resources-new-player-guide__hero-section {
    min-height: 400px;
    padding: 40px 15px;
  }

  .page-resources-new-player-guide__hero-title {
    font-size: 2.2em;
  }

  .page-resources-new-player-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-new-player-guide__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-new-player-guide__table-of-contents,
  .page-resources-new-player-guide__article-content,
  .page-resources-new-player-guide__related-resources {
    padding: 20px 15px;
    margin: 20px auto;
  }

  .page-resources-new-player-guide__toc-title,
  .page-resources-new-player-guide__section-title,
  .page-resources-new-player-guide__related-title {
    font-size: 1.6em;
    text-align: center;
    padding-left: 0;
    border-left: none;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 10px;
  }

  .page-resources-new-player-guide__sub-title {
    font-size: 1.4em;
  }

  .page-resources-new-player-guide__article-content p,
  .page-resources-new-player-guide__list li {
    font-size: 0.95em;
  }

  .page-resources-new-player-guide__image-full-width {
    max-width: 100%;
    height: auto;
  }
}