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

.page-resources-z888-game-guides__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Hero Section */
.page-resources-z888-game-guides__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
}

.page-resources-z888-game-guides__dark-bg {
  background-color: #017439;
  color: #FFFFFF;
}

.page-resources-z888-game-guides__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

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

.page-resources-z888-game-guides__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly dim the background image for text readability */
}

.page-resources-z888-game-guides__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  border-radius: 10px;
}

.page-resources-z888-game-guides__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFF00; /* Register/Login font color for prominence */
}

.page-resources-z888-game-guides__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-resources-z888-game-guides__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Buttons */
.page-resources-z888-game-guides__btn-primary,
.page-resources-z888-game-guides__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  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;
  box-sizing: border-box;
}

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

.page-resources-z888-game-guides__btn-primary:hover {
  background-color: #e02020;
  border-color: #e02020;
}

.page-resources-z888-game-guides__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-resources-z888-game-guides__btn-secondary:hover {
  background-color: #FFFFFF;
  color: #017439;
}

/* Sections */
.page-resources-z888-game-guides__introduction-section,
.page-resources-z888-game-guides__getting-started-section,
.page-resources-z888-game-guides__game-types-section,
.page-resources-z888-game-guides__promotions-section,
.page-resources-z888-game-guides__tips-section,
.page-resources-z888-game-guides__support-section,
.page-resources-z888-game-guides__faq-section,
.page-resources-z888-game-guides__conclusion-section {
  padding: 60px 0;
}

.page-resources-z888-game-guides__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #017439;
}

.page-resources-z888-game-guides__dark-bg .page-resources-z888-game-guides__section-title {
  color: #FFFFFF;
}

.page-resources-z888-game-guides__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

/* Getting Started Grid */
.page-resources-z888-game-guides__grid-two-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-z888-game-guides__card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-resources-z888-game-guides__card-title {
  font-size: 1.8em;
  color: #017439;
  margin-bottom: 20px;
}

.page-resources-z888-game-guides__ordered-list,
.page-resources-z888-game-guides__unordered-list {
  list-style-position: inside;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-resources-z888-game-guides__ordered-list li,
.page-resources-z888-game-guides__unordered-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-resources-z888-game-guides__card .page-resources-z888-game-guides__btn-primary,
.page-resources-z888-game-guides__card .page-resources-z888-game-guides__btn-secondary {
  margin-top: auto; /* Push button to bottom */
  align-self: center; /* Center button horizontally */
}

/* Game Types Grid */
.page-resources-z888-game-guides__game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-z888-game-guides__game-card {
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-z888-game-guides__game-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-z888-game-guides__game-card-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 10px;
}

.page-resources-z888-game-guides__game-card-title a {
  color: #017439;
  text-decoration: none;
}

.page-resources-z888-game-guides__game-card-title a:hover {
  text-decoration: underline;
}

.page-resources-z888-game-guides__game-card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-resources-z888-game-guides__game-card .page-resources-z888-game-guides__btn-primary {
  margin-top: auto;
}

/* Promotions Section */
.page-resources-z888-game-guides__promotion-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Tips Section */
.page-resources-z888-game-guides__grid-columns-three {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-z888-game-guides__tip-card {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.page-resources-z888-game-guides__tip-card-title {
  font-size: 1.4em;
  color: #017439;
  margin-bottom: 15px;
}

/* Support Section */
.page-resources-z888-game-guides__support-list {
  list-style: none;
  padding: 0;
  text-align: center;
}

.page-resources-z888-game-guides__support-list li {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.page-resources-z888-game-guides__support-list li strong {
  color: #FFFF00;
}

.page-resources-z888-game-guides__support-section .page-resources-z888-game-guides__btn-primary {
  margin-top: 30px;
}

/* FAQ Section */
.page-resources-z888-game-guides__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-z888-game-guides__faq-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-z888-game-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #017439;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.page-resources-z888-game-guides__faq-question:hover {
  background-color: #eef;
}

.page-resources-z888-game-guides__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-z888-game-guides__faq-item.active .page-resources-z888-game-guides__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-z888-game-guides__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-resources-z888-game-guides__faq-item.active .page-resources-z888-game-guides__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-resources-z888-game-guides__faq-answer .page-resources-z888-game-guides__paragraph {
  margin-bottom: 10px;
}

.page-resources-z888-game-guides__faq-answer .page-resources-z888-game-guides__btn-secondary {
  margin-top: 15px;
  color: #017439;
  border-color: #017439;
}

.page-resources-z888-game-guides__faq-answer .page-resources-z888-game-guides__btn-secondary:hover {
  background-color: #017439;
  color: #FFFFFF;
}

/* Conclusion Section */
.page-resources-z888-game-guides__conclusion-section .page-resources-z888-game-guides__btn-primary {
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-z888-game-guides__hero-title {
    font-size: 3em;
  }
  .page-resources-z888-game-guides__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-z888-game-guides {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-z888-game-guides__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    min-height: 500px;
  }

  .page-resources-z888-game-guides__hero-content {
    padding: 15px;
  }

  .page-resources-z888-game-guides__hero-title {
    font-size: 2.2em;
  }

  .page-resources-z888-game-guides__hero-description {
    font-size: 1em;
  }

  .page-resources-z888-game-guides__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-z888-game-guides__btn-primary,
  .page-resources-z888-game-guides__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-z888-game-guides__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-z888-game-guides__introduction-section,
  .page-resources-z888-game-guides__getting-started-section,
  .page-resources-z888-game-guides__game-types-section,
  .page-resources-z888-game-guides__promotions-section,
  .page-resources-z888-game-guides__tips-section,
  .page-resources-z888-game-guides__support-section,
  .page-resources-z888-game-guides__faq-section,
  .page-resources-z888-game-guides__conclusion-section {
    padding: 40px 0;
  }

  .page-resources-z888-game-guides__container {
    padding: 0 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  .page-resources-z888-game-guides__grid-two-columns,
  .page-resources-z888-game-guides__game-cards-grid,
  .page-resources-z888-game-guides__grid-columns-three {
    grid-template-columns: 1fr;
  }

  .page-resources-z888-game-guides__card,
  .page-resources-z888-game-guides__game-card,
  .page-resources-z888-game-guides__tip-card {
    padding: 20px;
  }

  .page-resources-z888-game-guides__game-card-image {
    height: 180px;
  }

  .page-resources-z888-game-guides img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-z888-game-guides__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-resources-z888-game-guides__faq-answer {
    padding: 0 20px;
  }

  .page-resources-z888-game-guides__faq-item.active .page-resources-z888-game-guides__faq-answer {
    padding: 10px 20px;
  }

  .page-resources-z888-game-guides__promotion-image {
    margin-left: 0;
    margin-right: 0;
  }

  .page-resources-z888-game-guides__video-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-z888-game-guides video,
  .page-resources-z888-game-guides__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

  .page-resources-z888-game-guides__cta-buttons,
  .page-resources-z888-game-guides__button-group,
  .page-resources-z888-game-guides__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-resources-z888-game-guides__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-resources-z888-game-guides__hero-title {
    font-size: 1.8em;
  }
  .page-resources-z888-game-guides__hero-description {
    font-size: 0.9em;
  }
  .page-resources-z888-game-guides__section-title {
    font-size: 1.5em;
  }
}