.page-index-new-user-guide {
  color: #ffffff; /* Light text on dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

.page-index-new-user-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-new-user-guide__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-new-user-guide__section:nth-of-type(even) {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for contrast */
}

.page-index-new-user-guide__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for hero section */
}

.page-index-new-user-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-index-new-user-guide__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-index-new-user-guide__hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  text-align: center;
  max-width: 800px;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.page-index-new-user-guide__hero-title {
  font-size: 3.5em;
  color: #D4AF37;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-index-new-user-guide__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-index-new-user-guide__section-title {
  font-size: 2.8em;
  color: #D4AF37;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.page-index-new-user-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #D4AF37;
  border-radius: 2px;
}

.page-index-new-user-guide__text {
  font-size: 1.1em;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto 20px auto;
  text-align: left;
}

.page-index-new-user-guide__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-index-new-user-guide__button--primary {
  background-color: #D4AF37;
  color: #1A202C;
}

.page-index-new-user-guide__button--primary:hover {
  background-color: #e1c773;
  color: #000000;
}

.page-index-new-user-guide__button--secondary {
  background-color: #1A202C;
  color: #D4AF37;
  border: 2px solid #D4AF37;
}

.page-index-new-user-guide__button--secondary:hover {
  background-color: #D4AF37;
  color: #1A202C;
}

.page-index-new-user-guide__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-index-new-user-guide__cta-center {
  margin-top: 40px;
  text-align: center;
}

.page-index-new-user-guide__step-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-new-user-guide__card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-new-user-guide__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-index-new-user-guide__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-new-user-guide__card-title {
  font-size: 1.8em;
  color: #D4AF37;
  margin-bottom: 15px;
}

.page-index-new-user-guide__card-text {
  font-size: 1em;
  color: #c0c0c0;
  text-align: center;
}

.page-index-new-user-guide__ordered-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-index-new-user-guide__list-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  margin-bottom: 15px;
  border-left: 5px solid #D4AF37;
  border-radius: 5px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-index-new-user-guide__list-item strong {
  color: #D4AF37;
}

.page-index-new-user-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-new-user-guide__feature-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
}

.page-index-new-user-guide__feature-icon {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-index-new-user-guide__feature-title {
  font-size: 1.6em;
  color: #D4AF37;
  margin-bottom: 10px;
}

.page-index-new-user-guide__feature-description {
  font-size: 1em;
  color: #c0c0c0;
}

.page-index-new-user-guide__game-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-new-user-guide__game-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-new-user-guide__game-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-index-new-user-guide__game-link {
  text-decoration: none;
  color: inherit;
  display: block;
  padding-bottom: 20px;
}

.page-index-new-user-guide__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-index-new-user-guide__game-title {
  font-size: 1.5em;
  color: #D4AF37;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-index-new-user-guide__game-description {
  font-size: 0.95em;
  color: #c0c0c0;
  padding: 0 20px;
}

.page-index-new-user-guide__tips-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-index-new-user-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  text-align: left;
}

.page-index-new-user-guide__faq-question {
  font-size: 1.4em;
  color: #D4AF37;
  margin-bottom: 10px;
}

.page-index-new-user-guide__faq-answer {
  font-size: 1em;
  color: #e0e0e0;
}

.page-index-new-user-guide__final-cta-content {
  background-color: #1A202C;
  padding: 60px 20px;
  border-radius: 15px;
  margin-top: 60px;
}

.page-index-new-user-guide__final-cta-content .page-index-new-user-guide__section-title {
  color: #D4AF37;
}

.page-index-new-user-guide__final-cta-content .page-index-new-user-guide__text {
  color: #ffffff;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-new-user-guide__hero-title {
    font-size: 3em;
  }

  .page-index-new-user-guide__hero-description {
    font-size: 1.2em;
  }

  .page-index-new-user-guide__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-index-new-user-guide__hero-title {
    font-size: 2.5em;
  }

  .page-index-new-user-guide__hero-description {
    font-size: 1em;
  }

  .page-index-new-user-guide__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-new-user-guide__button {
    width: 100%;
  }

  .page-index-new-user-guide__section {
    padding: 40px 0;
  }

  .page-index-new-user-guide__section-title {
    font-size: 1.8em;
  }

  .page-index-new-user-guide__text {
    font-size: 0.95em;
  }

  .page-index-new-user-guide__card-image, .page-index-new-user-guide__feature-icon, .page-index-new-user-guide__game-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and do not overflow */
  }

  .page-index-new-user-guide__card, .page-index-new-user-guide__feature-item, .page-index-new-user-guide__game-item, .page-index-new-user-guide__faq-item {
    padding: 20px;
  }

  .page-index-new-user-guide__card-title {
    font-size: 1.5em;
  }

  .page-index-new-user-guide__feature-title {
    font-size: 1.3em;
  }

  .page-index-new-user-guide__game-title {
    font-size: 1.3em;
  }

  .page-index-new-user-guide__faq-question {
    font-size: 1.2em;
  }

  /* Mobile content image responsiveness */
  .page-index-new-user-guide img {
    max-width: 100%;
    height: auto;
  }
  .page-index-new-user-guide__container {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-index-new-user-guide__hero-content {
    padding: 20px;
  }

  .page-index-new-user-guide__hero-title {
    font-size: 2em;
  }

  .page-index-new-user-guide__hero-description {
    font-size: 0.9em;
  }

  .page-index-new-user-guide__button--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }

  .page-index-new-user-guide__section-title {
    font-size: 1.6em;
  }

  .page-index-new-user-guide__text {
    font-size: 0.9em;
  }
}