.page-blog-hello88-latest-promotions {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-blog-hello88-latest-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-hello88-latest-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 700px; /* Limit height for hero image */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-hello88-latest-promotions__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: 20px;
  background: #11271B; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-hello88-latest-promotions__hero-title {
  font-size: clamp(2em, 4vw, 3.2em); /* H1 font size constraint */
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.page-blog-hello88-latest-promotions__hero-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-blog-hello88-latest-promotions__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-hello88-latest-promotions__btn--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-hello88-latest-promotions__btn--primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-hello88-latest-promotions__btn--secondary {
  background: #11271B; /* Card BG */
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E; /* Gold border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-hello88-latest-promotions__btn--secondary:hover {
  background: #0A4B2C; /* Deep Green */
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-hello88-latest-promotions__section-title {
  font-size: 2.2em;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.page-blog-hello88-latest-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #57E38D, transparent); /* Glow */
  border-radius: 2px;
}

.page-blog-hello88-latest-promotions__text-block {
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-hello88-latest-promotions__intro-section,
.page-blog-hello88-latest-promotions__promo-categories-section,
.page-blog-hello88-latest-promotions__how-to-claim-section,
.page-blog-hello88-latest-promotions__faq-section,
.page-blog-hello88-latest-promotions__cta-final-section {
  padding: 60px 0;
}

.page-blog-hello88-latest-promotions__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-hello88-latest-promotions__promo-card {
  background: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-hello88-latest-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-hello88-latest-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  max-width: 100%;
}

.page-blog-hello88-latest-promotions__card-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-blog-hello88-latest-promotions__card-description {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-hello88-latest-promotions__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 25px;
  margin-top: auto; /* Push button to bottom */
}

.page-blog-hello88-latest-promotions__how-to-claim-section {
  background-color: #0A4B2C; /* Deep Green */
  border-top: 1px solid #1E3A2A; /* Divider */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-blog-hello88-latest-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-blog-hello88-latest-promotions__step-item {
  display: flex;
  align-items: flex-start;
  background: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-hello88-latest-promotions__step-number {
  min-width: 40px;
  height: 40px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2em;
  margin-right: 20px;
  flex-shrink: 0;
}

.page-blog-hello88-latest-promotions__step-content h3 {
  color: #F2FFF6; /* Text Main */
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.3em;
}

.page-blog-hello88-latest-promotions__step-content p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.98em;
}

.page-blog-hello88-latest-promotions__step-content a {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-blog-hello88-latest-promotions__step-content a:hover {
  color: #F2C14E; /* Gold */
}

.page-blog-hello88-latest-promotions__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-hello88-latest-promotions__faq-item {
  background: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-blog-hello88-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
}

.page-blog-hello88-latest-promotions__faq-question:hover {
  background-color: #13994A; /* Slightly lighter green */
}

.page-blog-hello88-latest-promotions__faq-item[open] > .page-blog-hello88-latest-promotions__faq-question {
  background-color: #13994A; /* Active state */
}

.page-blog-hello88-latest-promotions__faq-qtext {
  flex-grow: 1;
}

.page-blog-hello88-latest-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E; /* Gold */
}

.page-blog-hello88-latest-promotions__faq-item[open] .page-blog-hello88-latest-promotions__faq-toggle {
  content: '−'; /* Changed by JS */
}

.page-blog-hello88-latest-promotions__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B; /* Card BG */
}

.page-blog-hello88-latest-promotions__cta-final-section {
  background-color: #0A4B2C; /* Deep Green */
  text-align: center;
  padding: 80px 0;
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-blog-hello88-latest-promotions__cta-final-section .page-blog-hello88-latest-promotions__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-blog-hello88-latest-promotions__cta-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  display: block;
}

.page-blog-hello88-latest-promotions__cta-content {
  max-width: 800px;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-blog-hello88-latest-promotions__steps-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-blog-hello88-latest-promotions__cta-final-section .page-blog-hello88-latest-promotions__container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .page-blog-hello88-latest-promotions__cta-content {
    text-align: left;
  }
  .page-blog-hello88-latest-promotions__cta-image {
    margin-right: 40px;
  }
}

@media (max-width: 768px) {
  .page-blog-hello88-latest-promotions__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-hello88-latest-promotions__hero-content {
    padding: 30px 15px;
  }

  .page-blog-hello88-latest-promotions__hero-title {
    font-size: 2em; /* Adjusted for mobile */
  }

  .page-blog-hello88-latest-promotions__hero-description {
    font-size: 1em;
  }

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

  .page-blog-hello88-latest-promotions__btn,
  .page-blog-hello88-latest-promotions__btn--primary,
  .page-blog-hello88-latest-promotions__btn--secondary {
    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-hello88-latest-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-hello88-latest-promotions__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-hello88-latest-promotions__promo-card {
    padding: 20px;
  }

  .page-blog-hello88-latest-promotions__card-title {
    font-size: 1.3em;
  }

  .page-blog-hello88-latest-promotions__card-description {
    font-size: 0.9em;
  }

  .page-blog-hello88-latest-promotions__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-blog-hello88-latest-promotions__step-number {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-blog-hello88-latest-promotions__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-blog-hello88-latest-promotions__faq-answer {
    padding: 10px 20px 15px;
  }

  .page-blog-hello88-latest-promotions__cta-final-section .page-blog-hello88-latest-promotions__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Mobile image responsiveness */
  .page-blog-hello88-latest-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-hello88-latest-promotions__section,
  .page-blog-hello88-latest-promotions__card,
  .page-blog-hello88-latest-promotions__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-hello88-latest-promotions__hero-section {
    padding-top: 10px !important;
  }
}

/* Ensure contrast for links within text blocks */
.page-blog-hello88-latest-promotions__text-block a,
.page-blog-hello88-latest-promotions__faq-answer a {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-blog-hello88-latest-promotions__text-block a:hover,
.page-blog-hello88-latest-promotions__faq-answer a:hover {
  color: #F2C14E; /* Gold */
}