/* style/resources-hongyun-game-strategy.css */
.page-resources-hongyun-game-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #FFFFFF; /* Default body background */
}

.page-resources-hongyun-game-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px);
  background-color: #017439; /* Primary brand color */
  color: #ffffff;
  overflow: hidden;
}

.page-resources-hongyun-game-strategy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-resources-hongyun-game-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-resources-hongyun-game-strategy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-hongyun-game-strategy__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFF00; /* Register/Login font color */
}

.page-resources-hongyun-game-strategy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-resources-hongyun-game-strategy__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-hongyun-game-strategy__btn-primary,
.page-resources-hongyun-game-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
}

.page-resources-hongyun-game-strategy__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-resources-hongyun-game-strategy__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-resources-hongyun-game-strategy__btn-secondary {
  background-color: #ffffff;
  color: #017439; /* Primary brand color */
  border: 2px solid #017439;
}

.page-resources-hongyun-game-strategy__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #005a2e;
  border-color: #005a2e;
}

.page-resources-hongyun-game-strategy__section {
  padding: 60px 20px;
}

.page-resources-hongyun-game-strategy__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-resources-hongyun-game-strategy__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-hongyun-game-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-hongyun-game-strategy__section-title {
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 40px;
  color: inherit; /* Inherits from section background */
}

.page-resources-hongyun-game-strategy__sub-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: inherit;
}

.page-resources-hongyun-game-strategy__content-area {
  font-size: 1.1em;
  line-height: 1.7;
}

.page-resources-hongyun-game-strategy__content-area p,
.page-resources-hongyun-game-strategy__content-area ul,
.page-resources-hongyun-game-strategy__content-area ol {
  margin-bottom: 20px;
  color: inherit;
}

.page-resources-hongyun-game-strategy__content-area a {
  color: #FFFF00; /* Link color for dark background */
  text-decoration: underline;
}

.page-resources-hongyun-game-strategy__content-area a:hover {
  color: #ffcc00;
}

.page-resources-hongyun-game-strategy__dark-bg .page-resources-hongyun-game-strategy__content-area a {
  color: #FFFF00; /* Specific link color for dark sections */
}

.page-resources-hongyun-game-strategy__light-bg .page-resources-hongyun-game-strategy__content-area a {
  color: #017439; /* Specific link color for light sections */
}

.page-resources-hongyun-game-strategy__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
}