/* style/blog-hz88-game-types-in-depth-review.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-blog-hz88-game-types-in-depth-review {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-hz88-game-types-in-depth-review__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-hz88-game-types-in-depth-review__section-title,
.page-blog-hz88-game-types-in-depth-review__game-title,
.page-blog-hz88-game-types-in-depth-review__benefit-title {
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-blog-hz88-game-types-in-depth-review__section-title {
  font-size: clamp(2em, 4vw, 2.8em);
}

.page-blog-hz88-game-types-in-depth-review__game-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
}

.page-blog-hz88-game-types-in-depth-review__benefit-title {
  font-size: clamp(1.5em, 3vw, 2em);
  color: #ffffff;
  margin-bottom: 15px;
}

.page-blog-hz88-game-types-in-depth-review__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-blog-hz88-game-types-in-depth-review__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small decorative top padding */
  padding-bottom: 60px;
  overflow: hidden;
  text-align: center;
}

.page-blog-hz88-game-types-in-depth-review__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  margin-bottom: 30px; /* Space between image and content */
}

.page-blog-hz88-game-types-in-depth-review__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-hz88-game-types-in-depth-review__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 1;
  color: #ffffff;
}

.page-blog-hz88-game-types-in-depth-review__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-blog-hz88-game-types-in-depth-review__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-blog-hz88-game-types-in-depth-review__btn-primary,
.page-blog-hz88-game-types-in-depth-review__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.page-blog-hz88-game-types-in-depth-review__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-hz88-game-types-in-depth-review__btn-primary:hover {
  background-color: #1a8ccb;
  border-color: #1a8ccb;
}

.page-blog-hz88-game-types-in-depth-review__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-hz88-game-types-in-depth-review__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

/* Section Styling */
.page-blog-hz88-game-types-in-depth-review__intro-section,
.page-blog-hz88-game-types-in-depth-review__game-section,
.page-blog-hz88-game-types-in-depth-review__promotions-section,
.page-blog-hz88-game-types-in-depth-review__final-cta {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for light contrast on dark body */
  margin-bottom: 30px;
}

.page-blog-hz88-game-types-in-depth-review__dark-bg {
  background-color: #1a1a2e; /* Ensure dark background sections */
  color: #ffffff;
}

.page-blog-hz88-game-types-in-depth-review__game-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-blog-hz88-game-types-in-depth-review__game-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-hz88-game-types-in-depth-review__benefits-section {
  padding: 60px 0;
  background-color: #26A9E0; /* Brand color background for a strong section */
  color: #ffffff;
  text-align: center;
}

.page-blog-hz88-game-types-in-depth-review__benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-hz88-game-types-in-depth-review__benefit-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-blog-hz88-game-types-in-depth-review__benefit-item:hover {
  transform: translateY(-5px);
}

/* FAQ Section */
.page-blog-hz88-game-types-in-depth-review__faq-section {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.08); /* Slightly darker transparent white for contrast */
}

.page-blog-hz88-game-types-in-depth-review__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-blog-hz88-game-types-in-depth-review__faq-item {
  background-color: rgba(255, 255, 255, 0.15); /* Card background for FAQ items */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-blog-hz88-game-types-in-depth-review__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly darker for question */
}

.page-blog-hz88-game-types-in-depth-review__faq-item[open] .page-blog-hz88-game-types-in-depth-review__faq-question {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-blog-hz88-game-types-in-depth-review__faq-qtext {
  flex-grow: 1;
}

.page-blog-hz88-game-types-in-depth-review__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-hz88-game-types-in-depth-review__faq-item[open] .page-blog-hz88-game-types-in-depth-review__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-hz88-game-types-in-depth-review__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
}

.page-blog-hz88-game-types-in-depth-review__faq-answer p {
  margin-top: 0;
  color: #f0f0f0;
}

/* Hide default details marker */
.page-blog-hz88-game-types-in-depth-review__faq-item > summary {
  list-style: none;
}
.page-blog-hz88-game-types-in-depth-review__faq-item > summary::-webkit-details-marker {
  display: none;
}

/* Final CTA */
.page-blog-hz88-game-types-in-depth-review__final-cta {
  text-align: center;
  padding: 80px 0;
  background-color: #26A9E0; /* Strong call to action background */
  color: #ffffff;
}

.page-blog-hz88-game-types-in-depth-review__final-cta .page-blog-hz88-game-types-in-depth-review__section-title {
  color: #ffffff;
  margin-bottom: 20px;
}

.page-blog-hz88-game-types-in-depth-review__final-cta .page-blog-hz88-game-types-in-depth-review__text-block {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.2em;
}

/* Responsive Design */

/* All images responsive */
.page-blog-hz88-game-types-in-depth-review img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* All image containers responsive */
.page-blog-hz88-game-types-in-depth-review__hero-image-wrapper,
.page-blog-hz88-game-types-in-depth-review__game-section .page-blog-hz88-game-types-in-depth-review__container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

/* All buttons responsive */
.page-blog-hz88-game-types-in-depth-review__btn-primary,
.page-blog-hz88-game-types-in-depth-review__btn-secondary {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
  .page-blog-hz88-game-types-in-depth-review {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-blog-hz88-game-types-in-depth-review__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-hz88-game-types-in-depth-review__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-hz88-game-types-in-depth-review__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }

  .page-blog-hz88-game-types-in-depth-review__description {
    font-size: 1em;
  }

  .page-blog-hz88-game-types-in-depth-review__section-title {
    font-size: clamp(1.8em, 7vw, 2.2em);
    margin-bottom: 20px;
  }

  .page-blog-hz88-game-types-in-depth-review__game-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 15px;
  }

  .page-blog-hz88-game-types-in-depth-review__text-block {
    font-size: 1em;
  }

  .page-blog-hz88-game-types-in-depth-review__btn-primary,
  .page-blog-hz88-game-types-in-depth-review__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    margin-bottom: 15px; /* Space between stacked buttons */
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-hz88-game-types-in-depth-review__hero-content a,
  .page-blog-hz88-game-types-in-depth-review__game-section a,
  .page-blog-hz88-game-types-in-depth-review__promotions-section a,
  .page-blog-hz88-game-types-in-depth-review__final-cta a {
    display: block;
  }

  .page-blog-hz88-game-types-in-depth-review__benefits-list {
    grid-template-columns: 1fr;
  }

  .page-blog-hz88-game-types-in-depth-review__intro-section,
  .page-blog-hz88-game-types-in-depth-review__game-section,
  .page-blog-hz88-game-types-in-depth-review__promotions-section,
  .page-blog-hz88-game-types-in-depth-review__final-cta,
  .page-blog-hz88-game-types-in-depth-review__benefits-section,
  .page-blog-hz88-game-types-in-depth-review__faq-section {
    padding: 40px 0;
  }

  /* Ensure images and video containers do not overflow */
  .page-blog-hz88-game-types-in-depth-review img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-hz88-game-types-in-depth-review__hero-image-wrapper,
  .page-blog-hz88-game-types-in-depth-review__game-section .page-blog-hz88-game-types-in-depth-review__container,
  .page-blog-hz88-game-types-in-depth-review__video-section,
  .page-blog-hz88-game-types-in-depth-review__video-container,
  .page-blog-hz88-game-types-in-depth-review__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-hz88-game-types-in-depth-review__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  /* Ensure button containers allow wrapping */
  .page-blog-hz88-game-types-in-depth-review__cta-buttons,
  .page-blog-hz88-game-types-in-depth-review__button-group,
  .page-blog-hz88-game-types-in-depth-review__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;
    display: flex;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }
}