.page-blog-mh88-exclusive-promotions-overview {
  color: #ffffff; /* Body background is dark #1a1a2e, so use light text */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Rely on shared.css for body background */
}

.page-blog-mh88-exclusive-promotions-overview a {
  color: #26A9E0; /* Brand color for links */
  text-decoration: none;
}

.page-blog-mh88-exclusive-promotions-overview a:hover {
  text-decoration: underline;
}

.page-blog-mh88-exclusive-promotions-overview__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* body handles header offset, small top padding for aesthetic */
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e, #0f0f1d);
}

.page-blog-mh88-exclusive-promotions-overview__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

.page-blog-mh88-exclusive-promotions-overview__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-mh88-exclusive-promotions-overview__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-blog-mh88-exclusive-promotions-overview__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-blog-mh88-exclusive-promotions-overview__description {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-mh88-exclusive-promotions-overview__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-mh88-exclusive-promotions-overview__btn-primary,
.page-blog-mh88-exclusive-promotions-overview__btn-secondary,
.page-blog-mh88-exclusive-promotions-overview__promo-card-button {
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-mh88-exclusive-promotions-overview__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-blog-mh88-exclusive-promotions-overview__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
  transform: translateY(-2px);
}

.page-blog-mh88-exclusive-promotions-overview__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-blog-mh88-exclusive-promotions-overview__btn-secondary:hover {
  background-color: #FFFFFF;
  color: #26A9E0;
  transform: translateY(-2px);
}

.page-blog-mh88-exclusive-promotions-overview__promotions-overview,
.page-blog-mh88-exclusive-promotions-overview__how-to-claim-section,
.page-blog-mh88-exclusive-promotions-overview__why-mh88-section,
.page-blog-mh88-exclusive-promotions-overview__faq-section,
.page-blog-mh88-exclusive-promotions-overview__cta-final {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05); /* Light transparent background for sections */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-mh88-exclusive-promotions-overview__section-title {
  font-size: 2.5rem;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-blog-mh88-exclusive-promotions-overview__section-description {
  font-size: 1.1rem;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-mh88-exclusive-promotions-overview__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-mh88-exclusive-promotions-overview__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.page-blog-mh88-exclusive-promotions-overview__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-mh88-exclusive-promotions-overview__promo-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog-mh88-exclusive-promotions-overview__promo-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-blog-mh88-exclusive-promotions-overview__promo-card-title {
  font-size: 1.5rem;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-mh88-exclusive-promotions-overview__promo-card-text {
  font-size: 0.95rem;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-mh88-exclusive-promotions-overview__promo-card-button {
  background-color: #EA7C07; /* Login color for promotion buttons */
  color: #FFFFFF;
  border: none;
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 25px;
}

.page-blog-mh88-exclusive-promotions-overview__promo-card-button:hover {
  background-color: #c96706;
}

.page-blog-mh88-exclusive-promotions-overview__steps-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-mh88-exclusive-promotions-overview__step-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-blog-mh88-exclusive-promotions-overview__step-title {
  font-size: 1.3rem;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-blog-mh88-exclusive-promotions-overview__step-text {
  font-size: 1rem;
  color: #f0f0f0;
}

.page-blog-mh88-exclusive-promotions-overview__cta-container {
  text-align: center;
  margin-top: 20px;
}

.page-blog-mh88-exclusive-promotions-overview__advantage-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-mh88-exclusive-promotions-overview__advantage-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 5px solid #26A9E0;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-blog-mh88-exclusive-promotions-overview__advantage-title {
  font-size: 1.3rem;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.page-blog-mh88-exclusive-promotions-overview__advantage-text {
  font-size: 1rem;
  color: #f0f0f0;
}

.page-blog-mh88-exclusive-promotions-overview__faq-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-mh88-exclusive-promotions-overview__faq-container {
  display: flex;
  gap: 40px;
  width: 100%;
  align-items: flex-start;
}

.page-blog-mh88-exclusive-promotions-overview__faq-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: block;
}

.page-blog-mh88-exclusive-promotions-overview__faq-list {
  flex: 1;
  max-width: 50%;
}

.page-blog-mh88-exclusive-promotions-overview__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-blog-mh88-exclusive-promotions-overview__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 25px;
  background-color: rgba(255, 255, 255, 0.08);
  font-weight: bold;
  font-size: 1.1rem;
  color: #26A9E0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-blog-mh88-exclusive-promotions-overview__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-mh88-exclusive-promotions-overview__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-mh88-exclusive-promotions-overview__faq-item[open] .page-blog-mh88-exclusive-promotions-overview__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-mh88-exclusive-promotions-overview__faq-answer {
  padding: 15px 25px 20px;
  font-size: 0.95rem;
  color: #f0f0f0;
  line-height: 1.6;
}

.page-blog-mh88-exclusive-promotions-overview__cta-final {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #26A9E0, #1e87c0);
  color: #FFFFFF;
  border-radius: 10px;
}

.page-blog-mh88-exclusive-promotions-overview__cta-content {
  max-width: 800px;
  margin-bottom: 30px;
}

.page-blog-mh88-exclusive-promotions-overview__cta-title {
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-mh88-exclusive-promotions-overview__cta-description {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog-mh88-exclusive-promotions-overview__cta-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: block;
  margin-top: 30px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-mh88-exclusive-promotions-overview__faq-container {
    flex-direction: column;
    align-items: center;
  }

  .page-blog-mh88-exclusive-promotions-overview__faq-image,
  .page-blog-mh88-exclusive-promotions-overview__faq-list {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-blog-mh88-exclusive-promotions-overview__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-mh88-exclusive-promotions-overview__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-mh88-exclusive-promotions-overview__description,
  .page-blog-mh88-exclusive-promotions-overview__section-description,
  .page-blog-mh88-exclusive-promotions-overview__step-text,
  .page-blog-mh88-exclusive-promotions-overview__advantage-text,
  .page-blog-mh88-exclusive-promotions-overview__faq-answer p,
  .page-blog-mh88-exclusive-promotions-overview__cta-description {
    font-size: 1rem;
  }

  .page-blog-mh88-exclusive-promotions-overview__section-title,
  .page-blog-mh88-exclusive-promotions-overview__cta-title {
    font-size: 2rem;
  }

  .page-blog-mh88-exclusive-promotions-overview__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-mh88-exclusive-promotions-overview__btn-primary,
  .page-blog-mh88-exclusive-promotions-overview__btn-secondary,
  .page-blog-mh88-exclusive-promotions-overview__promo-card-button {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
  }

  .page-blog-mh88-exclusive-promotions-overview__promotions-overview,
  .page-blog-mh88-exclusive-promotions-overview__how-to-claim-section,
  .page-blog-mh88-exclusive-promotions-overview__why-mh88-section,
  .page-blog-mh88-exclusive-promotions-overview__faq-section,
  .page-blog-mh88-exclusive-promotions-overview__cta-final {
    margin: 20px auto;
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-mh88-exclusive-promotions-overview__promo-cards,
  .page-blog-mh88-exclusive-promotions-overview__steps-list,
  .page-blog-mh88-exclusive-promotions-overview__advantage-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-mh88-exclusive-promotions-overview__promo-card-image,
  .page-blog-mh88-exclusive-promotions-overview__hero-image,
  .page-blog-mh88-exclusive-promotions-overview__faq-image,
  .page-blog-mh88-exclusive-promotions-overview__cta-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-mh88-exclusive-promotions-overview__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-mh88-exclusive-promotions-overview__faq-answer {
    padding: 10px 20px 15px;
  }
  
  .page-blog-mh88-exclusive-promotions-overview__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-blog-mh88-exclusive-promotions-overview__video-container {
    width: 100%; /* desktop must also have this */
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}