:root {
  --color-primary: #11A84E;
  --color-secondary: #22C768;
  --bg-card: #11271B;
  --bg-body: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --color-glow: #57E38D;
  --color-gold: #F2C14E;
  --color-divider: #1E3A2A;
  --color-deep-green: #0A4B2C;
  --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

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

.page-blog-ce88-latest-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
  background-color: var(--color-deep-green);
}

.page-blog-ce88-latest-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.page-blog-ce88-latest-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-ce88-latest-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-blog-ce88-latest-promotions__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--text-main);
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-ce88-latest-promotions__description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-blog-ce88-latest-promotions__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

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

.page-blog-ce88-latest-promotions__btn-primary {
  background: var(--btn-gradient);
  color: var(--text-main);
  border: none;
}

.page-blog-ce88-latest-promotions__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

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

.page-blog-ce88-latest-promotions__btn-secondary:hover {
  background: var(--color-primary);
  color: var(--text-main);
}

.page-blog-ce88-latest-promotions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--bg-body);
  color: var(--text-main);
}

.page-blog-ce88-latest-promotions__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-ce88-latest-promotions__text-block {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-blog-ce88-latest-promotions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-blog-ce88-latest-promotions__card {
  background-color: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.page-blog-ce88-latest-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-blog-ce88-latest-promotions__card-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0 20px 15px;
  color: var(--text-main);
}

.page-blog-ce88-latest-promotions__card-title a {
  color: var(--text-main);
  text-decoration: none;
}

.page-blog-ce88-latest-promotions__card-title a:hover {
  color: var(--color-primary);
}

.page-blog-ce88-latest-promotions__card-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0 20px 20px;
  flex-grow: 1;
}

.page-blog-ce88-latest-promotions__card-button {
  margin: 0 20px;
}

.page-blog-ce88-latest-promotions__promo-details {
  margin-bottom: 60px;
}

.page-blog-ce88-latest-promotions__sub-title {
  font-size: 1.6rem;
  color: var(--color-gold);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-ce88-latest-promotions__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-ce88-latest-promotions__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-blog-ce88-latest-promotions__list li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.page-blog-ce88-latest-promotions__list li strong {
  color: var(--text-main);
}

.page-blog-ce88-latest-promotions__faq-list {
  margin-top: 30px;
}

.page-blog-ce88-latest-promotions__faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main);
}

.page-blog-ce88-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  background-color: var(--color-deep-green);
  color: var(--text-main);
}

.page-blog-ce88-latest-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-ce88-latest-promotions__faq-question::marker {
  display: none;
}

.page-blog-ce88-latest-promotions__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-blog-ce88-latest-promotions__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  border-top: 1px solid var(--color-divider);
}

.page-blog-ce88-latest-promotions__cta-section {
  background-color: var(--color-deep-green);
  padding: 60px 20px;
  text-align: center;
  color: var(--text-main);
}

.page-blog-ce88-latest-promotions__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-ce88-latest-promotions__cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--color-gold);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-ce88-latest-promotions__cta-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-ce88-latest-promotions__hero-content {
    padding: 0 15px;
  }
}

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

  .page-blog-ce88-latest-promotions__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-ce88-latest-promotions__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-ce88-latest-promotions__description,
  .page-blog-ce88-latest-promotions__cta-description {
    font-size: 1rem;
  }

  .page-blog-ce88-latest-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-ce88-latest-promotions__btn-primary,
  .page-blog-ce88-latest-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-ce88-latest-promotions__content-area {
    padding: 40px 15px;
  }

  .page-blog-ce88-latest-promotions__section-title,
  .page-blog-ce88-latest-promotions__cta-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }

  .page-blog-ce88-latest-promotions__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-ce88-latest-promotions__card-image {
    height: 180px;
  }

  .page-blog-ce88-latest-promotions__sub-title {
    font-size: 1.4rem;
  }

  .page-blog-ce88-latest-promotions__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-ce88-latest-promotions__text-block,
  .page-blog-ce88-latest-promotions__list li,
  .page-blog-ce88-latest-promotions__card-description,
  .page-blog-ce88-latest-promotions__faq-answer p {
    font-size: 0.95rem;
  }

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

  .page-blog-ce88-latest-promotions__faq-answer {
    padding: 10px 20px 15px;
  }

  .page-blog-ce88-latest-promotions__cta-section {
    padding: 40px 15px;
  }

  /* Ensure all images are responsive */
  .page-blog-ce88-latest-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All containers with images/buttons */
  .page-blog-ce88-latest-promotions__hero-image-wrapper,
  .page-blog-ce88-latest-promotions__card,
  .page-blog-ce88-latest-promotions__promo-details,
  .page-blog-ce88-latest-promotions__faq-list,
  .page-blog-ce88-latest-promotions__cta-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-blog-ce88-latest-promotions__main-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .page-blog-ce88-latest-promotions__section-title,
  .page-blog-ce88-latest-promotions__cta-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }
  .page-blog-ce88-latest-promotions__sub-title {
    font-size: 1.3rem;
  }
}