/* style/blog-how-to-access-hello88.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #FFFFFF;
  --bg-dark: #0a0a0a;
  --login-button-color: #EA7C07;
}

/* Base styles for the page, ensuring light text on dark body background */
.page-blog-how-to-access-hello88 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--bg-dark); /* Inherited from body, but explicitly set for safety */
}

.page-blog-how-to-access-hello88__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--bg-dark);
  overflow: hidden;
}

.page-blog-how-to-access-hello88__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-blog-how-to-access-hello-88__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-how-to-access-hello88__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-light);
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 8px;
}

.page-blog-how-to-access-hello88__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--secondary-color);
}

.page-blog-how-to-access-hello88__intro-text {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.page-blog-how-to-access-hello88__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-how-to-access-hello88__btn-primary,
.page-blog-how-to-access-hello88__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-how-to-access-hello88__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-how-to-access-hello88__btn-primary:hover {
  background-color: #1e8dc7;
  transform: translateY(-2px);
}

.page-blog-how-to-access-hello88__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-blog-how-to-access-hello88__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-blog-how-to-access-hello88__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--secondary-color); /* Light background for content */
  color: var(--text-dark); /* Dark text on light background */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: -40px; /* Overlap with hero for visual flow */
  position: relative;
  z-index: 2;
}

.page-blog-how-to-access-hello88__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-how-to-access-hello88__paragraph {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--text-dark);
}

.page-blog-how-to-access-hello88__highlight {
  color: var(--primary-color);
  font-weight: 600;
}

.page-blog-how-to-access-hello88__feature-grid,
.page-blog-how-to-access-hello88__step-by-step,
.page-blog-how-to-access-hello88__benefits-list,
.page-blog-how-to-access-hello88__commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-how-to-access-hello88__card {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  color: var(--text-dark);
}

.page-blog-how-to-access-hello88__card:hover {
  transform: translateY(-5px);
}

.page-blog-how-to-access-hello88__feature-title,
.page-blog-how-to-access-hello88__step-title,
.page-blog-how-to-access-hello88__benefit-title,
.page-blog-how-to-access-hello88__list-title,
.page-blog-how-to-access-hello88__commitment-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-blog-how-to-access-hello88__step-image,
.page-blog-how-to-access-hello88__benefit-image,
.page-blog-how-to-access-hello88__commitment-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page-blog-how-to-access-hello88__troubleshoot-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-blog-how-to-access-hello88__list-item {
  background-color: #f8f8f8;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
  color: var(--text-dark);
}

.page-blog-how-to-access-hello88__faq-list {
  margin-top: 30px;
}

.page-blog-how-to-access-hello88__faq-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
}

.page-blog-how-to-access-hello88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.page-blog-how-to-access-hello88__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-access-hello88__faq-question::marker {
  display: none;
}

.page-blog-how-to-access-hello88__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
}

.page-blog-how-to-access-hello88__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.page-blog-how-to-access-hello88__faq-item[open] .page-blog-how-to-access-hello88__faq-toggle {
  content: '−';
}

.page-blog-how-to-access-hello88__cta-final {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
  margin-top: 40px;
}

.page-blog-how-to-access-hello88__cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-blog-how-to-access-hello88__cta-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  color: var(--secondary-color);
}

.page-blog-how-to-access-hello88__btn-lg {
  padding: 18px 40px;
  font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-how-to-access-hello88__hero-content {
    padding: 15px;
  }

  .page-blog-how-to-access-hello88__content-area {
    padding: 40px 15px;
  }

  .page-blog-how-to-access-hello88__feature-grid,
  .page-blog-how-to-access-hello88__step-by-step,
  .page-blog-how-to-access-hello88__benefits-list,
  .page-blog-how-to-access-hello88__commitment-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-access-hello88 {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-access-hello88__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-how-to-access-hello88__main-title {
    font-size: 2.2rem;
  }

  .page-blog-how-to-access-hello88__intro-text {
    font-size: 1rem;
  }

  .page-blog-how-to-access-hello88__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-access-hello88__btn-primary,
  .page-blog-how-to-access-hello88__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-access-hello88__content-area {
    padding: 30px 15px;
    margin-top: -20px;
  }

  .page-blog-how-to-access-hello88__section-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .page-blog-how-to-access-hello88__paragraph {
    font-size: 1rem;
  }

  .page-blog-how-to-access-hello88__feature-grid,
  .page-blog-how-to-access-hello88__step-by-step,
  .page-blog-how-to-access-hello88__benefits-list,
  .page-blog-how-to-access-hello88__commitment-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-how-to-access-hello88__card {
    padding: 25px;
  }

  .page-blog-how-to-access-hello88__feature-title,
  .page-blog-how-to-access-hello88__step-title,
  .page-blog-how-to-access-hello88__benefit-title,
  .page-blog-how-to-access-hello88__list-title,
  .page-blog-how-to-access-hello88__commitment-title {
    font-size: 1.3rem;
  }

  .page-blog-how-to-access-hello88__step-image,
  .page-blog-how-to-access-hello88__benefit-image,
  .page-blog-how-to-access-hello88__commitment-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-access-hello88__cta-final {
    padding: 40px 15px;
  }

  .page-blog-how-to-access-hello88__cta-title {
    font-size: 2rem;
  }

  .page-blog-how-to-access-hello88__cta-description {
    font-size: 1.1rem;
  }

  .page-blog-how-to-access-hello88__btn-lg {
    font-size: 1.1rem;
    padding: 15px 30px;
  }

  .page-blog-how-to-access-hello88__faq-question {
    font-size: 1.1rem;
    padding: 18px 20px;
  }

  .page-blog-how-to-access-hello88__faq-answer {
    padding: 0 20px 18px 20px;
  }

  /* Ensure all image containers are responsive */
  .page-blog-how-to-access-hello88__hero-image-wrapper,
  .page-blog-how-to-access-hello88__step-item,
  .page-blog-how-to-access-hello88__benefit-item,
  .page-blog-how-to-access-hello88__commitment-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}