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

.page-blog-ok9-latest-promotions-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--ok9-text-main);
  background-color: var(--ok9-background);
}

.page-blog-ok9-latest-promotions-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px;
  text-align: center;
  overflow: hidden;
}

.page-blog-ok9-latest-promotions-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 700px; /* Limit height for aesthetic */
  margin-bottom: 40px;
  border-radius: 8px;
}

.page-blog-ok9-latest-promotions-guide__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
  color: var(--ok9-text-main);
}

.page-blog-ok9-latest-promotions-guide__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--ok9-gold-color);
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-ok9-latest-promotions-guide__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--ok9-text-secondary);
}

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

.page-blog-ok9-latest-promotions-guide__cta-buttons--center {
  justify-content: center;
  margin-top: 30px;
}

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

.page-blog-ok9-latest-promotions-guide__btn-primary {
  background: var(--ok9-button-gradient);
  color: #ffffff;
  border: 2px solid var(--ok9-glow-color);
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.6);
}

.page-blog-ok9-latest-promotions-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(87, 227, 141, 0.8);
}

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

.page-blog-ok9-latest-promotions-guide__btn-secondary:hover {
  background: var(--ok9-glow-color);
  color: var(--ok9-background);
  transform: translateY(-3px);
}

.page-blog-ok9-latest-promotions-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--ok9-background);
  color: var(--ok9-text-main);
}

.page-blog-ok9-latest-promotions-guide__text-block {
  margin-bottom: 40px;
  padding: 20px;
  background-color: var(--ok9-card-bg);
  border-radius: 10px;
  border: 1px solid var(--ok9-border-color);
}

.page-blog-ok9-latest-promotions-guide__section-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--ok9-gold-color);
  text-align: center;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.4);
}

.page-blog-ok9-latest-promotions-guide__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--ok9-primary-color);
}

.page-blog-ok9-latest-promotions-guide p {
  margin-bottom: 15px;
  color: var(--ok9-text-secondary);
}

.page-blog-ok9-latest-promotions-guide ol,
.page-blog-ok9-latest-promotions-guide ul {
  margin-bottom: 15px;
  padding-left: 25px;
  color: var(--ok9-text-secondary);
}

.page-blog-ok9-latest-promotions-guide li {
  margin-bottom: 8px;
  color: var(--ok9-text-secondary);
}

.page-blog-ok9-latest-promotions-guide__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

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

.page-blog-ok9-latest-promotions-guide__faq-item {
  background-color: var(--ok9-deep-green);
  border: 1px solid var(--ok9-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-ok9-latest-promotions-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--ok9-text-main);
  cursor: pointer;
  background-color: var(--ok9-primary-color);
  border-bottom: 1px solid var(--ok9-border-color);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-ok9-latest-promotions-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-ok9-latest-promotions-guide__faq-question:hover {
  background-color: var(--ok9-secondary-color);
}

.page-blog-ok9-latest-promotions-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--ok9-gold-color);
  margin-left: 15px;
}

.page-blog-ok9-latest-promotions-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1.1em;
  color: var(--ok9-text-secondary);
  background-color: var(--ok9-card-bg);
}

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

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

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

  .page-blog-ok9-latest-promotions-guide__hero-image {
    margin-bottom: 30px;
    max-height: 400px;
  }

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

  .page-blog-ok9-latest-promotions-guide__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

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

  .page-blog-ok9-latest-promotions-guide__btn-primary,
  .page-blog-ok9-latest-promotions-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-ok9-latest-promotions-guide__content-area {
    padding: 40px 15px;
  }

  .page-blog-ok9-latest-promotions-guide__text-block {
    padding: 15px;
  }

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

  .page-blog-ok9-latest-promotions-guide__sub-title {
    font-size: 1.5em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-ok9-latest-promotions-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-ok9-latest-promotions-guide__hero-section,
  .page-blog-ok9-latest-promotions-guide__content-area,
  .page-blog-ok9-latest-promotions-guide__text-block,
  .page-blog-ok9-latest-promotions-guide__cta-buttons,
  .page-blog-ok9-latest-promotions-guide__faq-list,
  .page-blog-ok9-latest-promotions-guide__faq-item,
  .page-blog-ok9-latest-promotions-guide__faq-question,
  .page-blog-ok9-latest-promotions-guide__faq-answer {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }
  
  .page-blog-ok9-latest-promotions-guide__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-blog-ok9-latest-promotions-guide__faq-answer {
    padding: 15px 20px;
    font-size: 1em;
  }
}