.page-blog-open88-latest-promotions {
  color: #F2FFF6; /* Text Main color for overall page content on dark body background */
  background-color: #08160F; /* Background color */
}

.page-blog-open88-latest-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  text-align: center;
  background-color: #08160F;
  overflow: hidden;
}

.page-blog-open88-latest-promotions__hero-image {
  width: 100%;
  height: auto;
  max-height: 675px;
  object-fit: cover;
  display: block;
  margin-bottom: 30px;
}

.page-blog-open88-latest-promotions__hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 1;
}

.page-blog-open88-latest-promotions__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold color for main title */
}

.page-blog-open88-latest-promotions__subtitle {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary color */
}

.page-blog-open88-latest-promotions__section {
  padding: 60px 20px;
  margin: 0 auto;
  max-width: 100%;
  box-sizing: border-box;
}

.page-blog-open88-latest-promotions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #08160F;
  color: #F2FFF6;
}

.page-blog-open88-latest-promotions__dark-bg {
  background-color: #11271B; /* Card BG color */
  color: #F2FFF6; /* Text Main color */
}

.page-blog-open88-latest-promotions__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #F2C14E; /* Gold color for section titles */
}

.page-blog-open88-latest-promotions__text-block {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary color */
}

.page-blog-open88-latest-promotions__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  max-width: 800px;
}

.page-blog-open88-latest-promotions__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-open88-latest-promotions__promo-card {
  background-color: #11271B; /* Card BG color */
  border-radius: 10px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-blog-open88-latest-promotions__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-open88-latest-promotions__card-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main color */
}

.page-blog-open88-latest-promotions__card-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary color */
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.page-blog-open88-latest-promotions__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #ffffff;
  border: 2px solid transparent;
}

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

.page-blog-open88-latest-promotions__btn-secondary {
  background: #11271B; /* Card BG for secondary button */
  color: #2AD16F; /* Lighter green from gradient for text */
  border: 2px solid #2E7A4E; /* Border color */
}

.page-blog-open88-latest-promotions__btn-secondary:hover {
  background: #2E7A4E; /* Border color for hover */
  color: #F2FFF6;
  transform: translateY(-2px);
}

.page-blog-open88-latest-promotions__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-blog-open88-latest-promotions__list-item {
  background-color: #11271B; /* Card BG color */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid #2AD16F; /* Lighter green accent */
  color: #A7D9B8; /* Text Secondary color */
  line-height: 1.6;
}

.page-blog-open88-latest-promotions__list-item strong {
  color: #F2FFF6; /* Text Main color */
}

.page-blog-open88-latest-promotions__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  padding: 0;
  list-style: none;
}

.page-blog-open88-latest-promotions__feature-item {
  background-color: #0A4B2C; /* Deep Green color */
  border-radius: 10px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-blog-open88-latest-promotions__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-open88-latest-promotions__feature-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2C14E; /* Gold color */
}

.page-blog-open88-latest-promotions__feature-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary color */
}

.page-blog-open88-latest-promotions__faq-list {
  margin-top: 40px;
}

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

.page-blog-open88-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main color */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green color */
  user-select: none;
  position: relative;
}

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

.page-blog-open88-latest-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #F2C14E; /* Gold color */
}

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

.page-blog-open88-latest-promotions__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 0.95em;
  line-height: 1.7;
  color: #A7D9B8; /* Text Secondary color */
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-open88-latest-promotions__hero-image {
    max-height: 500px;
  }
  .page-blog-open88-latest-promotions__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }
  .page-blog-open88-latest-promotions__section-title {
    font-size: clamp(1.6em, 4vw, 2.2em);
  }
}

@media (max-width: 768px) {
  .page-blog-open88-latest-promotions__hero-section {
    padding: 10px 15px 40px 15px;
  }
  .page-blog-open88-latest-promotions__hero-image {
    max-height: 400px;
    margin-bottom: 20px;
  }
  .page-blog-open88-latest-promotions__hero-content {
    padding: 0 15px;
  }
  .page-blog-open88-latest-promotions__main-title {
    font-size: 2em; /* Ensure not too large on mobile */
  }
  .page-blog-open88-latest-promotions__subtitle {
    font-size: 1em;
  }
  .page-blog-open88-latest-promotions__section {
    padding: 40px 15px;
  }
  .page-blog-open88-latest-promotions__content-area {
    padding: 30px 15px;
  }
  .page-blog-open88-latest-promotions__section-title {
    font-size: 1.8em;
  }
  .page-blog-open88-latest-promotions__text-block {
    font-size: 0.95em;
  }
  .page-blog-open88-latest-promotions__promo-grid,
  .page-blog-open88-latest-promotions__feature-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-open88-latest-promotions__card-image,
  .page-blog-open88-latest-promotions__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-blog-open88-latest-promotions__feature-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-blog-open88-latest-promotions__promo-card,
  .page-blog-open88-latest-promotions__feature-item,
  .page-blog-open88-latest-promotions__list-item,
  .page-blog-open88-latest-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-open88-latest-promotions__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-blog-open88-latest-promotions__btn-primary,
  .page-blog-open88-latest-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-open88-latest-promotions__video-section {
    padding-top: 10px !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-open88-latest-promotions video,
  .page-blog-open88-latest-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-open88-latest-promotions__video-section,
  .page-blog-open88-latest-promotions__video-container,
  .page-blog-open88-latest-promotions__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-blog-open88-latest-promotions__main-title {
    font-size: 1.8em;
  }
  .page-blog-open88-latest-promotions__section-title {
    font-size: 1.6em;
  }
  .page-blog-open88-latest-promotions__promo-card,
  .page-blog-open88-latest-promotions__feature-item,
  .page-blog-open88-latest-promotions__list-item,
  .page-blog-open88-latest-promotions__faq-item {
    padding-left: 10px;
    padding-right: 10px;
  }
  .page-blog-open88-latest-promotions__btn-primary,
  .page-blog-open88-latest-promotions__btn-secondary {
    padding-left: 10px;
    padding-right: 10px;
  }
}