/* style/blog-hello88-official-link-latest-access-methods.css */

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

.page-blog-hello88-official-link-latest-access-methods {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Default text color for dark body background */
  background-color: var(--page-bg-color);
}

.page-blog-hello88-official-link-latest-access-methods__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sections */
.page-blog-hello88-official-link-latest-access-methods__hero-section,
.page-blog-hello88-official-link-latest-access-methods__access-section,
.page-blog-hello88-official-link-latest-access-methods__games-section,
.page-blog-hello88-official-link-latest-access-methods__support-section,
.page-blog-hello88-official-link-latest-access-methods__conclusion-section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-hello88-official-link-latest-access-methods__registration-section,
.page-blog-hello88-official-link-latest-access-methods__promo-section,
.page-blog-hello88-official-link-latest-access-methods__faq-section {
  padding: 60px 0;
  text-align: center;
}

/* Background Colors based on body being dark */
.page-blog-hello88-official-link-latest-access-methods__dark-bg {
  background-color: var(--page-bg-color);
  color: var(--text-main-color);
}

.page-blog-hello88-official-link-latest-access-methods__light-bg {
  background-color: var(--card-bg-color);
  color: var(--text-main-color);
}

/* Hero Section */
.page-blog-hello88-official-link-latest-access-methods__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding for visual spacing */
}

.page-blog-hello88-official-link-latest-access-methods__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 700px; /* Limit hero image height */
}

.page-blog-hello88-official-link-latest-access-methods__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content slightly over the image for visual flow, NOT overlapping text on image */
  background-color: rgba(17, 39, 27, 0.9); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-hello88-official-link-latest-access-methods__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gold-color);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.page-blog-hello88-official-link-latest-access-methods__hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-blog-hello88-official-link-latest-access-methods__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-blog-hello88-official-link-latest-access-methods__btn-primary,
.page-blog-hello88-official-link-latest-access-methods__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text breaking */
  box-sizing: border-box;
}

.page-blog-hello88-official-link-latest-access-methods__btn-primary {
  background: var(--btn-gradient);
  color: var(--text-main-color);
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-hello88-official-link-latest-access-methods__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-blog-hello88-official-link-latest-access-methods__btn-secondary {
  background-color: transparent;
  color: var(--gold-color);
  border: 2px solid var(--gold-color);
}

.page-blog-hello88-official-link-latest-access-methods__btn-secondary:hover {
  background-color: var(--gold-color);
  color: var(--page-bg-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Content Area */
.page-blog-hello88-official-link-latest-access-methods__content-area,
.page-blog-hello88-official-link-latest-access-methods__registration-section,
.page-blog-hello88-official-link-latest-access-methods__promo-section,
.page-blog-hello88-official-link-latest-access-methods__faq-section {
  color: var(--text-main-color);
}

.page-blog-hello88-official-link-latest-access-methods__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-blog-hello88-official-link-latest-access-methods__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--gold-color);
  border-radius: 2px;
}

.page-blog-hello88-official-link-latest-access-methods__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--glow-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-hello88-official-link-latest-access-methods p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--text-secondary-color);
  text-align: justify;
}

.page-blog-hello88-official-link-latest-access-methods p strong {
  color: var(--text-main-color);
}

/* Images */
.page-blog-hello88-official-link-latest-access-methods__image-wrapper {
  margin: 40px auto;
  max-width: 1000px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-hello88-official-link-latest-access-methods__image {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

/* FAQ Section */
.page-blog-hello88-official-link-latest-access-methods__faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
}

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

.page-blog-hello88-official-link-latest-access-methods__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: var(--deep-green-color);
  color: var(--text-main-color);
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-hello88-official-link-latest-access-methods__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-hello88-official-link-latest-access-methods__faq-question:hover {
  background-color: var(--border-color);
}

.page-blog-hello88-official-link-latest-access-methods__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-hello88-official-link-latest-access-methods__faq-item[open] .page-blog-hello88-official-link-latest-access-methods__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-hello88-official-link-latest-access-methods__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary-color);
  border-top: 1px solid var(--divider-color);
  text-align: justify;
}

/* Conclusion Section */
.page-blog-hello88-official-link-latest-access-methods__conclusion-section p {
  font-size: 1.15rem;
  max-width: 900px;
  margin: 0 auto 30px;
  color: var(--text-secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-hello88-official-link-latest-access-methods__hero-section,
  .page-blog-hello88-official-link-latest-access-methods__access-section,
  .page-blog-hello88-official-link-latest-access-methods__registration-section,
  .page-blog-hello88-official-link-latest-access-methods__games-section,
  .page-blog-hello88-official-link-latest-access-methods__promo-section,
  .page-blog-hello88-official-link-latest-access-methods__support-section,
  .page-blog-hello88-official-link-latest-access-methods__faq-section,
  .page-blog-hello88-official-link-latest-access-methods__conclusion-section {
    padding: 40px 0;
  }

  .page-blog-hello88-official-link-latest-access-methods__hero-content {
    padding: 20px;
    margin-top: -50px;
  }

  .page-blog-hello88-official-link-latest-access-methods__main-title {
    font-size: 1.8rem;
  }

  .page-blog-hello88-official-link-latest-access-methods__hero-description {
    font-size: 1rem;
  }

  .page-blog-hello88-official-link-latest-access-methods__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-hello88-official-link-latest-access-methods__btn-primary,
  .page-blog-hello88-official-link-latest-access-methods__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-hello88-official-link-latest-access-methods__section-title {
    font-size: 1.8rem;
  }

  .page-blog-hello88-official-link-latest-access-methods__sub-title {
    font-size: 1.2rem;
  }

  .page-blog-hello88-official-link-latest-access-methods p {
    font-size: 0.95rem;
  }

  /* Mobile image responsiveness */
  .page-blog-hello88-official-link-latest-access-methods img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-hello88-official-link-latest-access-methods__image-wrapper,
  .page-blog-hello88-official-link-latest-access-methods__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* FAQ */
  .page-blog-hello88-official-link-latest-access-methods__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-hello88-official-link-latest-access-methods__faq-answer {
    padding: 15px 20px;
    font-size: 0.9rem;
  }
}