.page-blog-zj3979-game-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #f4f4f4; /* From shared.css body background */
}

.page-blog-zj3979-game-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-zj3979-game-features__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  overflow: hidden;
}

.page-blog-zj3979-game-features__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

.page-blog-zj3979-game-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image for text readability */
}

.page-blog-zj3979-game-features__hero-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  max-width: 800px;
  margin-top: -200px; /* Pull content up over the image, but not overlapping text */
  background-color: rgba(8, 22, 15, 0.9); /* Dark background for text readability */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #F2FFF6; /* Text Main */
}

.page-blog-zj3979-game-features__main-title {
  font-size: clamp(2em, 5vw, 3em);
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-zj3979-game-features__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-zj3979-game-features__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-blog-zj3979-game-features__cta-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-zj3979-game-features__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-blog-zj3979-game-features__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-zj3979-game-features__btn-secondary {
  background-color: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-blog-zj3979-game-features__btn-secondary:hover {
  background-color: #2AD16F;
  color: #ffffff;
}

.page-blog-zj3979-game-features__section-title {
  font-size: 2.2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #11A84E; /* Main color for titles */
}

.page-blog-zj3979-game-features__introduction-section,
.page-blog-zj3979-game-features__promotions-section,
.page-blog-zj3979-game-features__tips-section,
.page-blog-zj3979-game-features__faq-section {
  padding: 60px 0;
  background-color: #f4f4f4; /* Light background */
  color: #333333;
}

.page-blog-zj3979-game-features__dark-bg {
  background-color: #08160F; /* Background color */
  color: #F2FFF6; /* Text Main */
}

.page-blog-zj3979-game-features__dark-bg .page-blog-zj3979-game-features__section-title {
  color: #57E38D; /* Glow for titles on dark background */
}

.page-blog-zj3979-game-features__text-content {
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-zj3979-game-features__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-zj3979-game-features__feature-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-zj3979-game-features__feature-card:hover {
  transform: translateY(-5px);
}

.page-blog-zj3979-game-features__feature-icon {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-blog-zj3979-game-features__feature-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-zj3979-game-features__promotion-list,
.page-blog-zj3979-game-features__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-zj3979-game-features__promotion-item,
.page-blog-zj3979-game-features__tip-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-blog-zj3979-game-features__promotion-item strong,
.page-blog-zj3979-game-features__tip-item strong {
  color: #11A84E;
}

.page-blog-zj3979-game-features__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-blog-zj3979-game-features__step-by-step {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.page-blog-zj3979-game-features__step-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-zj3979-game-features__step-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-blog-zj3979-game-features__step-title {
  font-size: 1.8em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-zj3979-game-features__register-steps {
  list-style: decimal;
  text-align: left;
  margin: 20px auto;
  max-width: 300px;
  color: #A7D9B8;
}

.page-blog-zj3979-game-features__register-steps li {
  margin-bottom: 10px;
}

.page-blog-zj3979-game-features__faq-list {
  margin-top: 30px;
}

.page-blog-zj3979-game-features__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-blog-zj3979-game-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  color: #333333;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
  list-style: none; /* For details/summary */
}

.page-blog-zj3979-game-features__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-zj3979-game-features__faq-item[open] .page-blog-zj3979-game-features__faq-question {
  border-bottom: 1px solid #ddd;
}

.page-blog-zj3979-game-features__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #11A84E;
  transition: transform 0.3s ease;
}

.page-blog-zj3979-game-features__faq-item[open] .page-blog-zj3979-game-features__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-zj3979-game-features__faq-answer {
  padding: 20px;
  font-size: 1em;
  color: #555555;
  background-color: #ffffff;
}

.page-blog-zj3979-game-features__faq-answer p {
  margin-bottom: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-blog-zj3979-game-features__container,
  .page-blog-zj3979-game-features__hero-section,
  .page-blog-zj3979-game-features__introduction-section,
  .page-blog-zj3979-game-features__features-section,
  .page-blog-zj3979-game-features__promotions-section,
  .page-blog-zj3979-game-features__download-register-section,
  .page-blog-zj3979-game-features__tips-section,
  .page-blog-zj3979-game-features__conclusion-section,
  .page-blog-zj3979-game-features__faq-section,
  .page-blog-zj3979-game-features__hero-buttons,
  .page-blog-zj3979-game-features__feature-grid,
  .page-blog-zj3979-game-features__step-by-step {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow-x: hidden !important;
  }

  .page-blog-zj3979-game-features__hero-content {
    margin-top: -100px; /* Adjust for smaller screens */
    padding: 15px;
  }

  .page-blog-zj3979-game-features__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }

  .page-blog-zj3979-game-features__hero-description {
    font-size: 1em;
  }

  .page-blog-zj3979-game-features__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-zj3979-game-features__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-blog-zj3979-game-features__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-zj3979-game-features__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-zj3979-game-features__step-card {
    flex: 1 1 100%;
  }

  .page-blog-zj3979-game-features img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-zj3979-game-features video,
  .page-blog-zj3979-game-features__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-zj3979-game-features__video-section,
  .page-blog-zj3979-game-features__video-container,
  .page-blog-zj3979-game-features__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important;
  }

  .page-blog-zj3979-game-features__video-section {
    padding-top: 10px !important;
  }
}