.page-resources-phdream11-game-guide {
  color: #FFFFFF; /* Text color for dark background */
  background-color: var(--secondary-color); /* Assuming shared.css defines a dark secondary-color */
  padding-top: var(--header-offset, 120px);
}

.page-resources-phdream11-game-guide__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #000000; /* Dark background for hero */
  position: relative;
  overflow: hidden;
}

.page-resources-phdream11-game-guide__hero-content {
  z-index: 1;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-resources-phdream11-game-guide__hero-title {
  font-size: 3.5em;
  color: #FCBC45;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.page-resources-phdream11-game-guide__hero-description {
  font-size: 1.2em;
  color: #FFFFFF;
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-resources-phdream11-game-guide__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 0 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-phdream11-game-guide__hero-button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-resources-phdream11-game-guide__hero-button--register:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.page-resources-phdream11-game-guide__hero-button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-resources-phdream11-game-guide__hero-button--login:hover {
  background-color: #e6a73a;
  transform: translateY(-2px);
}

.page-resources-phdream11-game-guide__hero-image {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
}

.page-resources-phdream11-game-guide__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

.page-resources-phdream11-game-guide__content-area {
  max-width: 800px; /* Content width for readability */
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #000000; /* Dark background for content */
  color: #FFFFFF;
  line-height: 1.7;
}

.page-resources-phdream11-game-guide__section-title {
  font-size: 2.5em;
  color: #FCBC45;
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 15px;
}

.page-resources-phdream11-game-guide__sub-title {
  font-size: 1.8em;
  color: #FFFFFF;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FCBC45;
  padding-left: 15px;
}

.page-resources-phdream11-game-guide__mini-title {
  font-size: 1.4em;
  color: #FCBC45;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-phdream11-game-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-resources-phdream11-game-guide__paragraph a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-phdream11-game-guide__paragraph a:hover {
  text-decoration: underline;
}

.page-resources-phdream11-game-guide__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-resources-phdream11-game-guide__list-item {
  margin-bottom: 10px;
}

.page-resources-phdream11-game-guide__list-item strong {
  color: #FCBC45;
}

.page-resources-phdream11-game-guide__list-item a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-phdream11-game-guide__list-item a:hover {
  text-decoration: underline;
}

.page-resources-phdream11-game-guide__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-resources-phdream11-game-guide__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  min-width: 200px;
  min-height: 200px;
}

.page-resources-phdream11-game-guide__cta-buttons {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 40px;
}

.page-resources-phdream11-game-guide__cta-button {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 0 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

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

.page-resources-phdream11-game-guide__cta-button--register:hover {
  background-color: #e0e0e0;
  transform: translateY(-3px);
}

.page-resources-phdream11-game-guide__cta-button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-resources-phdream11-game-guide__cta-button--login:hover {
  background-color: #e6a73a;
  transform: translateY(-3px);
}

.page-resources-phdream11-game-guide__return-link {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
}

.page-resources-phdream11-game-guide__return-link a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-phdream11-game-guide__return-link a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-phdream11-game-guide__hero-title {
    font-size: 2.5em;
  }

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

  .page-resources-phdream11-game-guide__hero-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 10px 5px;
  }

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

  .page-resources-phdream11-game-guide__sub-title {
    font-size: 1.5em;
  }

  .page-resources-phdream11-game-guide__mini-title {
    font-size: 1.2em;
  }

  .page-resources-phdream11-game-guide__paragraph,
  .page-resources-phdream11-game-guide__list {
    font-size: 1em;
  }

  .page-resources-phdream11-game-guide__cta-button {
    padding: 15px 25px;
    font-size: 1.1em;
    margin: 10px 5px;
  }

  .page-resources-phdream11-game-guide__hero-section {
    padding: 60px 15px 30px;
  }

  .page-resources-phdream11-game-guide__content-area {
    padding: 40px 15px;
  }

  /* Ensure images do not overflow on mobile */
  .page-resources-phdream11-game-guide img {
    max-width: 100%;
    height: auto;
  }
}