/* style/blog-vn88top-latest-promotions-guide.css */

/* Base styles for the page content, ensuring contrast with body background */
.page-blog-vn88top-latest-promotions-guide {
  color: #F2FFF6; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Body background is handled by shared.css var(--background-color) */
}

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

.page-blog-vn88top-latest-promotions-guide__section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-blog-vn88top-latest-promotions-guide__section:nth-child(odd) {
  background-color: #0A4B2C; /* Deep Green for alternating sections */
}

.page-blog-vn88top-latest-promotions-guide__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #08160F; /* Background */
  position: relative;
  overflow: hidden;
}

.page-blog-vn88top-latest-promotions-guide__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-vn88top-latest-promotions-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 300px; /* Minimum height to avoid tiny images */
}

.page-blog-vn88top-latest-promotions-guide__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  position: relative;
  z-index: 2; /* Ensure content is above any background elements */
}

.page-blog-vn88top-latest-promotions-guide__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-vn88top-latest-promotions-guide__hero-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-blog-vn88top-latest-promotions-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-blog-vn88top-latest-promotions-guide__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-blog-vn88top-latest-promotions-guide__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-blog-vn88top-latest-promotions-guide__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #57E38D; /* Glow */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-vn88top-latest-promotions-guide__text-block {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-blog-vn88top-latest-promotions-guide__text-block strong {
  color: #F2FFF6; /* Text Main */
}

.page-blog-vn88top-latest-promotions-guide__image-and-text {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.page-blog-vn88top-latest-promotions-guide__content-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-blog-vn88top-latest-promotions-guide__text-content {
  flex: 1;
}

.page-blog-vn88top-latest-promotions-guide__btn-primary {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  padding: 12px 25px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-blog-vn88top-latest-promotions-guide__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

.page-blog-vn88top-latest-promotions-guide__step-card {
  background-color: #11271B; /* Card B G */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-vn88top-latest-promotions-guide__step-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-blog-vn88top-latest-promotions-guide__step-title {
  font-size: 1.3rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-blog-vn88top-latest-promotions-guide__tip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-blog-vn88top-latest-promotions-guide__tip-item {
  background-color: #11271B; /* Card B G */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-vn88top-latest-promotions-guide__tip-title {
  font-size: 1.3rem;
  color: #57E38D; /* Glow */
  margin-bottom: 10px;
}

.page-blog-vn88top-latest-promotions-guide__faq-list {
  margin-top: 40px;
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-blog-vn88top-latest-promotions-guide__faq-item {
  background-color: #11271B; /* Card B G */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-vn88top-latest-promotions-guide__faq-item summary {
  list-style: none;
  cursor: pointer;
}

.page-blog-vn88top-latest-promotions-guide__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-vn88top-latest-promotions-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-blog-vn88top-latest-promotions-guide__faq-item[open] .page-blog-vn88top-latest-promotions-guide__faq-question {
  border-bottom: 1px solid transparent; /* No border when open */
}

.page-blog-vn88top-latest-promotions-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-vn88top-latest-promotions-guide__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
  transition: transform 0.3s ease;
}

.page-blog-vn88top-latest-promotions-guide__faq-item[open] .page-blog-vn88top-latest-promotions-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-vn88top-latest-promotions-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B; /* Card B G */
}

.page-blog-vn88top-latest-promotions-guide__conclusion .page-blog-vn88top-latest-promotions-guide__cta-button--bottom {
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-vn88top-latest-promotions-guide__hero-content {
    padding: 30px 20px;
  }

  .page-blog-vn88top-latest-promotions-guide__section {
    padding: 40px 0;
  }

  .page-blog-vn88top-latest-promotions-guide__image-and-text {
    flex-direction: column;
    align-items: center;
  }

  .page-blog-vn88top-latest-promotions-guide__content-image {
    max-width: 100%;
  }

  .page-blog-vn88top-latest-promotions-guide__steps-grid,
  .page-blog-vn88top-latest-promotions-guide__tip-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-blog-vn88top-latest-promotions-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-vn88top-latest-promotions-guide__hero-section {
    padding-top: 10px !important;
  }

  .page-blog-vn88top-latest-promotions-guide__hero-image-wrapper {
    max-height: 400px;
  }

  .page-blog-vn88top-latest-promotions-guide__hero-content {
    padding: 25px 15px;
  }

  .page-blog-vn88top-latest-promotions-guide__main-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .page-blog-vn88top-latest-promotions-guide__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-blog-vn88top-latest-promotions-guide__cta-button,
  .page-blog-vn88top-latest-promotions-guide__btn-primary,
  .page-blog-vn88top-latest-promotions-guide a[class*="button"],
  .page-blog-vn88top-latest-promotions-guide a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-vn88top-latest-promotions-guide__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-blog-vn88top-latest-promotions-guide__sub-title {
    font-size: 1.2rem;
    margin-top: 20px;
  }

  .page-blog-vn88top-latest-promotions-guide__content-image,
  .page-blog-vn88top-latest-promotions-guide__step-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-vn88top-latest-promotions-guide__section,
  .page-blog-vn88top-latest-promotions-guide__card,
  .page-blog-vn88top-latest-promotions-guide__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-blog-vn88top-latest-promotions-guide__cta-buttons,
  .page-blog-vn88top-latest-promotions-guide__button-group,
  .page-blog-vn88top-latest-promotions-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }

  .page-blog-vn88top-latest-promotions-guide__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-vn88top-latest-promotions-guide__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-vn88top-latest-promotions-guide__main-title {
    font-size: 1.8rem;
  }

  .page-blog-vn88top-latest-promotions-guide__section-title {
    font-size: 1.6rem;
  }
}