.page-promotions {
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  background-color: #17191F; /* Card BG */
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions__hero-content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #FFB04D; /* Glow */
  margin-bottom: 20px;
}

.page-promotions__description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF3E6; /* Text Main */
}

.page-promotions__btn-primary {
  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, transform 0.2s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.page-promotions__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
}

.page-promotions__btn-secondary {
  background: #17191F;
  color: #FFA53A; /* Auxiliary Color */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
  border: 2px solid #FFA53A;
  cursor: pointer;
}

.page-promotions__btn-secondary:hover {
  transform: translateY(-2px);
  background-color: #FFA53A;
  color: #17191F;
}

.page-promotions__intro-section,
.page-promotions__how-to-claim-section,
.page-promotions__faq-section {
  padding: 60px 20px;
  background-color: #0D0E12; /* Background */
  color: #FFF3E6; /* Text Main */
}

.page-promotions__types-section,
.page-promotions__terms-section,
.page-promotions__cta-section {
  padding: 60px 20px;
  background-color: #17191F; /* Card BG */
  color: #FFF3E6; /* Text Main */
}

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

.page-promotions__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #FFB04D; /* Glow */
  text-align: center;
  margin-bottom: 40px;
}

.page-promotions__text-block {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #FFF3E6; /* Text Main */
}

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

.page-promotions__promo-card {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  color: #FFF3E6; /* Text Main */
}

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

.page-promotions__promo-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFA53A; /* Auxiliary Color */
  margin: 20px 15px 10px;
}

.page-promotions__promo-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0 15px 20px;
  flex-grow: 1;
  color: #FFF3E6; /* Text Main */
}

.page-promotions__promo-card .page-promotions__cta-button {
  margin: 0 15px 20px;
  width: calc(100% - 30px);
}

.page-promotions__step-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-top: 30px;
}

.page-promotions__list-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 70px;
  color: #FFF3E6; /* Text Main */
}

.page-promotions__list-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 25px;
  top: 25px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.page-promotions__list-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFA53A; /* Auxiliary Color */
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions__list-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: #FFF3E6; /* Text Main */
}

.page-promotions__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 30px;
  object-fit: cover;
}

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

.page-promotions__faq-item summary {
  list-style: none; /* Hide default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #FFA53A; /* Auxiliary Color */
  transition: background-color 0.3s ease;
}

.page-promotions__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}

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

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

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

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  content: '−';
}

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
}

.page-promotions__faq-answer p {
  margin-bottom: 0;
}

.page-promotions__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions__hero-section {
    padding: 40px 15px;
  }
  .page-promotions__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-promotions__description {
    font-size: 1rem;
  }
  .page-promotions__section-title {
    font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  }
  .page-promotions__intro-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__faq-section,
  .page-promotions__types-section,
  .page-promotions__terms-section,
  .page-promotions__cta-section {
    padding: 40px 15px;
  }
  .page-promotions__button-group {
    flex-direction: column;
    align-items: center;
  }
  .page-promotions__cta-button {
    width: auto;
    min-width: 250px;
  }
}

@media (max-width: 768px) {
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions video,
  .page-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__video-section,
  .page-promotions__video-container,
  .page-promotions__video-wrapper,
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-promotions__video-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;
  }
  .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__hero-section {
    padding: 30px 10px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-promotions__description {
    font-size: 0.95rem;
  }
  .page-promotions__section-title {
    font-size: clamp(1.5rem, 5.5vw, 2.2rem);
  }
  .page-promotions__promotion-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__list-item {
    padding-left: 60px;
  }
  .page-promotions__list-item::before {
    left: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  .page-promotions__list-title {
    font-size: 1.2rem;
  }
  .page-promotions__faq-item summary {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-promotions__faq-answer {
    padding: 0 20px 15px;
  }
}