.page-promotions {
  font-family: Arial, sans-serif;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
  line-height: 1.6;
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding as body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
  margin-top: 100px; /* Push content down to avoid overlapping the top of the image */
}

.page-promotions__main-title {
  font-size: clamp(2em, 4vw, 3em);
  color: #FFB04D; /* Glow */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-promotions__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button */
  color: #FFF3E6;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-promotions__introduction-section, 
.page-promotions__types-section, 
.page-promotions__how-to-claim-section, 
.page-promotions__why-choose-section, 
.page-promotions__latest-section, 
.page-promotions__faq-section, 
.page-promotions__conclusion-section {
  padding: 60px 20px;
}

.page-promotions__dark-section {
  background-color: #17191F; /* Card BG */
}

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

.page-promotions__section-title {
  font-size: 2.2em;
  color: #FFB04D; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions__text-block {
  font-size: 1.05em;
  color: #FFF3E6;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-promotions__card {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  color: #FFF3E6;
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__card-title {
  font-size: 1.5em;
  color: #FFB04D; /* Glow */
  margin: 10px 15px;
  font-weight: bold;
}

.page-promotions__card-description {
  font-size: 0.95em;
  color: #FFF3E6;
  margin: 0 15px 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-promotions__btn-secondary {
  display: inline-block;
  background: #17191F; /* Card BG */
  color: #FF8C1A;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
  border: 2px solid #FF8C1A;
  cursor: pointer;
  margin-top: auto;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-promotions__list {
  list-style-type: disc;
  margin-left: 25px;
  color: #FFF3E6;
  margin-bottom: 20px;
}

.page-promotions__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-promotions__list-item strong {
  color: #FFB04D;
}

.page-promotions__button-group {
  text-align: center;
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-promotions__promo-item {
  background-color: #0D0E12;
  border: 1px solid #A84F0C;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  color: #FFF3E6;
  display: flex;
  flex-direction: column;
}

.page-promotions__promo-title {
  font-size: 1.4em;
  color: #FFB04D;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__promo-description {
  font-size: 0.95em;
  color: #FFF3E6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button */
  color: #FFF3E6;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: auto;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

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

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

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #FFB04D;
  cursor: pointer;
  background-color: #17191F;
  transition: background-color 0.3s ease;
  list-style: none;
}

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

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

.page-promotions__faq-qtext {
  flex-grow: 1;
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #FFF3E6;
}

.page-promotions__faq-item[open] .page-promotions__faq-question {
  background-color: rgba(255, 140, 26, 0.1);
}

.page-promotions__conclusion-section .page-promotions__cta-button {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    margin-top: 50px;
    padding: 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8em, 5vw, 2.5em);
  }

  .page-promotions__section-title {
    font-size: 2em;
  }

  .page-promotions__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-bottom: 40px;
  }

  .page-promotions__hero-content {
    margin-top: 30px;
    padding: 10px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }

  .page-promotions__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-promotions__introduction-section,
  .page-promotions__types-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__why-choose-section,
  .page-promotions__latest-section,
  .page-promotions__faq-section,
  .page-promotions__conclusion-section {
    padding: 40px 15px;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-promotions__text-block {
    font-size: 0.95em;
  }

  .page-promotions__grid,
  .page-promotions__promo-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-promotions__card-title,
  .page-promotions__promo-title {
    font-size: 1.3em;
  }

  .page-promotions__list {
    margin-left: 20px;
  }

  .page-promotions__faq-question {
    padding: 15px 20px;
    font-size: 1.05em;
  }

  .page-promotions__faq-answer {
    padding: 0 20px 15px;
  }

  /* Mobile responsive images, videos, buttons */
  .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__introduction-section,
  .page-promotions__types-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__why-choose-section,
  .page-promotions__latest-section,
  .page-promotions__faq-section,
  .page-promotions__conclusion-section,
  .page-promotions__grid,
  .page-promotions__promo-list,
  .page-promotions__promo-item,
  .page-promotions__faq-item,
  .page-promotions__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure content doesn't overflow */
  }

  .page-promotions__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-promotions__cta-button,
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions a[class*="button"],
  .page-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 10px; /* Add some space between stacked buttons */
  }

  .page-promotions__button-group {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between buttons if stacked vertically */
    padding-left: 15px;
    padding-right: 15px;
  }
}