.page-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: var(--background-color, #0D0E12); /* Ensure body background is respected */
}

.page-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 */
  overflow: hidden;
  color: #FFF3E6; /* Text color for dark background */
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Use brand gradient for hero background */
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

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

.page-promotions__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFF3E6;
}

.page-promotions__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #FFF3E6;
}

.page-promotions__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-promotions__section {
  padding: 60px 20px;
  background-color: #0D0E12; /* Default section background */
  color: #FFF3E6; /* Default text color for dark sections */
}

.page-promotions__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #FFB04D; /* Glow color for titles */
}

.page-promotions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-promotions__paragraph {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #FFF3E6;
}

.page-promotions__highlight {
  color: #FFB04D;
  font-weight: 600;
}

.page-promotions__light-bg {
  background-color: #17191F; /* Card BG for light sections */
  color: #FFF3E6;
}

.page-promotions__dark-section {
  background-color: #0D0E12;
  color: #FFF3E6;
}

.page-promotions__text-main {
  color: #FFF3E6;
}

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

.page-promotions__promotion-card {
  background-color: #17191F; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid #A84F0C; /* Border color */
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
}

.page-promotions__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-promotions__card-content {
  padding: 25px;
}

.page-promotions__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFB04D;
}

.page-promotions__card-description {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #FFF3E6;
}

.page-promotions__btn-secondary {
  display: inline-block;
  background-color: #FF8C1A;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__btn-secondary:hover {
  background-color: #D96800;
}

.page-promotions__how-to-claim {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__step-item {
  background-color: #17191F; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #A84F0C;
}

.page-promotions__step-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFA53A;
}

.page-promotions__step-description {
  font-size: 1.05rem;
  color: #FFF3E6;
}

.page-promotions__step-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  display: block;
}

.page-promotions__advantage-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__advantage-list li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #FFF3E6;
}

.page-promotions__advantage-list li::before {
  content: '✓';
  color: #FFA53A;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions__faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-promotions__faq-item {
  background-color: #17191F; /* Card BG */
  border-radius: 10px;
  border: 1px solid #A84F0C;
  overflow: hidden;
  color: #FFF3E6;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  color: #FFB04D;
  list-style: none; /* For details summary */
}

.page-promotions__faq-question::-webkit-details-marker {
  display: none; /* For details summary */
}

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #FFA53A;
  transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.05rem;
  color: #FFF3E6;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-promotions__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-promotions__hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-promotions__hero-description {
    font-size: 1rem;
  }

  .page-promotions__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px;
  }

  .page-promotions__section {
    padding: 30px 15px;
  }

  .page-promotions__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-promotions__content-area {
    padding: 20px 15px;
  }

  .page-promotions__promotion-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__card-image {
    height: 200px;
  }

  .page-promotions__card-title {
    font-size: 1.3rem;
  }

  .page-promotions__card-description {
    font-size: 0.95rem;
  }

  .page-promotions__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 10px 15px;
  }

  .page-promotions__how-to-claim {
    gap: 20px;
  }

  .page-promotions__step-item {
    padding: 20px;
  }

  .page-promotions__step-title {
    font-size: 1.5rem;
  }

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

  .page-promotions__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }

  /* Mobile image responsiveness */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-section,
  .page-promotions__hero-content,
  .page-promotions__promotion-card-grid,
  .page-promotions__how-to-claim,
  .page-promotions__faq-list,
  .page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-promotions__hero-content {
    padding-left: 0;
    padding-right: 0;
  }
  
  .page-promotions__video-section {
    padding-top: 10px !important;
  }

  /* Button containers */
  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-promotions__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}

/* Ensure body padding-top is not overridden */
body {
  padding-top: var(--header-offset);
}

/* No filter on images */
.page-promotions img {
  filter: none; /* Override any potential filter */
}

/* Hero image filter for text readability */
.page-promotions__hero-image {
  filter: brightness(0.5); /* This is an intentional filter for visual effect, not color change */
}