/* style/blog-xp88-latest-link-2024.css */
/* body đã padding-top: var(--header-offset) từ shared.css; trang này không cần thêm */
.page-blog-xp88-latest-link-2024 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-blog-xp88-latest-link-2024__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body đã xử lý padding-top cho header */
  background-color: #08160F;
  overflow: hidden;
}

.page-blog-xp88-latest-link-2024__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Adjust based on desired aspect ratio for 1200x675 */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-xp88-latest-link-2024__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-xp88-latest-link-2024__hero-content {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content slightly over the image for visual hierarchy */
  background: rgba(17, 40, 27, 0.85); /* Card BG with transparency */
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 10;
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-xp88-latest-link-2024__main-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-blog-xp88-latest-link-2024__intro-text {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-blog-xp88-latest-link-2024__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-xp88-latest-link-2024__btn-primary,
.page-blog-xp88-latest-link-2024__btn-secondary {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-xp88-latest-link-2024__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: 2px solid transparent;
}

.page-blog-xp88-latest-link-2024__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-blog-xp88-latest-link-2024__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Button top color */
  border: 2px solid #2AD16F; /* Button top color */
}

.page-blog-xp88-latest-link-2024__btn-secondary:hover {
  background: #2AD16F;
  color: #F2FFF6; /* Text Main */
  box-shadow: 0 0 15px rgba(42, 209, 111, 0.5); /* Button top color with transparency */
}

.page-blog-xp88-latest-link-2024__content-area,
.page-blog-xp88-latest-link-2024__conclusion-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-blog-xp88-latest-link-2024__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-xp88-latest-link-2024__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2AD16F 0%, #13994A 100%);
  border-radius: 2px;
}

.page-blog-xp88-latest-link-2024__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: #22C768; /* Auxiliary color */
  margin-top: 35px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-xp88-latest-link-2024__paragraph {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-xp88-latest-link-2024__highlight {
  color: #F2C14E; /* Gold */
  font-weight: bold;
}

.page-blog-xp88-latest-link-2024__inline-link {
  color: #2AD16F; /* Button top color for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-blog-xp88-latest-link-2024__inline-link:hover {
  color: #57E38D; /* Glow */
}

.page-blog-xp88-latest-link-2024__list,
.page-blog-xp88-latest-link-2024__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-xp88-latest-link-2024__ordered-list {
  list-style-type: decimal;
}

.page-blog-xp88-latest-link-2024__list-item {
  margin-bottom: 10px;
  font-size: 1rem;
}

.page-blog-xp88-latest-link-2024__image-in-content {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-xp88-latest-link-2024__center-button {
  display: block;
  margin: 30px auto;
  max-width: 300px;
}

.page-blog-xp88-latest-link-2024__cta-buttons--spaced {
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-xp88-latest-link-2024__faq-list {
  margin-top: 40px;
}

.page-blog-xp88-latest-link-2024__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-xp88-latest-link-2024__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-xp88-latest-link-2024__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for details/summary */
}

.page-blog-xp88-latest-link-2024__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-blog-xp88-latest-link-2024__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #2AD16F; /* Button top color */
}

.page-blog-xp88-latest-link-2024__faq-item[open] .page-blog-xp88-latest-link-2024__faq-toggle {
  content: '−'; /* Change to minus when open for details/summary */
}

.page-blog-xp88-latest-link-2024__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-xp88-latest-link-2024__faq-answer p {
  margin-bottom: 0;
}

.page-blog-xp88-latest-link-2024__cta-buttons--final {
  margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-xp88-latest-link-2024__hero-content {
    margin-top: -80px;
  }
}

@media (max-width: 768px) {
  .page-blog-xp88-latest-link-2024 {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-xp88-latest-link-2024__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-xp88-latest-link-2024__hero-content {
    padding: 30px 15px;
    margin-top: -60px;
  }

  .page-blog-xp88-latest-link-2024__main-title {
    font-size: 1.8rem;
  }

  .page-blog-xp88-latest-link-2024__intro-text {
    font-size: 1rem;
  }

  .page-blog-xp88-latest-link-2024__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-xp88-latest-link-2024__btn-primary,
  .page-blog-xp88-latest-link-2024__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-xp88-latest-link-2024__content-area,
  .page-blog-xp88-latest-link-2024__conclusion-section {
    padding: 40px 15px;
  }

  .page-blog-xp88-latest-link-2024__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-blog-xp88-latest-link-2024__sub-title {
    font-size: 1.5rem;
    margin-top: 30px;
  }

  .page-blog-xp88-latest-link-2024__paragraph,
  .page-blog-xp88-latest-link-2024__list-item,
  .page-blog-xp88-latest-link-2024__faq-answer p {
    font-size: 0.95rem;
  }

  .page-blog-xp88-latest-link-2024 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-blog-xp88-latest-link-2024__image-in-content {
    margin: 20px auto;
  }

  .page-blog-xp88-latest-link-2024__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-xp88-latest-link-2024__faq-answer {
    padding: 0 20px 15px 20px;
  }

  .page-blog-xp88-latest-link-2024__faq-toggle {
    font-size: 1.2rem;
  }

  /* Ensure all containers with images/videos/buttons are responsive */
  .page-blog-xp88-latest-link-2024__hero-image-wrapper,
  .page-blog-xp88-latest-link-2024__content-area,
  .page-blog-xp88-latest-link-2024__conclusion-section,
  .page-blog-xp88-latest-link-2024__cta-buttons,
  .page-blog-xp88-latest-link-2024__faq-list,
  .page-blog-xp88-latest-link-2024__faq-item,
  .page-blog-xp88-latest-link-2024__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }
}

@media (max-width: 480px) {
  .page-blog-xp88-latest-link-2024__main-title {
    font-size: 1.6rem;
  }

  .page-blog-xp88-latest-link-2024__section-title {
    font-size: 1.6rem;
  }

  .page-blog-xp88-latest-link-2024__sub-title {
    font-size: 1.3rem;
  }

  .page-blog-xp88-latest-link-2024__hero-content {
    margin-top: -40px;
  }
}