/* style/blog-benefits-of-zh88-registration.css */

/* Root variables for colors */
:root {
  --zh88-primary-color: #11A84E;
  --zh88-secondary-color: #22C768;
  --zh88-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --zh88-card-bg: #11271B;
  --zh88-background-color: #08160F;
  --zh88-text-main: #F2FFF6;
  --zh88-text-secondary: #A7D9B8;
  --zh88-border-color: #2E7A4E;
  --zh88-glow-color: #57E38D;
  --zh88-gold-color: #F2C14E;
  --zh88-divider-color: #1E3A2A;
  --zh88-deep-green: #0A4B2C;
}

.page-blog-benefits-of-zh88-registration {
  background-color: var(--zh88-background-color);
  color: var(--zh88-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-benefits-of-zh88-registration__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles padding-top from header, this is decorative */
  background-color: var(--zh88-background-color);
}

.page-blog-benefits-of-zh88-registration__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
}

.page-blog-benefits-of-zh88-registration__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for better text contrast if text was overlayed, though it's not here. */
}

.page-blog-benefits-of-zh88-registration__hero-content {
  max-width: 900px;
  width: 100%;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
  margin-top: -120px; /* Pull content up over the bottom of the image for a merged look */
  position: relative;
  z-index: 1;
  background-color: var(--zh88-background-color); /* Ensure content has a solid background */
  border-radius: 10px;
}

