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

.page-blog-cmm88-latest-promotions-analysis {
  background-color: var(--cmm88-background-color);
  color: var(--cmm88-text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-blog-cmm88-latest-promotions-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px;
  overflow: hidden;
}

.page-blog-cmm88-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-blog-cmm88-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Adjust to bring content up, but not overlap image */
  background-color: rgba(8, 22, 15, 0.85); /* Semi-transparent background for readability */
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-cmm88-latest-promotions-analysis__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--cmm88-text-main);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.page-blog-cmm88-latest-promotions-analysis__hero-description {
  font-size: 1.1rem;
  color: var(--cmm88-text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-cmm88-latest-promotions-analysis__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-cmm88-latest-promotions-analysis__btn-primary {
  background: var(--cmm88-button-gradient);
  color: var(--cmm88-text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-cmm88-latest-promotions-analysis__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
  opacity: 0.9;
}

.page-blog-cmm88-latest-promotions-analysis__btn-secondary {
  background-color: transparent;
  color: var(--cmm88-secondary-color);
  border: 2px solid var(--cmm88-secondary-color);
}

.page-blog-cmm88-latest-promotions-analysis__btn-secondary:hover {
  background-color: var(--cmm88-secondary-color);
  color: var(--cmm88-text-main);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-cmm88-latest-promotions-analysis__intro-section,
.page-blog-cmm88-latest-promotions-analysis__promotions-detail,
.page-blog-cmm88-latest-promotions-analysis__terms-conditions,
.page-blog-cmm88-latest-promotions-analysis__how-to-claim,
.page-blog-cmm88-latest-promotions-analysis__comparison,
.page-blog-cmm88-latest-promotions-analysis__conclusion,
.page-blog-cmm88-latest-promotions-analysis__faq-section {
  padding: 80px 0;
}

.page-blog-cmm88-latest-promotions-analysis__dark-bg {
  background-color: var(--cmm88-deep-green);
}

.page-blog-cmm88-latest-promotions-analysis__section-title {
  font-size: 2.5rem;
  color: var(--cmm88-text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.page-blog-cmm88-latest-promotions-analysis__section-text {
  font-size: 1.1rem;
  color: var(--cmm88-text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-cmm88-latest-promotions-analysis__promotion-type-section {
  background-color: var(--cmm88-card-bg);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--cmm88-border-color);
}

.page-blog-cmm88-latest-promotions-analysis__promotion-subtitle {
  font-size: 2rem;
  color: var(--cmm88-gold-color);
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-cmm88-latest-promotions-analysis__promotion-content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.page-blog-cmm88-latest-promotions-analysis__promotion-image {
  width: 40%;
  min-width: 200px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-cmm88-latest-promotions-analysis__promotion-text-block {
  flex: 1;
}

.page-blog-cmm88-latest-promotions-analysis__promotion-text-block p {
  color: var(--cmm88-text-secondary);
  margin-bottom: 15px;
  text-align: justify;
}

.page-blog-cmm88-latest-promotions-analysis__promotion-list,
.page-blog-cmm88-latest-promotions-analysis__terms-list,
.page-blog-cmm88-latest-promotions-analysis__guide-list,
.page-blog-cmm88-latest-promotions-analysis__comparison-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-cmm88-latest-promotions-analysis__promotion-list li,
.page-blog-cmm88-latest-promotions-analysis__terms-list li,
.page-blog-cmm88-latest-promotions-analysis__guide-list li,
.page-blog-cmm88-latest-promotions-analysis__comparison-list li {
  color: var(--cmm88-text-main);
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-blog-cmm88-latest-promotions-analysis__promotion-list li::before,
.page-blog-cmm88-latest-promotions-analysis__terms-list li::before,
.page-blog-cmm88-latest-promotions-analysis__guide-list li::before,
.page-blog-cmm88-latest-promotions-analysis__comparison-list li::before {
  content: '✔';
  color: var(--cmm88-secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-blog-cmm88-latest-promotions-analysis__guide-list li::before {
  content: counter(item) '. ';
  counter-increment: item;
  color: var(--cmm88-gold-color);
  font-weight: bold;
  font-size: 1.2rem;
  left: 0;
}

.page-blog-cmm88-latest-promotions-analysis__guide-list {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
}

.page-blog-cmm88-latest-promotions-analysis__faq-list {
  margin-top: 40px;
}

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

.page-blog-cmm88-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--cmm88-text-main);
  background-color: var(--cmm88-card-bg);
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-blog-cmm88-latest-promotions-analysis__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome/Safari */
}

.page-blog-cmm88-latest-promotions-analysis__faq-qtext {
  flex-grow: 1;
}

.page-blog-cmm88-latest-promotions-analysis__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--cmm88-secondary-color);
  transition: transform 0.3s ease;
}

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

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

.page-blog-cmm88-latest-promotions-analysis__faq-answer p {
  margin-bottom: 0;
  color: var(--cmm88-text-secondary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-cmm88-latest-promotions-analysis__hero-content {
    margin-top: -80px;
  }
  .page-blog-cmm88-latest-promotions-analysis__hero-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
  }
  .page-blog-cmm88-latest-promotions-analysis__section-title {
    font-size: 2.2rem;
  }
  .page-blog-cmm88-latest-promotions-analysis__promotion-subtitle {
    font-size: 1.8rem;
  }
}

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

  .page-blog-cmm88-latest-promotions-analysis__hero-section {
    padding: 10px 0 40px;
  }

  .page-blog-cmm88-latest-promotions-analysis__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }

  .page-blog-cmm88-latest-promotions-analysis__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .page-blog-cmm88-latest-promotions-analysis__hero-description {
    font-size: 1rem;
  }

  .page-blog-cmm88-latest-promotions-analysis__cta-button {
    width: 100% !important;
    padding: 12px 20px;
  }
  
  .page-blog-cmm88-latest-promotions-analysis__intro-section,
  .page-blog-cmm88-latest-promotions-analysis__promotions-detail,
  .page-blog-cmm88-latest-promotions-analysis__terms-conditions,
  .page-blog-cmm88-latest-promotions-analysis__how-to-claim,
  .page-blog-cmm88-latest-promotions-analysis__comparison,
  .page-blog-cmm88-latest-promotions-analysis__conclusion,
  .page-blog-cmm88-latest-promotions-analysis__faq-section {
    padding: 40px 0;
  }

  .page-blog-cmm88-latest-promotions-analysis__container {
    padding: 0 15px;
  }

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

  .page-blog-cmm88-latest-promotions-analysis__section-text {
    font-size: 1rem;
  }

  .page-blog-cmm88-latest-promotions-analysis__promotion-type-section {
    padding: 30px 20px;
  }

  .page-blog-cmm88-latest-promotions-analysis__promotion-subtitle {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .page-blog-cmm88-latest-promotions-analysis__promotion-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .page-blog-cmm88-latest-promotions-analysis__promotion-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px;
  }

  .page-blog-cmm88-latest-promotions-analysis__promotion-list li,
  .page-blog-cmm88-latest-promotions-analysis__terms-list li,
  .page-blog-cmm88-latest-promotions-analysis__guide-list li,
  .page-blog-cmm88-latest-promotions-analysis__comparison-list li {
    font-size: 1rem;
  }

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

  .page-blog-cmm88-latest-promotions-analysis__faq-answer {
    font-size: 0.95rem;
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-cmm88-latest-promotions-analysis__hero-content {
    padding: 20px 10px;
  }
  .page-blog-cmm88-latest-promotions-analysis__hero-title {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
  }
  .page-blog-cmm88-latest-promotions-analysis__section-title {
    font-size: 1.8rem;
  }
  .page-blog-cmm88-latest-promotions-analysis__promotion-subtitle {
    font-size: 1.4rem;
  }
  .page-blog-cmm88-latest-promotions-analysis__cta-button {
    font-size: 0.9rem;
  }
}