.page-resources-18jl-game-guide {
  color: #333333; /* Dark text for light body background */
}

.page-resources-18jl-game-guide__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  padding-bottom: 60px;
  background-color: #000000; /* Main color for hero background */
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-resources-18jl-game-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.page-resources-18jl-game-guide__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-resources-18jl-game-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-18jl-game-guide__hero-description {
  font-size: 1.25em;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #F0F0F0;
}

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

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

.page-resources-18jl-game-guide__cta-button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-resources-18jl-game-guide__cta-button--register:hover {
  background-color: #F0F0F0;
  transform: translateY(-2px);
}

.page-resources-18jl-game-guide__cta-button--login,
.page-resources-18jl-game-guide__cta-button--play {
  background-color: #FCBC45;
  color: #000000;
}

.page-resources-18jl-game-guide__cta-button--login:hover,
.page-resources-18jl-game-guide__cta-button--play:hover {
  background-color: #E0A030;
  transform: translateY(-2px);
}

.page-resources-18jl-game-guide__cta-button--promo {
  background-color: #000000;
  color: #FFFFFF;
  border: 1px solid #FCBC45;
}

.page-resources-18jl-game-guide__cta-button--promo:hover {
  background-color: #1a1a1a;
  transform: translateY(-2px);
}

.page-resources-18jl-game-guide__content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.8;
  font-size: 1.125em; /* 18px */
}

.page-resources-18jl-game-guide__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-18jl-game-guide__back-link:hover {
  color: #E0A030;
  text-decoration: underline;
}

.page-resources-18jl-game-guide__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.page-resources-18jl-game-guide__sub-section-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 35px;
  margin-bottom: 25px;
  line-height: 1.4;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-resources-18jl-game-guide__paragraph {
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-18jl-game-guide__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-18jl-game-guide__image--centered {
  text-align: center;
}

.page-resources-18jl-game-guide__call-to-action {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-resources-18jl-game-guide__hero-title {
    font-size: 2.5em;
  }

  .page-resources-18jl-game-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-18jl-game-guide__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-18jl-game-guide__cta-button {
    width: 100%;
    max-width: 300px;
  }

  .page-resources-18jl-game-guide__content-area {
    padding: 20px 15px;
    font-size: 1em; /* 16px */
  }

  .page-resources-18jl-game-guide__section-title {
    font-size: 2em;
  }

  .page-resources-18jl-game-guide__sub-section-title {
    font-size: 1.5em;
  }

  /* Ensure images are responsive and don't overflow */
  .page-resources-18jl-game-guide img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-resources-18jl-game-guide__hero-title {
    font-size: 2em;
  }

  .page-resources-18jl-game-guide__hero-description {
    font-size: 0.9em;
  }

  .page-resources-18jl-game-guide__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}