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

/* Base styles for the page content, ensuring light text on dark body background */
.page-blog-w88hn-latest-promotions-analysis {
  background-color: var(--background-color, #08160F);
  color: var(--text-main-color, #F2FFF6);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-blog-w88hn-latest-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* body already handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
  background-color: var(--background-color, #08160F);
}

.page-blog-w88hn-latest-promotions-analysis__hero-content-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

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

.page-blog-w88hn-latest-promotions-analysis__hero-text-container {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.page-blog-w88hn-latest-promotions-analysis__main-title {
  color: var(--text-main-color, #F2FFF6);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-blog-w88hn-latest-promotions-analysis__description {
  color: var(--text-secondary-color, #A7D9B8);
  font-size: 1.1em;
  margin-bottom: 30px;
}

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

/* Buttons */
.page-blog-w88hn-latest-promotions-analysis__btn-primary,
.page-blog-w88hn-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-w88hn-latest-promotions-analysis__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

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

.page-blog-w88hn-latest-promotions-analysis__btn-secondary {
  background-color: transparent;
  color: var(--glow-color, #57E38D);
  border: 2px solid var(--glow-color, #57E38D);
}

.page-blog-w88hn-latest-promotions-analysis__btn-secondary:hover {
  background-color: var(--glow-color, #57E38D);
  color: var(--background-color, #08160F);
  transform: translateY(-2px);
}

/* Content Sections */
.page-blog-w88hn-latest-promotions-analysis__content-section {
  padding: 60px 0;
}

.page-blog-w88hn-latest-promotions-analysis__dark-bg {
  background-color: var(--background-color, #08160F);
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-w88hn-latest-promotions-analysis__light-bg {
  background-color: var(--text-main-color, #F2FFF6); /* Using text-main-color for light background */
  color: #333333; /* Dark text for light background */
}

.page-blog-w88hn-latest-promotions-analysis__section-title {
  color: var(--text-main-color, #F2FFF6);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-w88hn-latest-promotions-analysis__section-title--dark {
  color: #000000; /* Black for titles on light backgrounds */
}

.page-blog-w88hn-latest-promotions-analysis__sub-title {
  color: var(--text-main-color, #F2FFF6);
  font-size: 1.5em;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-w88hn-latest-promotions-analysis__sub-title--dark {
  color: #333333; /* Dark text for subtitles on light backgrounds */
}

.page-blog-w88hn-latest-promotions-analysis__text-block p {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-blog-w88hn-latest-promotions-analysis__text-block--wide {
  flex-basis: 60%;
}

/* Promotions Grid */
.page-blog-w88hn-latest-promotions-analysis__promotions-grid {
  padding: 80px 0;
}

.page-blog-w88hn-latest-promotions-analysis__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-w88hn-latest-promotions-analysis__promo-card {
  background-color: var(--card-bg-color, #11271B);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color, #2E7A4E);
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-w88hn-latest-promotions-analysis__promo-card:hover {
  transform: translateY(-5px);
}

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

.page-blog-w88hn-latest-promotions-analysis__card-title {
  font-size: 1.4em;
  color: var(--text-main-color, #F2FFF6);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-w88hn-latest-promotions-analysis__card-description {
  font-size: 0.95em;
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 25px;
}

/* VIP Section */
.page-blog-w88hn-latest-promotions-analysis__vip-section {
  padding: 80px 0;
}

.page-blog-w88hn-latest-promotions-analysis__vip-section .page-blog-w88hn-latest-promotions-analysis__grid-layout {
  grid-template-columns: 2fr 1fr;
  align-items: center;
}

.page-blog-w88hn-latest-promotions-analysis__image-wrapper {
  text-align: center;
}

.page-blog-w88hn-latest-promotions-analysis__image-full {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.page-blog-w88hn-latest-promotions-analysis__cta-buttons--center {
  margin-top: 40px;
}

/* FAQ Section */
.page-blog-w88hn-latest-promotions-analysis__faq-section {
  padding: 60px 0;
}

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

.page-blog-w88hn-latest-promotions-analysis__faq-item {
  background-color: var(--card-bg-color, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-w88hn-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--text-main-color, #F2FFF6);
  background-color: var(--card-bg-color, #11271B);
  list-style: none; /* For details tag */
}

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

.page-blog-w88hn-latest-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--glow-color, #57E38D);
}

.page-blog-w88hn-latest-promotions-analysis__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-w88hn-latest-promotions-analysis__faq-answer p {
  margin: 0;
}

/* Conclusion Section */
.page-blog-w88hn-latest-promotions-analysis__conclusion-section {
  padding: 60px 0 80px;
}

/* Inline Links */
.page-blog-w88hn-latest-promotions-analysis__inline-link {
  color: var(--gold-color, #F2C14E);
  text-decoration: none;
  font-weight: bold;
}

.page-blog-w88hn-latest-promotions-analysis__inline-link:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-w88hn-latest-promotions-analysis__vip-section .page-blog-w88hn-latest-promotions-analysis__grid-layout {
    grid-template-columns: 1fr;
  }
  .page-blog-w88hn-latest-promotions-analysis__image-wrapper {
    margin-top: 40px;
  }
}

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

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

  .page-blog-w88hn-latest-promotions-analysis__main-title {
    font-size: 2em;
  }

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

  .page-blog-w88hn-latest-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box !important;
  }

  .page-blog-w88hn-latest-promotions-analysis__btn-primary,
  .page-blog-w88hn-latest-promotions-analysis__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-blog-w88hn-latest-promotions-analysis__content-section,
  .page-blog-w88hn-latest-promotions-analysis__promotions-grid,
  .page-blog-w88hn-latest-promotions-analysis__vip-section,
  .page-blog-w88hn-latest-promotions-analysis__faq-section,
  .page-blog-w88hn-latest-promotions-analysis__conclusion-section {
    padding: 40px 0;
  }

  .page-blog-w88hn-latest-promotions-analysis__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-w88hn-latest-promotions-analysis__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-w88hn-latest-promotions-analysis__sub-title {
    font-size: 1.3em;
  }

  /* Image responsiveness */
  .page-blog-w88hn-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-w88hn-latest-promotions-analysis__hero-image {
    height: 200px !important;
    object-fit: cover;
  }

  .page-blog-w88hn-latest-promotions-analysis__promo-card {
    padding: 20px;
  }
  .page-blog-w88hn-latest-promotions-analysis__card-image {
    height: 180px;
  }

  /* FAQ specific mobile styles */
  .page-blog-w88hn-latest-promotions-analysis__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-blog-w88hn-latest-promotions-analysis__faq-answer {
    padding: 0 20px 15px;
  }

  /* Ensure all containers and elements prevent overflow */
  .page-blog-w88hn-latest-promotions-analysis__hero-section,
  .page-blog-w88hn-latest-promotions-analysis__content-section,
  .page-blog-w88hn-latest-promotions-analysis__promotions-grid,
  .page-blog-w88hn-latest-promotions-analysis__vip-section,
  .page-blog-w88hn-latest-promotions-analysis__faq-section,
  .page-blog-w88hn-latest-promotions-analysis__conclusion-section,
  .page-blog-w88hn-latest-promotions-analysis__promo-card,
  .page-blog-w88hn-latest-promotions-analysis__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Important for preventing horizontal scroll */
  }
}

@media (max-width: 480px) {
  .page-blog-w88hn-latest-promotions-analysis__main-title {
    font-size: 1.8em;
  }
  .page-blog-w88hn-latest-promotions-analysis__section-title {
    font-size: 1.6em;
  }
  .page-blog-w88hn-latest-promotions-analysis__grid-layout {
    grid-template-columns: 1fr;
  }
}