/* style/blog-longfu88-official-website-guide.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-blog-longfu88-official-website-guide {
  color: #ffffff; /* Light text for dark body background #0a0a0a */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* Sections */
.page-blog-longfu88-official-website-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small decorative top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-longfu88-official-website-guide__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit hero image height */
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.page-blog-longfu88-official-website-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-blog-longfu88-official-website-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 20px;
  margin-top: -300px; /* Pull content up over the image */
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-longfu88-official-website-guide__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #ffffff;
  max-width: 90%;
  margin: 0 auto 20px auto;
  padding-top: 20px; /* Ensure some spacing from top */
}

.page-blog-longfu88-official-website-guide__description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-longfu88-official-website-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff; /* White background for main content */
  color: #333333; /* Dark text for white background */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: -100px; /* Overlap with hero section */
  position: relative;
  z-index: 2;
}

.page-blog-longfu88-official-website-guide__section-title {
  font-size: 2.2em;
  color: #26A9E0; /* Brand primary color for titles */
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-blog-longfu88-official-website-guide__sub-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-longfu88-official-website-guide p {
  margin-bottom: 1em;
  font-size: 1em;
}

.page-blog-longfu88-official-website-guide a {
  color: #26A9E0;
  text-decoration: none;
}

.page-blog-longfu88-official-website-guide a:hover {
  text-decoration: underline;
}

.page-blog-longfu88-official-website-guide__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-blog-longfu88-official-website-guide__list li {
  margin-bottom: 10px;
}

/* Images */
.page-blog-longfu88-official-website-guide__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  object-fit: cover;
}

/* Buttons */
.page-blog-longfu88-official-website-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-blog-longfu88-official-website-guide__btn-primary,
.page-blog-longfu88-official-website-guide__btn-secondary {
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-longfu88-official-website-guide__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-longfu88-official-website-guide__btn-primary:hover {
  background-color: #1a8cc7;
  border-color: #1a8cc7;
}

.page-blog-longfu88-official-website-guide__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-longfu88-official-website-guide__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-longfu88-official-website-guide__cta-center {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* FAQ Section */
.page-blog-longfu88-official-website-guide__faq-section {
  margin-top: 40px;
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
}

.page-blog-longfu88-official-website-guide__faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.page-blog-longfu88-official-website-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #f9f9f9;
  cursor: pointer;
  font-weight: bold;
  color: #333333;
  list-style: none; /* For <details> summary */
}

.page-blog-longfu88-official-website-guide__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for <details> */
}

.page-blog-longfu88-official-website-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-longfu88-official-website-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: #26A9E0;
}

.page-blog-longfu88-official-website-guide__faq-answer {
  padding: 15px 20px;
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
  color: #555555;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-blog-longfu88-official-website-guide__hero-content {
    margin-top: -250px;
  }
  .page-blog-longfu88-official-website-guide__content-area {
    margin-top: -80px;
  }
}

@media (max-width: 768px) {
  .page-blog-longfu88-official-website-guide__main-title {
    font-size: 1.8em;
    padding-top: 0;
  }
  .page-blog-longfu88-official-website-guide__description {
    font-size: 1em;
  }
  .page-blog-longfu88-official-website-guide__section-title {
    font-size: 1.8em;
  }
  .page-blog-longfu88-official-website-guide__sub-title {
    font-size: 1.4em;
  }
  .page-blog-longfu88-official-website-guide__hero-content {
    margin-top: -180px; /* Adjust overlap for smaller screens */
    padding: 15px;
  }
  .page-blog-longfu88-official-website-guide__content-area {
    margin-top: -50px; /* Adjust overlap for smaller screens */
    padding: 20px 15px;
  }
  .page-blog-longfu88-official-website-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-blog-longfu88-official-website-guide__btn-primary,
  .page-blog-longfu88-official-website-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Mobile image responsiveness */
  .page-blog-longfu88-official-website-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-longfu88-official-website-guide__section,
  .page-blog-longfu88-official-website-guide__card,
  .page-blog-longfu88-official-website-guide__container,
  .page-blog-longfu88-official-website-guide__hero-section,
  .page-blog-longfu88-official-website-guide__hero-image-wrapper,
  .page-blog-longfu88-official-website-guide__content-area,
  .page-blog-longfu88-official-website-guide__faq-section,
  .page-blog-longfu88-official-website-guide__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-blog-longfu88-official-website-guide__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, this is decorative */
  }
}

@media (max-width: 480px) {
  .page-blog-longfu88-official-website-guide__main-title {
    font-size: 1.5em;
  }
  .page-blog-longfu88-official-website-guide__section-title {
    font-size: 1.5em;
  }
  .page-blog-longfu88-official-website-guide__hero-content {
    margin-top: -120px; /* Further adjust overlap */
  }
}

/* Dark/Light Background Specifics (for sections/cards if applicable) */
.page-blog-longfu88-official-website-guide__dark-bg {
  background-color: #0a0a0a; /* Ensure consistency with body background */
  color: #ffffff;
}

.page-blog-longfu88-official-website-guide__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-longfu88-official-website-guide__dark-bg .page-blog-longfu88-official-website-guide__section-title,
.page-blog-longfu88-official-website-guide__dark-bg .page-blog-longfu88-official-website-guide__sub-title {
  color: #26A9E0; /* Brand color on dark background */
}

.page-blog-longfu88-official-website-guide__light-bg .page-blog-longfu88-official-website-guide__section-title,
.page-blog-longfu88-official-website-guide__light-bg .page-blog-longfu88-official-website-guide__sub-title {
  color: #26A9E0; /* Brand color on light background */
}

.page-blog-longfu88-official-website-guide__light-bg a {
  color: #26A9E0;
}