.page-blog-fu88-exclusive-promotions {
  color: #FFF6D6; /* Main text color for dark background */
  background-color: var(--background-color, #0A0A0A); /* Inherit from shared or use default */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-fu88-exclusive-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-blog-fu88-exclusive-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: linear-gradient(180deg, #0A0A0A 0%, rgba(10, 10, 10, 0.8) 100%); /* Subtle gradient background */
}

.page-blog-fu88-exclusive-promotions__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure it takes full width for max-width to work */
}

.page-blog-fu88-exclusive-promotions__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-blog-fu88-exclusive-promotions__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-fu88-exclusive-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-blog-fu88-exclusive-promotions__main-title {
  font-size: clamp(28px, 4vw, 48px); /* Responsive font size */
  font-weight: bold;
  color: #FFD36B; /* Glow color for title */
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.6);
  line-height: 1.2;
}

.page-blog-fu88-exclusive-promotions__intro-text {
  font-size: clamp(16px, 2vw, 20px);
  color: #FFF6D6;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-blog-fu88-exclusive-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Dark text on bright button for contrast */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-blog-fu88-exclusive-promotions__cta-button:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%); /* Hover effect */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-fu88-exclusive-promotions__secondary-button {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  color: #FFD36B;
  border: 2px solid #FFD36B;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  margin-left: 20px;
  transition: all 0.3s ease;
}

.page-blog-fu88-exclusive-promotions__secondary-button:hover {
  background: #FFD36B;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-fu88-exclusive-promotions__section-title {
  font-size: clamp(24px, 3vw, 36px);
  color: #FFD36B;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.4);
}

.page-blog-fu88-exclusive-promotions__paragraph {
  font-size: 16px;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-blog-fu88-exclusive-promotions__keyword {
  font-weight: bold;
  color: #F2C14E; /* Highlight keywords with primary color */
}

.page-blog-fu88-exclusive-promotions__text-link {
  color: #FFD36B;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-blog-fu88-exclusive-promotions__text-link:hover {
  color: #F2C14E;
}

.page-blog-fu88-exclusive-promotions__image-wrapper {
  margin: 40px auto;
  max-width: 1000px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-fu88-exclusive-promotions__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
  object-fit: cover;
}

.page-blog-fu88-exclusive-promotions__image-wrapper--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-fu88-exclusive-promotions__image-wrapper--right {
  float: right;
  margin-left: 30px;
  max-width: 50%;
}

.page-blog-fu88-exclusive-promotions__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-fu88-exclusive-promotions__promo-card {
  background: #111111; /* Card BG color */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border color */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-fu88-exclusive-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-fu88-exclusive-promotions__card-title {
  font-size: 22px;
  color: #F2C14E; /* Primary color for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-fu88-exclusive-promotions__card-text {
  font-size: 16px;
  color: #FFF6D6;
}

.page-blog-fu88-exclusive-promotions__steps-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-fu88-exclusive-promotions__step-card {
  background: #111111;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12;
  text-align: center;
}

.page-blog-fu88-exclusive-promotions__step-icon {
  background: #F2C14E;
  color: #111111;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-blog-fu88-exclusive-promotions__step-title {
  font-size: 20px;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-fu88-exclusive-promotions__step-text {
  font-size: 15px;
  color: #FFF6D6;
}

.page-blog-fu88-exclusive-promotions__list {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-fu88-exclusive-promotions__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #FFF6D6;
}

.page-blog-fu88-exclusive-promotions__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFD36B;
  font-weight: bold;
  font-size: 18px;
}

.page-blog-fu88-exclusive-promotions__faq-section {
  margin-top: 40px;
  margin-bottom: 60px;
}

/* FAQ styles from prompt */
details.page-blog-fu88-exclusive-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #3A2A12; /* Use brand border color */
  overflow: hidden;
  background: #111111; /* Card BG color */
}
details.page-blog-fu88-exclusive-promotions__faq-item summary.page-blog-fu88-exclusive-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #F2C14E; /* Question text color */
}
details.page-blog-fu88-exclusive-promotions__faq-item summary.page-blog-fu88-exclusive-promotions__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-fu88-exclusive-promotions__faq-item summary.page-blog-fu88-exclusive-promotions__faq-question:hover {
  background: rgba(242, 193, 78, 0.1); /* Subtle hover effect */
}
.page-blog-fu88-exclusive-promotions__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F2C14E; /* Ensure question text color */
}
.page-blog-fu88-exclusive-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD36B; /* Toggle icon color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-blog-fu88-exclusive-promotions__faq-item .page-blog-fu88-exclusive-promotions__faq-answer {
  padding: 0 20px 20px;
  background: #0A0A0A; /* Background color for answer */
  color: #FFF6D6; /* Text color for answer */
  border-radius: 0 0 5px 5px;
}

