/* style/blog-hello88-registration-guide.css */

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

.page-blog-hello88-registration-guide {
  background-color: var(--background-body);
  color: var(--text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-hello88-registration-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-hello88-registration-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  overflow: hidden;
}

.page-blog-hello88-registration-guide__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}

.page-blog-hello88-registration-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-blog-hello88-registration-guide__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-hello88-registration-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-hello88-registration-guide__description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-blog-hello88-registration-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-hello88-registration-guide__btn-primary,
.page-blog-hello88-registration-guide__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-blog-hello88-registration-guide__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-hello88-registration-guide__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px var(--glow-color);
}

.page-blog-hello88-registration-guide__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-hello88-registration-guide__btn-secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.page-blog-hello88-registration-guide__section-title {
  font-size: 2.5rem;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  font-weight: bold;
}

.page-blog-hello88-registration-guide__sub-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-hello88-registration-guide__text-block {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 20px;
}

.page-blog-hello88-registration-guide__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-blog-hello88-registration-guide__ordered-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-blog-hello88-registration-guide__list-item {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-blog-hello88-registration-guide__list-item::before {
  content: '✓';
  color: var(--glow-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-blog-hello88-registration-guide__ordered-list .page-blog-hello88-registration-guide__list-item::before {
  content: none; /* Remove custom bullet for ordered list */
}

.page-blog-hello88-registration-guide__step-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-hello88-registration-guide__step-title {
  font-size: 2rem;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-hello88-registration-guide__step-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-blog-hello88-registration-guide__step-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-hello88-registration-guide__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-hello88-registration-guide__benefit-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-hello88-registration-guide__benefit-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
  min-width: 200px; /* Enforce minimum size for images */
  min-height: 200px;
}

.page-blog-hello88-registration-guide__benefit-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-hello88-registration-guide__benefit-description {
  font-size: 1rem;
  color: var(--text-secondary);
}

.page-blog-hello88-registration-guide__faq-list {
  margin-top: 30px;
}

.page-blog-hello88-registration-guide__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-hello88-registration-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  color: var(--primary-color);
  cursor: pointer;
  font-weight: bold;
  list-style: none; /* For details/summary */
}

.page-blog-hello88-registration-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-hello88-registration-guide__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gold-color);
  margin-left: 15px;
}

.page-blog-hello88-registration-guide__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.page-blog-hello88-registration-guide__btn-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  max-width: 250px;
}

/* Ensure all content images meet minimum size */
.page-blog-hello88-registration-guide img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-blog-hello88-registration-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-hello88-registration-guide__container,
  .page-blog-hello88-registration-guide__hero-content,
  .page-blog-hello88-registration-guide__introduction-section,
  .page-blog-hello88-registration-guide__guide-section,
  .page-blog-hello88-registration-guide__benefits-section,
  .page-blog-hello88-registration-guide__troubleshooting-section,
  .page-blog-hello88-registration-guide__deposit-section,
  .page-blog-hello88-registration-guide__app-section,
  .page-blog-hello88-registration-guide__faq-section,
  .page-blog-hello88-registration-guide__conclusion-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-hello88-registration-guide__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px !important;
  }

  .page-blog-hello88-registration-guide__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin-bottom: 15px;
  }

  .page-blog-hello88-registration-guide__description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-blog-hello88-registration-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-hello88-registration-guide__btn-primary,
  .page-blog-hello88-registration-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
  }

  .page-blog-hello88-registration-guide__section-title {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .page-blog-hello88-registration-guide__sub-title {
    font-size: 1.5rem;
  }

  .page-blog-hello88-registration-guide__text-block,
  .page-blog-hello88-registration-guide__list-item,
  .page-blog-hello88-registration-guide__step-description,
  .page-blog-hello88-registration-guide__benefit-description,
  .page-blog-hello88-registration-guide__faq-question,
  .page-blog-hello88-registration-guide__faq-answer {
    font-size: 1rem;
  }

  .page-blog-hello88-registration-guide__benefits-grid {
    grid-template-columns: 1fr;
  }

  /* Image and Video responsiveness */
  .page-blog-hello88-registration-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-blog-hello88-registration-guide video,
  .page-blog-hello88-registration-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-hello88-registration-guide__video-section,
  .page-blog-hello88-registration-guide__video-container,
  .page-blog-hello88-registration-guide__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-hello88-registration-guide__hero-image-wrapper {
    max-height: 400px; /* Adjust hero image height for mobile */
  }
}

/* Ensure content images are not too small */
.page-blog-hello88-registration-guide__step-image,
.page-blog-hello88-registration-guide__benefit-icon {
  min-width: 200px;
  min-height: 200px;
}

/* Color contrast specific styles (based on dark body background) */
.page-blog-hello88-registration-guide__introduction-section,
.page-blog-hello88-registration-guide__guide-section,
.page-blog-hello88-registration-guide__benefits-section,
.page-blog-hello88-registration-guide__troubleshooting-section,
.page-blog-hello88-registration-guide__deposit-section,
.page-blog-hello88-registration-guide__app-section,
.page-blog-hello88-registration-guide__faq-section,
.page-blog-hello88-registration-guide__conclusion-section {
  background-color: var(--background-body);
  color: var(--text-main);
  padding: 40px 0;
}