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

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

.page-blog-latest-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--z8bet-deep-green-color);
  overflow: hidden;
}

.page-blog-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width for the image */
  margin-bottom: 30px;
  order: 1;
}

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

.page-blog-latest-promotions-analysis__hero-content {
  width: 100%;
  max-width: 900px;
  text-align: center;
  order: 2;
  z-index: 1;
  position: relative;
  padding: 0 20px;
}

.page-blog-latest-promotions-analysis__main-title {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 700;
  color: var(--z8bet-text-main);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.page-blog-latest-promotions-analysis__intro-text {
  font-size: 1.15rem;
  color: var(--z8bet-text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-latest-promotions-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.page-blog-latest-promotions-analysis__btn-primary,
.page-blog-latest-promotions-analysis__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  min-width: 180px;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-latest-promotions-analysis__btn-primary {
  background: var(--z8bet-button-gradient);
  color: var(--z8bet-text-main);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-latest-promotions-analysis__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
  transform: translateY(-2px);
}

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

.page-blog-latest-promotions-analysis__btn-secondary:hover {
  background-color: var(--z8bet-primary-color);
  color: var(--z8bet-text-main);
  transform: translateY(-2px);
}

.page-blog-latest-promotions-analysis__btn-small {
  padding: 10px 20px;
  font-size: 1rem;
  min-width: 150px;
}

.page-blog-latest-promotions-analysis__section {
  padding: 60px 20px;
}

.page-blog-latest-promotions-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-latest-promotions-analysis__dark-bg {
  background-color: var(--z8bet-background-color);
  color: var(--z8bet-text-main);
}

.page-blog-latest-promotions-analysis__light-bg {
  background-color: var(--z8bet-card-bg);
  color: var(--z8bet-text-main);
}

.page-blog-latest-promotions-analysis__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--z8bet-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-latest-promotions-analysis__section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--z8bet-gold-color);
  border-radius: 2px;
}

.page-blog-latest-promotions-analysis__section-title--light {
  color: var(--z8bet-text-main);
}

.page-blog-latest-promotions-analysis__text-block {
  font-size: 1.05rem;
  margin-bottom: 25px;
  color: var(--z8bet-text-secondary);
  text-align: justify;
}

.page-blog-latest-promotions-analysis__text-block--light {
  color: var(--z8bet-text-secondary);
}

.page-blog-latest-promotions-analysis__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  object-fit: cover;
}

.page-blog-latest-promotions-analysis__sub-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--z8bet-primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-latest-promotions-analysis__sub-title--light {
  color: var(--z8bet-text-main);
}

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

.page-blog-latest-promotions-analysis__list--ordered {
  list-style: decimal;
  padding-left: 20px;
}

.page-blog-latest-promotions-analysis__list-item {
  background-color: var(--z8bet-deep-green-color);
  border: 1px solid var(--z8bet-border-color);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-promotions-analysis__list-item--light {
  background-color: var(--z8bet-card-bg);
  color: var(--z8bet-text-main);
  border: 1px solid var(--z8bet-divider-color);
}

.page-blog-latest-promotions-analysis__list-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--z8bet-gold-color);
  margin-bottom: 10px;
}

.page-blog-latest-promotions-analysis__list-title--light {
  color: var(--z8bet-gold-color);
}

.page-blog-latest-promotions-analysis__list-item p {
  font-size: 1rem;
  color: var(--z8bet-text-secondary);
  margin-bottom: 15px;
}

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

.page-blog-latest-promotions-analysis__faq-item {
  background-color: var(--z8bet-deep-green-color);
  border: 1px solid var(--z8bet-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

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

.page-blog-latest-promotions-analysis__faq-item[open] > .page-blog-latest-promotions-analysis__faq-question {
  background-color: var(--z8bet-primary-color);
}

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

.page-blog-latest-promotions-analysis__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--z8bet-text-main);
}

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

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

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

.page-blog-latest-promotions-analysis__cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-blog-latest-promotions-analysis__cta-image {
  width: 100%;
  height: auto;
  max-width: 1200px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-blog-latest-promotions-analysis__cta-text-content {
  max-width: 800px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-latest-promotions-analysis__hero-section {
    padding: 40px 15px;
  }

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

  .page-blog-latest-promotions-analysis__main-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
  }

  .page-blog-latest-promotions-analysis__intro-text {
    font-size: 1.05rem;
  }

  .page-blog-latest-promotions-analysis__section {
    padding: 40px 15px;
  }

  .page-blog-latest-promotions-analysis__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: 30px;
  }

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

  .page-blog-latest-promotions-analysis__list-item {
    padding: 20px;
  }

  .page-blog-latest-promotions-analysis__list-title {
    font-size: 1.15rem;
  }

  .page-blog-latest-promotions-analysis__faq-question {
    padding: 18px 20px;
    font-size: 1.05rem;
  }

  .page-blog-latest-promotions-analysis__faq-answer {
    padding: 18px 20px;
  }
}

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

  .page-blog-latest-promotions-analysis__hero-section {
    padding: 30px 15px;
  }

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

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

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

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

  .page-blog-latest-promotions-analysis__section,
  .page-blog-latest-promotions-analysis__content-area,
  .page-blog-latest-promotions-analysis__cta-section,
  .page-blog-latest-promotions-analysis__cta-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-latest-promotions-analysis__hero-image,
  .page-blog-latest-promotions-analysis__content-image,
  .page-blog-latest-promotions-analysis__cta-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-latest-promotions-analysis__list--ordered {
    padding-left: 25px;
  }

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

  .page-blog-latest-promotions-analysis__faq-answer {
    padding: 15px 20px;
  }

  .page-blog-latest-promotions-analysis__section-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .page-blog-latest-promotions-analysis__sub-title {
    font-size: clamp(1.2rem, 4.5vw, 1.6rem);
  }
}