.page-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main, #FFF3E6); /* Default text color from custom palette */
  background-color: var(--background, #0D0E12); /* Default background from custom palette */
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions__dark-section {
  background-color: var(--background, #0D0E12);
  color: var(--text-main, #FFF3E6);
}

.page-promotions__dark-bg {
  background-color: var(--card-bg, #17191F);
  color: var(--text-main, #FFF3E6);
}

.page-promotions__light-bg {
  background-color: #f5f5f5;
  color: #333333;
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  overflow: hidden;
  min-height: 500px;
}

.page-promotions__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  opacity: 0.7; /* Slightly darken image to ensure text contrast */
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 900px;
  margin-top: -200px; /* Pull content up over the image, but not directly on it, relies on image opacity */
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text readability */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main, #FFF3E6);
  margin-bottom: 20px;
  /* clamp for responsive font size, avoiding fixed large values */
  font-size: clamp(2em, 5vw, 3.5em);
}

.page-promotions__hero-description {
  font-size: 1.2em;
  color: var(--text-main, #FFF3E6);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

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

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  border: none;
}

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

.page-promotions__btn-secondary {
  background: none;
  color: var(--text-main, #FFF3E6);
  border: 2px solid var(--border, #A84F0C);
}

.page-promotions__btn-secondary:hover {
  background-color: var(--deep-orange, #D96800);
  color: #ffffff;
  transform: translateY(-2px);
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: var(--text-main, #FFF3E6);
  margin-bottom: 20px;
}

.page-promotions__overview-section .page-promotions__section-title {
  color: var(--text-main, #FFF3E6);
}

.page-promotions__text-block {
  font-size: 1.1em;
  color: var(--text-main, #FFF3E6);
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__overview-section .page-promotions__text-block {
  color: var(--text-main, #FFF3E6);
}

.page-promotions__image-text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-top: 40px;
}

.page-promotions__image-text-block img {
  flex: 1;
  border-radius: 12px;
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
}

.page-promotions__text-content {
  flex: 1;
}

.page-promotions__sub-title {
  font-size: 1.8em;
  color: var(--text-main, #FFF3E6);
  margin-bottom: 15px;
}

.page-promotions__text-content p {
  color: var(--text-main, #FFF3E6);
  margin-bottom: 20px;
}

.page-promotions__promotion-types {
  background-color: var(--card-bg, #17191F);
  color: var(--text-main, #FFF3E6);
}

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

.page-promotions__card {
  background-color: var(--background, #0D0E12);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid var(--border, #A84F0C);
  color: var(--text-main, #FFF3E6);
  min-height: 250px; /* Ensure card has some height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__card-title {
  font-size: 1.5em;
  color: var(--glow, #FFB04D);
  margin-bottom: 15px;
}

.page-promotions__card p {
  color: var(--text-main, #FFF3E6);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__how-to-claim {
  background-color: var(--background, #0D0E12);
  color: var(--text-main, #FFF3E6);
}

.page-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__step-item {
  background-color: var(--card-bg, #17191F);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid var(--border, #A84F0C);
  color: var(--text-main, #FFF3E6);
}

.page-promotions__step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-promotions__step-title {
  font-size: 1.4em;
  color: var(--glow, #FFB04D);
  margin-bottom: 10px;
}

.page-promotions__step-item p {
  color: var(--text-main, #FFF3E6);
  margin-bottom: 20px;
}

.page-promotions__image-centered {
  margin-top: 40px;
  border-radius: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
  min-width: 200px; /* Enforce min size */
}

.page-promotions__why-fcb8 {
  background-color: var(--background, #0D0E12);
  color: var(--text-main, #FFF3E6);
}

.page-promotions__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__feature-list li {
  background-color: var(--card-bg, #17191F);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid var(--deep-orange, #D96800);
  font-size: 1.1em;
  color: var(--text-main, #FFF3E6);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-promotions__feature-list li strong {
  color: var(--glow, #FFB04D);
}

.page-promotions__faq-section {
  background-color: var(--card-bg, #17191F);
  color: var(--text-main, #FFF3E6);
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-promotions__faq-item {
  background-color: var(--background, #0D0E12);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border, #A84F0C);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2em;
  color: var(--glow, #FFB04D);
  background-color: var(--background, #0D0E12);
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: rgba(255, 165, 58, 0.1);
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: var(--text-main, #FFF3E6);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 2000px; /* Sufficiently large to show content */
  transition: max-height 0.5s ease-in;
}

.page-promotions__faq-item[open] .page-promotions__faq-answer {
  max-height: 2000px; /* For details tag native behavior */
  padding: 0 20px 20px 20px;
}

/* Ensure details summary marker is hidden */
.page-promotions__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-promotions__faq-item summary {
  list-style: none;
}

.page-promotions__call-to-action {
  background-color: var(--background, #0D0E12);
  color: var(--text-main, #FFF3E6);
}

.page-promotions__cta-content {
  padding: 40px 20px;
  border-radius: 12px;
  background-color: var(--card-bg, #17191F);
  border: 1px solid var(--border, #A84F0C);
}

/* Responsive styles */
@media (max-width: 992px) {
  .page-promotions__image-text-block {
    flex-direction: column;
  }
  .page-promotions__image-text-block img {
    max-width: 100%;
  }
  .page-promotions__hero-content {
    margin-top: -100px;
  }
}

@media (max-width: 768px) {
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__hero-section {
    padding: 10px 0 40px 0;
    min-height: 400px;
  }
  .page-promotions__hero-content {
    margin-top: -80px;
    padding: 20px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__sub-title {
    font-size: 1.5em;
  }
  .page-promotions__text-block, .page-promotions p, .page-promotions li {
    font-size: 15px;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promotions__card-grid, .page-promotions__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }

  /* Mobile specific image adaptations */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Remove specific padding for sections that already have 0 padding */
  .page-promotions__hero-section.page-promotions__container {
    padding-left: 0;
    padding-right: 0;
  }

  /* Video/Image sections padding for mobile */
  .page-promotions__video-section {
    padding-top: 10px !important;
  }

  /* Ensure content images meet minimum size for mobile */
  .page-promotions__content-image {
    min-width: 200px !important;
    min-height: 150px !important;
  }

  /* Ensure general section and card containers handle padding correctly */
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__hero-image-wrapper,
  .page-promotions__cta-buttons,
  .page-promotions__image-text-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }

  /* Specific override for hero-section to maintain desired padding */
  .page-promotions__hero-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-promotions__hero-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}