.page-blog-fu88-exclusive-promotions__cta-section {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-fu88-exclusive-promotions__image-wrapper--right {
    float: none;
    margin: 40px auto;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-blog-fu88-exclusive-promotions__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-fu88-exclusive-promotions__hero-image img {
    border-radius: 4px;
  }
  .page-blog-fu88-exclusive-promotions__cta-button,
  .page-blog-fu88-exclusive-promotions__secondary-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-top: 20px;
    margin-left: 0;
  }
  .page-blog-fu88-exclusive-promotions__cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-blog-fu88-exclusive-promotions__container {
    padding: 20px 15px;
  }
  .page-blog-fu88-exclusive-promotions__section-title {
    margin-bottom: 30px;
    margin-top: 40px;
  }
  .page-blog-fu88-exclusive-promotions__promo-grid,
  .page-blog-fu88-exclusive-promotions__steps-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-fu88-exclusive-promotions__promo-card,
  .page-blog-fu88-exclusive-promotions__step-card {
    padding: 20px;
  }
  .page-blog-fu88-exclusive-promotions__card-title,
  .page-blog-fu88-exclusive-promotions__step-title {
    font-size: 20px;
  }
  .page-blog-fu88-exclusive-promotions__paragraph,
  .page-blog-fu88-exclusive-promotions__card-text,
  .page-blog-fu88-exclusive-promotions__step-text,
  .page-blog-fu88-exclusive-promotions__list-item {
    font-size: 15px;
  }
  .page-blog-fu88-exclusive-promotions__image-wrapper {
    margin: 20px auto;
  }
  .page-blog-fu88-exclusive-promotions__image-wrapper--right {
    max-width: 100%;
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
  .page-blog-fu88-exclusive-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-fu88-exclusive-promotions__section,
  .page-blog-fu88-exclusive-promotions__card,
  .page-blog-fu88-exclusive-promotions__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  details.page-blog-fu88-exclusive-promotions__faq-item summary.page-blog-fu88-exclusive-promotions__faq-question { padding: 15px; }
  .page-blog-fu88-exclusive-promotions__faq-qtext { font-size: 15px; }
}

/* Ensure content area images and general images respect min-width */
.page-blog-fu88-exclusive-promotions__content-area img,
.page-blog-fu88-exclusive-promotions img {
  width: auto; /* Allow natural width */
  height: auto;
  min-width: 200px; /* Minimum width */
  min-height: 200px; /* Minimum height */
}

/* This rule is crucial for content images, overriding default img styles if they are too small */
.page-blog-fu88-exclusive-promotions__content-area img {
    min-width: 200px;
    min-height: 200px;
    max-width: 100%; /* Ensure it doesn't overflow its container */
    height: auto;
}

/* Contrast safety for light background elements if any */
.page-blog-fu88-exclusive-promotions__light-bg {
  background: #ffffff; /* Example if a section needs light background */
  color: #333333;
}
.page-blog-fu88-exclusive-promotions__light-bg .page-blog-fu88-exclusive-promotions__section-title,
.page-blog-fu88-exclusive-promotions__light-bg .page-blog-fu88-exclusive-promotions__card-title,
.page-blog-fu88-exclusive-promotions__light-bg .page-blog-fu88-exclusive-promotions__step-title {
  color: #F2C14E; /* Use primary color for titles on light bg */
}
.page-blog-fu88-exclusive-promotions__light-bg .page-blog-fu88-exclusive-promotions__keyword {
  color: #0A0A0A; /* Darker keyword on light bg */
}
.page-blog-fu88-exclusive-promotions__light-bg .page-blog-fu88-exclusive-promotions__text-link {
  color: #F2C14E;
}