.page-blog-what-is-01-hello88 {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main, #F2FFF6); /* Default text color for dark body background */
  background-color: var(--bg-color, #08160F); /* Ensure consistency with body background */
}

.page-blog-what-is-01-hello88__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
}

.page-blog-what-is-01-hello88__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-blog-what-is-01-hello88__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Slightly darken image for text readability */
}

.page-blog-what-is-01-hello88__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  color: #F2FFF6; /* Text Main */
  padding: 20px;
  box-sizing: border-box;
}

.page-blog-what-is-01-hello88__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive H1 font size */
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
  line-height: 1.2;
}

.page-blog-what-is-01-hello88__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-what-is-01-hello88__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-what-is-01-hello88__btn-primary,
.page-blog-what-is-01-hello88__btn-secondary {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-what-is-01-hello88__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff; /* Ensure white text on button */
  border: 2px solid transparent;
}

.page-blog-what-is-01-hello88__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(17, 168, 78, 0.4);
}

.page-blog-what-is-01-hello88__btn-secondary {
  background: #11271B; /* Card BG */
  color: #57E38D; /* Glow */
  border: 2px solid #2E7A4E; /* Border */
}

.page-blog-what-is-01-hello88__btn-secondary:hover {
  background: #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(34, 199, 104, 0.4);
}

.page-blog-what-is-01-hello88__content-area,
.page-blog-what-is-01-hello88__guide-section,
.page-blog-what-is-01-hello88__responsible-gaming,
.page-blog-what-is-01-hello88__conclusion-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff; /* Light background for main content */
  color: #333333; /* Dark text for light background */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.page-blog-what-is-01-hello88__products-section,
.page-blog-what-is-01-hello88__promotions-section,
.page-blog-what-is-01-hello88__faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--card-bg, #11271B); /* Dark background for these sections */
  color: var(--text-main, #F2FFF6); /* Light text for dark background */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.page-blog-what-is-01-hello88__section-title {
  font-size: 2.5em;
  color: #11A84E; /* Main color */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-blog-what-is-01-hello88__sub-title {
  font-size: 1.8em;
  color: #22C768; /* Auxiliary color */
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-blog-what-is-01-hello88__text-block {
  font-size: 1.05em;
  margin-bottom: 15px;
  color: inherit; /* Inherit from section */
}

.page-blog-what-is-01-hello88__feature-grid,
.page-blog-what-is-01-hello88__product-grid,
.page-blog-what-is-01-hello88__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-what-is-01-hello88__card {
  background-color: var(--card-bg, #11271B); /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #F2FFF6; /* Text Main */
}

.page-blog-what-is-01-hello88__card--feature {
  background-color: var(--card-bg, #11271B);
  color: #F2FFF6;
}

.page-blog-what-is-01-hello88__card--product,
.page-blog-what-is-01-hello88__card--promo {
  background-color: var(--card-bg, #11271B);
  color: #F2FFF6;
}

.page-blog-what-is-01-hello88__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-what-is-01-hello88__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-what-is-01-hello88__card-title {
  font-size: 1.4em;
  font-weight: bold;
  margin: 15px 20px 10px;
  color: #57E38D; /* Glow */
}

.page-blog-what-is-01-hello88__card-title a {
  color: #57E38D; /* Glow */
  text-decoration: none;
}

.page-blog-what-is-01-hello88__card-title a:hover {
  text-decoration: underline;
}

.page-blog-what-is-01-hello88__card-text {
  font-size: 1em;
  margin: 0 20px 20px;
  color: #A7D9B8; /* Text Secondary */
  flex-grow: 1;
}

.page-blog-what-is-01-hello88__list {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
  color: inherit;
}

.page-blog-what-is-01-hello88__list--bullet {
  list-style-type: disc;
}

.page-blog-what-is-01-hello88__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: inherit;
}

.page-blog-what-is-01-hello88__cta-section {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background-color: var(--deep-green, #0A4B2C); /* Deep Green */
  border-radius: 10px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-what-is-01-hello88__cta-section--small {
  padding: 20px;
  margin-top: 20px;
}

.page-blog-what-is-01-hello88__cta-text {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-what-is-01-hello88__faq-list {
  margin-top: 30px;
}

.page-blog-what-is-01-hello88__faq-item {
  background-color: var(--card-bg, #11271B); /* Card BG */
  border: 1px solid var(--border, #2E7A4E); /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
}

.page-blog-what-is-01-hello88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #57E38D; /* Glow */
  background-color: rgba(34, 199, 104, 0.1); /* Slightly transparent auxiliary color */
}

.page-blog-what-is-01-hello88__faq-question:hover {
  background-color: rgba(34, 199, 104, 0.2);
}

.page-blog-what-is-01-hello88__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #57E38D; /* Glow */
}

.page-blog-what-is-01-hello88__faq-item[open] .page-blog-what-is-01-hello88__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-what-is-01-hello88__faq-answer {
  padding: 0 20px 15px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-what-is-01-hello88__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-blog-what-is-01-hello88__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-what-is-01-hello88 {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-what-is-01-hello88__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-what-is-01-hello88__hero-content {
    padding: 15px;
  }

  .page-blog-what-is-01-hello88__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em) !important; /* Ensure H1 responsive on mobile */
  }

  .page-blog-what-is-01-hello88__description {
    font-size: 1em;
  }

  .page-blog-what-is-01-hello88__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-what-is-01-hello88__btn-primary,
  .page-blog-what-is-01-hello88__btn-secondary,
  .page-blog-what-is-01-hello88 a[class*="button"],
  .page-blog-what-is-01-hello88 a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-what-is-01-hello88__feature-grid,
  .page-blog-what-is-01-hello88__product-grid,
  .page-blog-what-is-01-hello88__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-what-is-01-hello88__content-area,
  .page-blog-what-is-01-hello88__guide-section,
  .page-blog-what-is-01-hello88__responsible-gaming,
  .page-blog-what-is-01-hello88__conclusion-section,
  .page-blog-what-is-01-hello88__products-section,
  .page-blog-what-is-01-hello88__promotions-section,
  .page-blog-what-is-01-hello88__faq-section {
    padding: 20px 15px;
    margin-bottom: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-what-is-01-hello88__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-blog-what-is-01-hello88__sub-title {
    font-size: 1.5em;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .page-blog-what-is-01-hello88__card-image {
    height: auto;
    min-height: 200px;
  }

  .page-blog-what-is-01-hello88__card {
    padding: 0;
  }
  
  .page-blog-what-is-01-hello88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-what-is-01-hello88__section,
  .page-blog-what-is-01-hello88__card,
  .page-blog-what-is-01-hello88__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-what-is-01-hello88__video-section {
    padding-top: 10px !important;
  }
  .page-blog-what-is-01-hello88__cta-buttons,
  .page-blog-what-is-01-hello88__button-group,
  .page-blog-what-is-01-hello88__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-blog-what-is-01-hello88__cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-blog-what-is-01-hello88__main-title {
    font-size: clamp(1.5em, 8vw, 2em) !important;
  }
  .page-blog-what-is-01-hello88__section-title {
    font-size: 1.5em;
  }
  .page-blog-what-is-01-hello88__cta-text {
    font-size: 1.2em;
  }
}