.page-blog-benefits-of-zh88-registration__main-title {
  color: var(--zh88-gold-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
  font-size: clamp(2.2rem, 4vw, 3.2rem); /* Responsive H1 font size */
}

.page-blog-benefits-of-zh88-registration__description {
  color: var(--zh88-text-main);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-blog-benefits-of-zh88-registration__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-benefits-of-zh88-registration__btn-primary,
.page-blog-benefits-of-zh88-registration__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-benefits-of-zh88-registration__btn-primary {
  background: var(--zh88-button-gradient);
  color: var(--zh88-text-main);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-benefits-of-zh88-registration__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-benefits-of-zh88-registration__btn-secondary {
  background-color: transparent;
  color: var(--zh88-primary-color);
  border: 2px solid var(--zh88-primary-color);
}

.page-blog-benefits-of-zh88-registration__btn-secondary:hover {
  background-color: var(--zh88-primary-color);
  color: var(--zh88-text-main);
  transform: translateY(-3px);
}

.page-blog-benefits-of-zh88-registration__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  color: var(--zh88-text-main);
}

.page-blog-benefits-of-zh88-registration__section-title {
  color: var(--zh88-gold-color);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 5px rgba(242, 193, 78, 0.3);
}

.page-blog-benefits-of-zh88-registration__sub-title {
  color: var(--zh88-primary-color);
  font-size: 1.8rem;
  margin-top: 30px;
  margin-bottom: 20px;
  border-left: 5px solid var(--zh88-gold-color);
  padding-left: 15px;
}

.page-blog-benefits-of-zh88-registration__text-block {
  color: var(--zh88-text-main);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.page-blog-benefits-of-zh88-registration__benefit-category {
  background-color: var(--zh88-card-bg);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--zh88-border-color);
}

.page-blog-benefits-of-zh88-registration__image-content {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
}

.page-blog-benefits-of-zh88-registration__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-blog-benefits-of-zh88-registration__list-item {
  background-color: var(--zh88-deep-green);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  border-left: 4px solid var(--zh88-secondary-color);
}

.page-blog-benefits-of-zh88-registration__feature-heading {
  color: var(--zh88-gold-color);
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-blog-benefits-of-zh88-registration__list-item p {
  color: var(--zh88-text-secondary);
  font-size: 1rem;
}

.page-blog-benefits-of-zh88-registration__registration-process .page-blog-benefits-of-zh88-registration__process-card {
  background-color: var(--zh88-card-bg);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--zh88-border-color);
}

.page-blog-benefits-of-zh88-registration__ordered-list,
.page-blog-benefits-of-zh88-registration__unordered-list {
  padding-left: 25px;
  margin-top: 20px;
}

.page-blog-benefits-of-zh88-registration__ordered-list li,
.page-blog-benefits-of-zh88-registration__unordered-list li {
  color: var(--zh88-text-main);
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-blog-benefits-of-zh88-registration__responsible-gaming .page-blog-benefits-of-zh88-registration__info-card {
  background-color: var(--zh88-card-bg);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--zh88-border-color);
}

.page-blog-benefits-of-zh88-registration__info-card p {
  color: var(--zh88-text-secondary);
}

.page-blog-benefits-of-zh88-registration__faq-section {
  padding-bottom: 60px;
}

.page-blog-benefits-of-zh88-registration__faq-list {
  margin-top: 30px;
}

.page-blog-benefits-of-zh88-registration__faq-item {
  background-color: var(--zh88-card-bg);
  border: 1px solid var(--zh88-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-benefits-of-zh88-registration__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: var(--zh88-deep-green);
  color: var(--zh88-gold-color);
  font-weight: bold;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-benefits-of-zh88-registration__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-benefits-of-zh88-registration__faq-question:hover {
  background-color: var(--zh88-primary-color);
}

.page-blog-benefits-of-zh88-registration__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-benefits-of-zh88-registration__faq-item[open] .page-blog-benefits-of-zh88-registration__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-benefits-of-zh88-registration__faq-answer {
  padding: 20px;
  background-color: var(--zh88-card-bg);
  color: var(--zh88-text-secondary);
  font-size: 1rem;
  border-top: 1px solid var(--zh88-divider-color);
}

.page-blog-benefits-of-zh88-registration__conclusion-section {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 80px;
}

/* Global Image, Video, Button Responsive Styles */
.page-blog-benefits-of-zh88-registration img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-blog-benefits-of-zh88-registration video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.page-blog-benefits-of-zh88-registration__section,
.page-blog-benefits-of-zh88-registration__card,
.page-blog-benefits-of-zh88-registration__container,
.page-blog-benefits-of-zh88-registration__cta-buttons,
.page-blog-benefits-of-zh88-registration__video-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-blog-benefits-of-zh88-registration {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-benefits-of-zh88-registration__hero-content {
    padding: 30px 15px;
    margin-top: -80px; /* Adjust for smaller screens */
  }

  .page-blog-benefits-of-zh88-registration__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-blog-benefits-of-zh88-registration__description {
    font-size: 1rem;
  }

  .page-blog-benefits-of-zh88-registration__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-benefits-of-zh88-registration__btn-primary,
  .page-blog-benefits-of-zh88-registration__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .page-blog-benefits-of-zh88-registration__content-area {
    padding: 30px 15px;
  }

  .page-blog-benefits-of-zh88-registration__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-benefits-of-zh88-registration__sub-title {
    font-size: 1.5rem;
    padding-left: 10px;
  }

  .page-blog-benefits-of-zh88-registration__benefit-category,
  .page-blog-benefits-of-zh88-registration__registration-process .page-blog-benefits-of-zh88-registration__process-card,
  .page-blog-benefits-of-zh88-registration__responsible-gaming .page-blog-benefits-of-zh88-registration__info-card,
  .page-blog-benefits-of-zh88-registration__faq-item {
    padding: 20px;
    margin-bottom: 20px;
  }

  .page-blog-benefits-of-zh88-registration img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-benefits-of-zh88-registration video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-benefits-of-zh88-registration__hero-section {
    padding-top: 10px !important;
  }

  .page-blog-benefits-of-zh88-registration__section,
  .page-blog-benefits-of-zh88-registration__card,
  .page-blog-benefits-of-zh88-registration__container,
  .page-blog-benefits-of-zh88-registration__video-container,
  .page-blog-benefits-of-zh88-registration__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}