/* style/blog-win678zz-latest-promotions-guide.css */

/* Base styles for the page content, assuming a dark body background from shared.css */
.page-blog-win678zz-latest-promotions-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

/* Hero Section */
.page-blog-win678zz-latest-promotions-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px 20px; /* Small top padding, larger bottom for content */
  text-align: center;
  background-color: #08160F; /* Ensure dark background */
}

.page-blog-win678zz-latest-promotions-guide__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Match hero image width */
  margin-bottom: 30px;
}

.page-blog-win678zz-latest-promotions-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-win678zz-latest-promotions-guide__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 1; /* Ensure content is above any potential background layers */
}

.page-blog-win678zz-latest-promotions-guide__main-title {
  font-size: clamp(2em, 4vw, 2.8em); /* Responsive font size for H1 */
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

/* Content Area */
.page-blog-win678zz-latest-promotions-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-blog-win678zz-latest-promotions-guide__section-title {
  font-size: 2.2em;
  color: #F2C14E; /* Gold */
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.page-blog-win678zz-latest-promotions-guide__sub-title {
  font-size: 1.8em;
  color: #57E38D; /* Glow */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-win678zz-latest-promotions-guide__paragraph {
  font-size: 1em;
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-blog-win678zz-latest-promotions-guide__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-win678zz-latest-promotions-guide__list-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #A7D9B8;
}

.page-blog-win678zz-latest-promotions-guide__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2AD16F; /* Button gradient start color for checkmark */
  font-weight: bold;
}

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

/* Buttons */
.page-blog-win678zz-latest-promotions-guide__btn-primary,
.page-blog-win678zz-latest-promotions-guide__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
  box-sizing: border-box;
}

.page-blog-win678zz-latest-promotions-guide__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main for button */
  border: 2px solid transparent;
  margin-top: 20px;
}

.page-blog-win678zz-latest-promotions-guide__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-win678zz-latest-promotions-guide__btn-secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F; /* Button gradient start color */
  border: 2px solid #2AD16F;
  margin-top: 20px;
}

.page-blog-win678zz-latest-promotions-guide__btn-secondary:hover {
  background: #2AD16F;
  color: #F2FFF6;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

/* FAQ Section */
.page-blog-win678zz-latest-promotions-guide__faq-container {
  margin-top: 40px;
}

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

.page-blog-win678zz-latest-promotions-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none; /* Remove default marker for details summary */
}

.page-blog-win678zz-latest-promotions-guide__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-blog-win678zz-latest-promotions-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #2AD16F;
}

.page-blog-win678zz-latest-promotions-guide__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
}

/* CTA Wrapper */
.page-blog-win678zz-latest-promotions-guide__cta-wrapper {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  margin-top: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-win678zz-latest-promotions-guide__cta-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-win678zz-latest-promotions-guide__cta-content {
  position: relative;
  z-index: 1;
}

.page-blog-win678zz-latest-promotions-guide__cta-title {
  font-size: 2em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-blog-win678zz-latest-promotions-guide__cta-text {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-win678zz-latest-promotions-guide__main-title {
    font-size: clamp(2em, 5vw, 2.5em);
  }
  .page-blog-win678zz-latest-promotions-guide__section-title {
    font-size: 2em;
  }
  .page-blog-win678zz-latest-promotions-guide__sub-title {
    font-size: 1.6em;
  }
}

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

  .page-blog-win678zz-latest-promotions-guide__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-blog-win678zz-latest-promotions-guide__hero-content {
    padding: 0 15px;
  }

  .page-blog-win678zz-latest-promotions-guide__main-title {
    font-size: clamp(1.8em, 7vw, 2.2em);
  }

  .page-blog-win678zz-latest-promotions-guide__intro-description {
    font-size: 1em;
  }

  .page-blog-win678zz-latest-promotions-guide__content-area {
    padding: 30px 15px;
  }

  .page-blog-win678zz-latest-promotions-guide__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .page-blog-win678zz-latest-promotions-guide__sub-title {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-win678zz-latest-promotions-guide__paragraph,
  .page-blog-win678zz-latest-promotions-guide__list-item {
    font-size: 0.95em;
  }

  .page-blog-win678zz-latest-promotions-guide__btn-primary,
  .page-blog-win678zz-latest-promotions-guide__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 10px 15px;
    margin-top: 15px;
  }

  /* Image responsiveness */
  .page-blog-win678zz-latest-promotions-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-win678zz-latest-promotions-guide__hero-image-wrapper,
  .page-blog-win678zz-latest-promotions-guide__content-area,
  .page-blog-win678zz-latest-promotions-guide__cta-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-win678zz-latest-promotions-guide__cta-title {
    font-size: 1.5em;
  }

  .page-blog-win678zz-latest-promotions-guide__cta-text {
    font-size: 1em;
  }
}