/* style/blog-m888-latest-promotions-analysis.css */

:root {
  --m888-primary-color: #26A9E0;
  --m888-secondary-color: #FFFFFF;
  --m888-login-color: #EA7C07;
  --m888-background-color: #0a0a0a; /* From body background info */
  --m888-text-light: #ffffff;
  --m888-text-dark: #333333;
  --m888-card-bg: rgba(255, 255, 255, 0.1);
  --m888-border-color: rgba(255, 255, 255, 0.2);
}

.page-blog-m888-latest-promotions-analysis {
  color: var(--m888-text-light); /* Body is dark, so text is light */
  background-color: var(--m888-background-color);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-m888-latest-promotions-analysis__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: 60px;
  text-align: center;
  background-color: var(--m888-background-color);
}

.page-blog-m888-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  position: relative;
}

.page-blog-m888-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-blog-m888-latest-promotions-analysis__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  color: var(--m888-secondary-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-m888-latest-promotions-analysis__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--m888-secondary-color);
  line-height: 1.2;
}

.page-blog-m888-latest-promotions-analysis__description {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-m888-latest-promotions-analysis__btn-primary {
  display: inline-block;
  background-color: var(--m888-primary-color);
  color: var(--m888-secondary-color);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: 2px solid var(--m888-primary-color);
}

.page-blog-m888-latest-promotions-analysis__btn-primary:hover {
  background-color: darken(var(--m888-primary-color), 10%);
  transform: translateY(-2px);
}

.page-blog-m888-latest-promotions-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--m888-background-color);
  color: var(--m888-text-light);
}

.page-blog-m888-latest-promotions-analysis__section-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-m888-latest-promotions-analysis__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 25px;
  color: var(--m888-primary-color);
  text-align: center;
}

.page-blog-m888-latest-promotions-analysis__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--m888-secondary-color);
}

.page-blog-m888-latest-promotions-analysis__paragraph {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--m888-text-light);
}

.page-blog-m888-latest-promotions-analysis__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-m888-latest-promotions-analysis__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
  max-width: 800px;
}

.page-blog-m888-latest-promotions-analysis__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--m888-text-light);
}

.page-blog-m888-latest-promotions-analysis__list-item {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.page-blog-m888-latest-promotions-analysis__text-link {
  color: var(--m888-primary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-blog-m888-latest-promotions-analysis__text-link:hover {
  color: var(--m888-login-color);
}

.page-blog-m888-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--m888-primary-color);
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--m888-primary-color);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin-top: 15px;
}

.page-blog-m888-latest-promotions-analysis__btn-secondary:hover {
  background-color: var(--m888-primary-color);
  color: var(--m888-secondary-color);
  transform: translateY(-2px);
}

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

.page-blog-m888-latest-promotions-analysis__card {
  background: var(--m888-card-bg); /* Semi-transparent white for dark background */
  color: var(--m888-text-light);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid var(--m888-border-color);
}

.page-blog-m888-latest-promotions-analysis__card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--m888-primary-color);
}

.page-blog-m888-latest-promotions-analysis__card-text {
  font-size: 1rem;
  line-height: 1.6;
}

.page-blog-m888-latest-promotions-analysis__cta-full-width {
  width: fit-content;
  margin: 40px auto 0 auto;
  display: block;
  text-align: center;
}

.page-blog-m888-latest-promotions-analysis__faq-list {
  margin-top: 30px;
}

.page-blog-m888-latest-promotions-analysis__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--m888-card-bg);
  border: 1px solid var(--m888-border-color);
}

.page-blog-m888-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--m888-secondary-color);
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none; /* For <summary> */
}

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

.page-blog-m888-latest-promotions-analysis__faq-item[open] > .page-blog-m888-latest-promotions-analysis__faq-question {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-blog-m888-latest-promotions-analysis__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 10px;
}

.page-blog-m888-latest-promotions-analysis__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--m888-text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-m888-latest-promotions-analysis {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-m888-latest-promotions-analysis__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-m888-latest-promotions-analysis__hero-content {
    padding: 15px;
    max-width: 95%;
  }

  .page-blog-m888-latest-promotions-analysis__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-m888-latest-promotions-analysis__description {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    margin-bottom: 20px;
  }

  .page-blog-m888-latest-promotions-analysis__btn-primary,
  .page-blog-m888-latest-promotions-analysis__btn-secondary,
  .page-blog-m888-latest-promotions-analysis a[class*="button"],
  .page-blog-m888-latest-promotions-analysis 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: 12px 15px;
    font-size: 1rem;
  }

  .page-blog-m888-latest-promotions-analysis__cta-full-width {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0 15px;
  }

  .page-blog-m888-latest-promotions-analysis__content-area {
    padding: 20px 15px;
  }

  .page-blog-m888-latest-promotions-analysis__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-m888-latest-promotions-analysis__sub-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-m888-latest-promotions-analysis__paragraph,
  .page-blog-m888-latest-promotions-analysis__list-item,
  .page-blog-m888-latest-promotions-analysis__card-text {
    font-size: 1rem;
  }

  .page-blog-m888-latest-promotions-analysis img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-m888-latest-promotions-analysis__hero-image-wrapper,
  .page-blog-m888-latest-promotions-analysis__image-full-width,
  .page-blog-m888-latest-promotions-analysis__image-content,
  .page-blog-m888-latest-promotions-analysis__benefits-grid,
  .page-blog-m888-latest-promotions-analysis__card,
  .page-blog-m888-latest-promotions-analysis__faq-list,
  .page-blog-m888-latest-promotions-analysis__faq-item,
  .page-blog-m888-latest-promotions-analysis__section-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-blog-m888-latest-promotions-analysis__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-m888-latest-promotions-analysis__card {
    padding: 20px;
  }

  .page-blog-m888-latest-promotions-analysis__faq-question {
    padding: 15px 20px;
    font-size: 1.05rem;
  }

  .page-blog-m888-latest-promotions-analysis__faq-answer {
    padding: 0 20px 15px 20px;
  }
}