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

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

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

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

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

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

.page-blog-win89-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  background-color: rgba(17, 39, 27, 0.85); /* Slightly transparent card background */
  border-radius: 10px;
  margin-top: -80px; /* Overlap with image for visual effect, but not text on image */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-blog-win89-latest-promotions-analysis__main-title {
  font-size: clamp(2em, 4vw, 3em); /* Responsive font size for H1 */
  font-weight: 700;
  color: var(--win89-gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-win89-latest-promotions-analysis__description {
  font-size: 1.1em;
  color: var(--win89-text-main);
  margin-bottom: 30px;
}

.page-blog-win89-latest-promotions-analysis__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-win89-latest-promotions-analysis__btn-primary,
.page-blog-win89-latest-promotions-analysis__btn-secondary,
.page-blog-win89-latest-promotions-analysis__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05em;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
}

.page-blog-win89-latest-promotions-analysis__btn-primary {
  background: var(--win89-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-win89-latest-promotions-analysis__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

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

.page-blog-win89-latest-promotions-analysis__btn-secondary:hover {
  background-color: var(--win89-secondary-color);
  color: var(--win89-background-color);
}

.page-blog-win89-latest-promotions-analysis__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  color: var(--win89-gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.page-blog-win89-latest-promotions-analysis__sub-section-title {
  font-size: clamp(1.4em, 2.5vw, 2em);
  color: var(--win89-secondary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: 600;
}

.page-blog-win89-latest-promotions-analysis__intro-section,
.page-blog-win89-latest-promotions-analysis__promotion-types-section,
.page-blog-win89-latest-promotions-analysis__claim-guide-section,
.page-blog-win89-latest-promotions-analysis__benefits-section,
.page-blog-win89-latest-promotions-analysis__faq-section,
.page-blog-win89-latest-promotions-analysis__conclusion-section {
  padding: 60px 0;
  background-color: var(--win89-background-color);
}

.page-blog-win89-latest-promotions-analysis__text-block {
  font-size: 1.05em;
  color: var(--win89-text-main);
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-blog-win89-latest-promotions-analysis__promo-card,
.page-blog-win89-latest-promotions-analysis__benefit-card,
.page-blog-win89-latest-promotions-analysis__step-card {
  background-color: var(--win89-card-bg);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--win89-border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-win89-latest-promotions-analysis__promo-card:hover,
.page-blog-win89-latest-promotions-analysis__benefit-card:hover,
.page-blog-win89-latest-promotions-analysis__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-blog-win89-latest-promotions-analysis__card-image,
.page-blog-win89-latest-promotions-analysis__benefit-icon {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--win89-border-color);
  max-width: 100%; /* Ensure images don't overflow */
  display: block;
}

.page-blog-win89-latest-promotions-analysis__card-title {
  font-size: 1.4em;
  color: var(--win89-secondary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-win89-latest-promotions-analysis__card-description {
  font-size: 0.95em;
  color: var(--win89-text-secondary);
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-blog-win89-latest-promotions-analysis__card-btn {
  margin-top: auto; /* Push button to bottom */
  background: var(--win89-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 2px 10px rgba(42, 209, 111, 0.3);
}

.page-blog-win89-latest-promotions-analysis__card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(42, 209, 111, 0.5);
}

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

.page-blog-win89-latest-promotions-analysis__list li {
  background-color: var(--win89-card-bg);
  border: 1px solid var(--win89-border-color);
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  color: var(--win89-text-main);
  font-size: 1.05em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-win89-latest-promotions-analysis__list li p {
  margin: 0;
  color: var(--win89-text-main);
}

.page-blog-win89-latest-promotions-analysis__list li strong {
  color: var(--win89-secondary-color);
}

.page-blog-win89-latest-promotions-analysis__dark-section {
  background-color: var(--win89-deep-green);
  padding: 80px 0;
  text-align: center;
}

.page-blog-win89-latest-promotions-analysis__dark-section .page-blog-win89-latest-promotions-analysis__section-title {
  color: var(--win89-gold-color);
}

.page-blog-win89-latest-promotions-analysis__dark-section .page-blog-win89-latest-promotions-analysis__description {
  color: var(--win89-text-secondary);
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

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

.page-blog-win89-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: var(--win89-text-main);
  cursor: pointer;
  background-color: var(--win89-deep-green);
  border-bottom: 1px solid var(--win89-divider-color);
  transition: background-color 0.3s ease;
  list-style: none; /* For details summary */
}

.page-blog-win89-latest-promotions-analysis__faq-question::-webkit-details-marker {
  display: none; /* For details summary */
}

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

.page-blog-win89-latest-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--win89-gold-color);
}

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

.page-blog-win89-latest-promotions-analysis__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: var(--win89-text-secondary);
  background-color: var(--win89-card-bg);
  border-top: none;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-win89-latest-promotions-analysis__hero-content {
    margin-top: -50px;
    padding: 30px;
  }

  .page-blog-win89-latest-promotions-analysis__main-title {
    font-size: clamp(1.8em, 4.5vw, 2.8em);
  }

  .page-blog-win89-latest-promotions-analysis__section-title {
    font-size: clamp(1.6em, 3.8vw, 2.2em);
  }
}

@media (max-width: 768px) {
  .page-blog-win89-latest-promotions-analysis__hero-content {
    margin-top: -30px;
    padding: 25px;
  }

  .page-blog-win89-latest-promotions-analysis__main-title {
    font-size: clamp(1.6em, 6vw, 2.5em);
  }

  .page-blog-win89-latest-promotions-analysis__description {
    font-size: 1em;
  }

  .page-blog-win89-latest-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-win89-latest-promotions-analysis__btn-primary,
  .page-blog-win89-latest-promotions-analysis__btn-secondary,
  .page-blog-win89-latest-promotions-analysis__card-btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-blog-win89-latest-promotions-analysis__intro-section,
  .page-blog-win89-latest-promotions-analysis__promotion-types-section,
  .page-blog-win89-latest-promotions-analysis__claim-guide-section,
  .page-blog-win89-latest-promotions-analysis__benefits-section,
  .page-blog-win89-latest-promotions-analysis__faq-section,
  .page-blog-win89-latest-promotions-analysis__conclusion-section {
    padding: 40px 0;
  }

  .page-blog-win89-latest-promotions-analysis__container {
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-win89-latest-promotions-analysis__promo-grid,
  .page-blog-win89-latest-promotions-analysis__benefit-grid,
  .page-blog-win89-latest-promotions-analysis__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-win89-latest-promotions-analysis img,
  .page-blog-win89-latest-promotions-analysis video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-win89-latest-promotions-analysis__hero-image-wrapper,
  .page-blog-win89-latest-promotions-analysis__promo-card,
  .page-blog-win89-latest-promotions-analysis__benefit-card,
  .page-blog-win89-latest-promotions-analysis__step-card,
  .page-blog-win89-latest-promotions-analysis__card-image,
  .page-blog-win89-latest-promotions-analysis__benefit-icon,
  .page-blog-win89-latest-promotions-analysis__list li,
  .page-blog-win89-latest-promotions-analysis__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-win89-latest-promotions-analysis__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}