.page-promotions {
  background: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 50px;
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Adjusted for header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
}

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

.page-promotions__hero-content {
  position: relative;
  max-width: 900px;
  padding: 0 20px;
  margin-top: -150px; /* Pull content up over image for visual appeal, but not overlap text */
  background: rgba(17, 17, 17, 0.85); /* Card BG with transparency */
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid #3A2A12;
  z-index: 10;
}

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

.page-promotions__hero-description {
  font-size: 1.1rem;
  color: #FFF6D6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

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

.page-promotions__section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #FFD36B;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 60px;
  font-weight: 700;
}

.page-promotions__section-description {
  font-size: 1rem;
  color: #FFF6D6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

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

.page-promotions__promo-card {
  background: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

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

.page-promotions__promo-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.page-promotions__promo-card-text {
  font-size: 0.95rem;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__promo-card-btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__promo-card-btn:hover {
  opacity: 0.9;
}

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

.page-promotions__step-item {
  background: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__step-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__step-text {
  font-size: 0.95rem;
  color: #FFF6D6;
}

.page-promotions__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-promotions__cta-buttons--center {
  justify-content: center;
}

.page-promotions__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: opacity 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary:hover {
  opacity: 0.9;
}

.page-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  background: transparent;
  color: #FFD36B;
  text-decoration: none;
  border: 2px solid #F2C14E;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-promotions__terms-content {
  background: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 40px;
  margin-top: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__terms-subtitle {
  font-size: 1.4rem;
  color: #FFD36B;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions__terms-text {
  font-size: 0.95rem;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-promotions__terms-link {
  margin-top: 30px;
  display: inline-block;
}

/* FAQ Styles */
details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #3A2A12;
  overflow: hidden;
  background: #111111;
}
details.page-promotions__faq-item summary.page-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: #FFF6D6;
}
details.page-promotions__faq-item summary.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}
details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
  background: rgba(255, 211, 107, 0.1);
}
.page-promotions__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFD36B;
}
.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F2C14E;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 20px 20px;
  background: #0A0A0A;
  border-radius: 0 0 5px 5px;
  color: #FFF6D6;
}

.page-promotions__dark-section {
  background: #0A0A0A;
  color: #FFF6D6;
  padding: 60px 0;
  margin-top: 60px;
}

/* --- General Image Styles --- */
.page-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-promotions__hero-image-wrapper {
    height: 400px;
  }
  .page-promotions__hero-content {
    margin-top: -100px;
    padding: 30px;
  }
  .page-promotions__hero-title {
    font-size: 2.8rem;
  }
  .page-promotions__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }

  /* 1.顶区 __top-text (hero-section acts as top-text here) */
  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-promotions__hero-image-wrapper {
    height: 300px;
  }
  .page-promotions__hero-content {
    margin-top: -80px !important;
    padding: 25px !important;
  }
  .page-promotions__hero-title {
    font-size: 2rem !important;
    margin-bottom: 15px !important;
  }
  .page-promotions__hero-description {
    font-size: 0.95rem !important;
    margin-bottom: 25px !important;
  }
  .page-promotions__hero-buttons {
    flex-direction: column !important;
    gap: 15px !important;
  }

  /* 2.落地页双栏模块 (promo-grid, steps-grid) */
  .page-promotions__promo-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .page-promotions__steps-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* 3.通用图片与容器 */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .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;
  }

  /* 4.按钮 (start-btn, reg-button - handled by general btn styles) */
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions__promo-card-btn,
  .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: 12px 15px !important;
    font-size: 1rem !important;
  }
  .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 !important;
    flex-direction: column !important;
  }

  .page-promotions__section-title {
    font-size: 1.8rem !important;
    margin-top: 40px !important;
    margin-bottom: 20px !important;
  }
  .page-promotions__section-description {
    margin-bottom: 30px !important;
  }
  .page-promotions__promo-card-title {
    font-size: 1.3rem !important;
  }
  .page-promotions__step-title {
    font-size: 1.2rem !important;
  }
  .page-promotions__terms-content {
    padding: 25px !important;
  }
  .page-promotions__terms-subtitle {
    font-size: 1.2rem !important;
  }
  details.page-promotions__faq-item summary.page-promotions__faq-question { padding: 15px !important; }
  .page-promotions__faq-qtext { font-size: 15px !important; }
  details.page-promotions__faq-item .page-promotions__faq-answer { padding: 0 15px 15px !important; }
}