/* style/resources-y8-2-player-getting-started-guide.css */
.page-resources-y8-2-player-getting-started-guide {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

.page-resources-y8-2-player-getting-started-guide__hero-section {
  background-color: #0A2463;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-y8-2-player-getting-started-guide__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-resources-y8-2-player-getting-started-guide__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-y8-2-player-getting-started-guide__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-resources-y8-2-player-getting-started-guide__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-y8-2-player-getting-started-guide__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-y8-2-player-getting-started-guide__hero-image {
  margin-top: 40px;
}

.page-resources-y8-2-player-getting-started-guide__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-y8-2-player-getting-started-guide__content-area {
  max-width: 800px; /* Content width for comfortable reading */
  margin: 0 auto;
  padding: 40px 20px;
}

.page-resources-y8-2-player-getting-started-guide__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-y8-2-player-getting-started-guide__back-link:hover {
  color: #FFD700;
}

.page-resources-y8-2-player-getting-started-guide__article-heading {
  font-size: 2em;
  color: #0A2463;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-y8-2-player-getting-started-guide__article-subheading {
  font-size: 1.5em;
  color: #0A2463;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-y8-2-player-getting-started-guide__article-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-resources-y8-2-player-getting-started-guide__inline-link {
  color: #0A2463;
  text-decoration: underline;
  font-weight: bold;
}

.page-resources-y8-2-player-getting-started-guide__inline-link:hover {
  color: #FFD700;
}

.page-resources-y8-2-player-getting-started-guide__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-resources-y8-2-player-getting-started-guide__image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-resources-y8-2-player-getting-started-guide__cta-section,
.page-resources-y8-2-player-getting-started-guide__final-cta {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-y8-2-player-getting-started-guide__hero-title {
    font-size: 2.2em;
  }

  .page-resources-y8-2-player-getting-started-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-y8-2-player-getting-started-guide__article-heading {
    font-size: 1.6em;
  }

  .page-resources-y8-2-player-getting-started-guide__article-subheading {
    font-size: 1.3em;
  }

  .page-resources-y8-2-player-getting-started-guide__article-paragraph {
    font-size: 1em;
  }

  .page-resources-y8-2-player-getting-started-guide__content-area {
    padding: 20px 15px;
  }

  /* Ensure content images do not overflow on mobile */
  .page-resources-y8-2-player-getting-started-guide__image-wrapper img {
    max-width: 100%;
    height: auto;
  }

  .page-resources-y8-2-player-getting-started-guide {
    overflow-x: hidden;
  }
}