/* style/blog-good88-clu-latest-promotions-analysis.css */

/* Base styles for the page content, ensuring light text on dark background */
.page-blog-good88-clu-latest-promotions-analysis {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-blog-good88-clu-latest-promotions-analysis__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-good88-clu-latest-promotions-analysis__section-subtitle {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 40px;
}

.page-blog-good88-clu-latest-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  text-align: center;
}

.page-blog-good88-clu-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 1;
  max-height: 600px; /* Limit hero image height */
}

.page-blog-good88-clu-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  background: rgba(8, 22, 15, 0.7); /* Background with transparency */
  border-radius: 10px;
  margin-top: -80px; /* Overlap slightly with image for design, but text is below */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-good88-clu-latest-promotions-analysis__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-good88-clu-latest-promotions-analysis__hero-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-blog-good88-clu-latest-promotions-analysis__btn-primary,
.page-blog-good88-clu-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-good88-clu-latest-promotions-analysis__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-blog-good88-clu-latest-promotions-analysis__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-good88-clu-latest-promotions-analysis__btn-secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F; /* A lighter green from the gradient for contrast */
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-good88-clu-latest-promotions-analysis__btn-secondary:hover {
  background: #2E7A4E; /* Border color on hover */
  color: #F2FFF6; /* Text Main */
}

.page-blog-good88-clu-latest-promotions-analysis__cta-full-width {
  width: 100%;
  margin-top: 30px;
}

.page-blog-good88-clu-latest-promotions-analysis__text-block {
  padding: 60px 0;
}

.page-blog-good88-clu-latest-promotions-analysis__dark-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 60px 0;
}

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

.page-blog-good88-clu-latest-promotions-analysis__promo-card {
  background: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  color: #F2FFF6; /* Text Main */
  border: 1px solid #2E7A4E; /* Border */
}

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

.page-blog-good88-clu-latest-promotions-analysis__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-blog-good88-clu-latest-promotions-analysis__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
}

.page-blog-good88-clu-latest-promotions-analysis__promo-card p {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-good88-clu-latest-promotions-analysis__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-blog-good88-clu-latest-promotions-analysis__list li {
  background: rgba(17, 39, 27, 0.5); /* Card BG with transparency */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  color: #F2FFF6; /* Text Main */
  border-left: 5px solid #2AD16F; /* Highlight with button color */
}

.page-blog-good88-clu-latest-promotions-analysis__list li strong {
  color: #F2C14E; /* Gold */
  margin-right: 8px;
}

.page-blog-good88-clu-latest-promotions-analysis__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-good88-clu-latest-promotions-analysis__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-good88-clu-latest-promotions-analysis__step-card {
  background: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #F2FFF6; /* Text Main */
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-good88-clu-latest-promotions-analysis__step-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin: 0 auto 20px auto;
  display: block;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-good88-clu-latest-promotions-analysis__step-title {
  font-size: 1.3em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-blog-good88-clu-latest-promotions-analysis__faq-item {
  background: #11271B; /* Card BG */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-good88-clu-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #1E3A2A; /* Divider */
  list-style: none; /* For details/summary */
}

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

.page-blog-good88-clu-latest-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #57E38D; /* Glow */
}

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

.page-blog-good88-clu-latest-promotions-analysis__faq-answer {
  padding: 15px 25px 25px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

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

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

  .page-blog-good88-clu-latest-promotions-analysis__hero-section {
    padding: 40px 0;
    padding-top: 10px !important; /* body handles header offset, small top padding */
  }

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

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

  .page-blog-good88-clu-latest-promotions-analysis__section-title {
    font-size: 2em;
  }

  .page-blog-good88-clu-latest-promotions-analysis__section-subtitle {
    font-size: 1em;
  }

  .page-blog-good88-clu-latest-promotions-analysis__btn-primary,
  .page-blog-good88-clu-latest-promotions-analysis__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-good88-clu-latest-promotions-analysis__promo-grid,
  .page-blog-good88-clu-latest-promotions-analysis__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-good88-clu-latest-promotions-analysis__promo-card,
  .page-blog-good88-clu-latest-promotions-analysis__step-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-good88-clu-latest-promotions-analysis__promo-card .page-blog-good88-clu-latest-promotions-analysis__btn-secondary {
    margin-top: auto; /* Push button to bottom */
  }

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

  .page-blog-good88-clu-latest-promotions-analysis__hero-image {
    max-height: 400px;
  }

  .page-blog-good88-clu-latest-promotions-analysis__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-good88-clu-latest-promotions-analysis__section,
  .page-blog-good88-clu-latest-promotions-analysis__card,
  .page-blog-good88-clu-latest-promotions-analysis__container,
  .page-blog-good88-clu-latest-promotions-analysis__hero-section,
  .page-blog-good88-clu-latest-promotions-analysis__promo-card,
  .page-blog-good88-clu-latest-promotions-analysis__step-card,
  .page-blog-good88-clu-latest-promotions-analysis__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }
}

/* Ensure content area images are at least 200px where applicable */
.page-blog-good88-clu-latest-promotions-analysis__promo-card .page-blog-good88-clu-latest-promotions-analysis__card-image,
.page-blog-good88-clu-latest-promotions-analysis__step-card .page-blog-good88-clu-latest-promotions-analysis__step-image,
.page-blog-good88-clu-latest-promotions-analysis__why-choose-section .page-blog-good88-clu-latest-promotions-analysis__image-full-width {
  min-width: 200px;
  min-height: 200px;
}

/* No filter on images */
.page-blog-good88-clu-latest-promotions-analysis img {
  filter: none; /* Explicitly remove any default filters */
}

/* Desktop video width for flex containers */
.page-blog-good88-clu-latest-promotions-analysis__video-container {
  width: 100%;
}