/* style/blog-mh88-latest-promotions-analysis.css */
.page-blog-mh88-latest-promotions-analysis {
  font-family: 'Arial', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-color);
}

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

.page-blog-mh88-latest-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Align content to top */
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-mh88-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-mh88-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  color: var(--text-main);
  padding: 20px;
  box-sizing: border-box;
  margin-top: 20px; /* Space between image and text */
}

.page-blog-mh88-latest-promotions-analysis__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--gold-color);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.page-blog-mh88-latest-promotions-analysis__hero-description {
  font-size: clamp(1em, 2vw, 1.3em);
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.page-blog-mh88-latest-promotions-analysis__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-blog-mh88-latest-promotions-analysis__cta-button--small {
  font-size: 1em;
  padding: 12px 25px;
}

.page-blog-mh88-latest-promotions-analysis__cta-button--large {
  font-size: 1.2em;
  padding: 18px 35px;
}

.page-blog-mh88-latest-promotions-analysis__introduction-section,
.page-blog-mh88-latest-promotions-analysis__promotions-overview,
.page-blog-mh88-latest-promotions-analysis__how-to-claim-section,
.page-blog-mh88-latest-promotions-analysis__terms-section,
.page-blog-mh88-latest-promotions-analysis__tips-section,
.page-blog-mh88-latest-promotions-analysis__faq-section,
.page-blog-mh88-latest-promotions-analysis__cta-section {
  padding: 60px 0;
}

.page-blog-mh88-latest-promotions-analysis__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-blog-mh88-latest-promotions-analysis__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--glow-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-blog-mh88-latest-promotions-analysis__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-secondary);
  text-align: justify;
}

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

.page-blog-mh88-latest-promotions-analysis__promo-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-blog-mh88-latest-promotions-analysis__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

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

.page-blog-mh88-latest-promotions-analysis__card-title {
  font-size: 1.4em;
  font-weight: 600;
  color: var(--text-main);
  padding: 20px 20px 10px;
}

.page-blog-mh88-latest-promotions-analysis__card-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: var(--text-secondary);
  padding: 0 20px 20px;
}

.page-blog-mh88-latest-promotions-analysis__steps-list,
.page-blog-mh88-latest-promotions-analysis__terms-list,
.page-blog-mh88-latest-promotions-analysis__tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-blog-mh88-latest-promotions-analysis__step-item,
.page-blog-mh88-latest-promotions-analysis__terms-item,
.page-blog-mh88-latest-promotions-analysis__tips-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.page-blog-mh88-latest-promotions-analysis__step-item:last-child,
.page-blog-mh88-latest-promotions-analysis__terms-item:last-child,
.page-blog-mh88-latest-promotions-analysis__tips-item:last-child {
  margin-bottom: 0;
}

.page-blog-mh88-latest-promotions-analysis__step-title {
  font-size: 1.3em;
  color: var(--gold-color);
  margin-bottom: 10px;
}

.page-blog-mh88-latest-promotions-analysis__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-blog-mh88-latest-promotions-analysis__terms-item,
.page-blog-mh88-latest-promotions-analysis__tips-item {
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-blog-mh88-latest-promotions-analysis__terms-item strong,
.page-blog-mh88-latest-promotions-analysis__tips-item strong {
  color: var(--text-main);
}

.page-blog-mh88-latest-promotions-analysis__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-mh88-latest-promotions-analysis__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.page-blog-mh88-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
  position: relative;
  user-select: none;
  background-color: var(--deep-green-color);
  transition: background-color 0.3s ease;
}

.page-blog-mh88-latest-promotions-analysis__faq-question:hover {
  background-color: var(--primary-color);
}

.page-blog-mh88-latest-promotions-analysis__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-mh88-latest-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow-color);
}

.page-blog-mh88-latest-promotions-analysis__faq-answer {
  padding: 15px 20px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-secondary);
  border-top: 1px solid var(--divider-color);
}

.page-blog-mh88-latest-promotions-analysis__faq-item[open] .page-blog-mh88-latest-promotions-analysis__faq-question {
  background-color: var(--primary-color);
}

.page-blog-mh88-latest-promotions-analysis__cta-section .page-blog-mh88-latest-promotions-analysis__container {
  text-align: center;
}

/* Custom Colors */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --bg-color: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-mh88-latest-promotions-analysis__hero-content {
    padding: 15px;
  }
  .page-blog-mh88-latest-promotions-analysis__main-title {
    font-size: clamp(1.8em, 4.5vw, 2.8em);
  }
  .page-blog-mh88-latest-promotions-analysis__hero-description {
    font-size: clamp(0.9em, 1.8vw, 1.2em);
  }
  .page-blog-mh88-latest-promotions-analysis__section-title {
    font-size: clamp(1.6em, 3.5vw, 2.2em);
  }
  .page-blog-mh88-latest-promotions-analysis__promo-card {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 768px) {
  .page-blog-mh88-latest-promotions-analysis__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-mh88-latest-promotions-analysis__hero-content {
    margin-top: 10px;
  }
  .page-blog-mh88-latest-promotions-analysis__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }
  .page-blog-mh88-latest-promotions-analysis__hero-description {
    font-size: clamp(0.85em, 2.5vw, 1.1em);
    margin-bottom: 20px;
  }
  .page-blog-mh88-latest-promotions-analysis__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 1em !important;
  }
  .page-blog-mh88-latest-promotions-analysis__cta-button--large {
    padding: 15px 25px !important;
  }
  .page-blog-mh88-latest-promotions-analysis__introduction-section,
  .page-blog-mh88-latest-promotions-analysis__promotions-overview,
  .page-blog-mh88-latest-promotions-analysis__how-to-claim-section,
  .page-blog-mh88-latest-promotions-analysis__terms-section,
  .page-blog-mh88-latest-promotions-analysis__tips-section,
  .page-blog-mh88-latest-promotions-analysis__faq-section,
  .page-blog-mh88-latest-promotions-analysis__cta-section {
    padding: 40px 0;
  }
  .page-blog-mh88-latest-promotions-analysis__container {
    padding: 0 15px;
  }
  .page-blog-mh88-latest-promotions-analysis__section-title {
    font-size: clamp(1.4em, 5vw, 2em);
    margin-bottom: 30px;
  }
  .page-blog-mh88-latest-promotions-analysis__text-block {
    font-size: 1em;
  }
  .page-blog-mh88-latest-promotions-analysis__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-mh88-latest-promotions-analysis__card-image {
    height: 180px;
  }
  .page-blog-mh88-latest-promotions-analysis__card-title {
    font-size: 1.2em;
    padding: 15px 15px 5px;
  }
  .page-blog-mh88-latest-promotions-analysis__card-description {
    font-size: 0.9em;
    padding: 0 15px 15px;
  }
  .page-blog-mh88-latest-promotions-analysis__step-item,
  .page-blog-mh88-latest-promotions-analysis__terms-item,
  .page-blog-mh88-latest-promotions-analysis__tips-item {
    padding: 20px;
  }
  .page-blog-mh88-latest-promotions-analysis__step-title {
    font-size: 1.1em;
  }
  .page-blog-mh88-latest-promotions-analysis__step-description,
  .page-blog-mh88-latest-promotions-analysis__terms-item,
  .page-blog-mh88-latest-promotions-analysis__tips-item {
    font-size: 0.95em;
  }
  .page-blog-mh88-latest-promotions-analysis__faq-question {
    font-size: 1em;
    padding: 15px;
  }
  .page-blog-mh88-latest-promotions-analysis__faq-answer {
    padding: 10px 15px 15px;
    font-size: 0.95em;
  }
  /* Mobile image responsiveness */
  .page-blog-mh88-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-mh88-latest-promotions-analysis__hero-section,
  .page-blog-mh88-latest-promotions-analysis__introduction-section .page-blog-mh88-latest-promotions-analysis__container,
  .page-blog-mh88-latest-promotions-analysis__promotions-overview .page-blog-mh88-latest-promotions-analysis__container,
  .page-blog-mh88-latest-promotions-analysis__how-to-claim-section .page-blog-mh88-latest-promotions-analysis__container,
  .page-blog-mh88-latest-promotions-analysis__terms-section .page-blog-mh88-latest-promotions-analysis__container,
  .page-blog-mh88-latest-promotions-analysis__tips-section .page-blog-mh88-latest-promotions-analysis__container,
  .page-blog-mh88-latest-promotions-analysis__faq-section .page-blog-mh88-latest-promotions-analysis__container,
  .page-blog-mh88-latest-promotions-analysis__cta-section .page-blog-mh88-latest-promotions-analysis__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-blog-mh88-latest-promotions-analysis__promo-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-mh88-latest-promotions-analysis__cta-buttons,
  .page-blog-mh88-latest-promotions-analysis__button-group,
  .page-blog-mh88-latest-promotions-analysis__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;
  }
  .page-blog-mh88-latest-promotions-analysis__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}

/* Body background color is var(--background-color) from shared.css. */
/* Assuming --background-color is dark, using light text. */
/* If --background-color is light, text colors would need adjustment. */
/* Example: if body is light, then .page-blog-mh88-latest-promotions-analysis { color: #333333; } */
/* Currently optimized for dark background with light text as per custom colors */

/* Contrast Fixes - Ensure text is visible on specified backgrounds */
.page-blog-mh88-latest-promotions-analysis h1, .page-blog-mh88-latest-promotions-analysis h2, .page-blog-mh88-latest-promotions-analysis h3, .page-blog-mh88-latest-promotions-analysis h4, .page-blog-mh88-latest-promotions-analysis h5, .page-blog-mh88-latest-promotions-analysis h6 {
  color: var(--text-main);
}

.page-blog-mh88-latest-promotions-analysis p, .page-blog-mh88-latest-promotions-analysis li {
  color: var(--text-secondary);
}

/* Specific elements with brand colors */
.page-blog-mh88-latest-promotions-analysis__cta-button {
  color: #ffffff; /* White text on gradient button */
}

.page-blog-mh88-latest-promotions-analysis__faq-question {
  color: var(--text-main); /* Text main on deep green background */
}

.page-blog-mh88-latest-promotions-analysis__step-title {
  color: var(--gold-color); /* Gold text for step titles */
}