.page-promotions {
  background-color: #000000; /* Match body background for consistency */
  color: #ffffff; /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-promotions__hero-section {
  position: relative;
  background: linear-gradient(135deg, #0A2240, #000000); /* Dark blue to black gradient */
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  text-align: center;
  overflow: hidden; /* Prevent content overflow */
}

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

.page-promotions__main-title {
  font-size: 48px;
  font-weight: bold;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.page-promotions__title-description {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Gold button */
  color: #0A2240; /* Dark blue text */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text breaking */
}

.page-promotions__cta-button:hover {
  background: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-button--secondary {
  background: #0A2240; /* Dark blue button */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700; /* Gold border */
}

.page-promotions__cta-button--secondary:hover {
  background: #1a3a60; /* Slightly lighter dark blue on hover */
  border-color: #e6c200;
}

.page-promotions__cta-button--large {
  padding: 18px 50px;
  font-size: 20px;
}

.page-promotions__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for section titles */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__overview-section {
  padding: 80px 0;
  background-color: #0A2240; /* Dark blue background */
}

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

.page-promotions__promotion-card {
  background: rgba(255, 255, 255, 0.05); /* Slightly transparent white background */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #ffffff; /* Light text for card content */
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__promotion-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover; /* Ensure images cover the area */
  width: 100%; /* Ensure image fills card width */
  min-height: 200px; /* Minimum size requirement */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions__promotion-title {
  font-size: 24px;
  color: #FFD700; /* Gold for promotion titles */
  margin-bottom: 15px;
  flex-grow: 1; /* Allow title to take available space */
}

.page-promotions__promotion-excerpt {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__benefits-section {
  padding: 80px 0;
  background-color: #000000; /* Black background */
}

.page-promotions__benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__benefits-item {
  background: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #FFD700; /* Gold accent */
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
}

.page-promotions__benefits-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__benefits-item-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions__how-to-claim-section {
  padding: 80px 0;
  background-color: #0A2240; /* Dark blue background */
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__steps-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  position: relative;
  counter-increment: step-counter;
}

.page-promotions__steps-item::before {
  content: counter(step-counter);
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  background: #FFD700; /* Gold number */
  color: #0A2240;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__steps-item-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 10px;
  padding-left: 30px; /* Space for the step number */
}

.page-promotions__steps-item p {
  color: #cccccc;
  padding-left: 30px;
}

.page-promotions__steps-item a {
  color: #FFD700; /* Gold links within steps */
  text-decoration: underline;
}

.page-promotions__steps-item a:hover {
  color: #e6c200;
}

.page-promotions__cta-buttons--center {
  margin-top: 50px;
  text-align: center;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 80px 0;
  background-color: #000000; /* Black background */
}

.page-promotions__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ容器样式 */
.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08); /* Slightly lighter background for FAQ item */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* FAQ默认状态 - 答案隐藏 */
.page-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px; /* Adjust padding for consistency */
  opacity: 0;
  color: #cccccc;
}

/* FAQ展开状态 - 🚨 使用!important和足够大的max-height确保一定能展开 */
.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 2000px !important; /* 🚨 使用!important确保优先级，值足够大以容纳任何内容 */
  padding: 20px 25px !important; /* Adjust padding for consistency */
  opacity: 1;
  background: rgba(255, 255, 255, 0.03); /* Darker background for expanded answer */
  border-radius: 0 0 5px 5px;
}

/* 问题样式 */
.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px; /* Adjust padding for consistency */
  background: rgba(255, 255, 255, 0.1); /* Slightly transparent white */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-promotions__faq-question:hover {
  background: rgba(255, 255, 255, 0.15); /* Lighter on hover */
  border-color: rgba(255, 255, 255, 0.3);
}

.page-promotions__faq-question:active {
  background: rgba(255, 255, 255, 0.2);
}

/* 问题标题样式 */
.page-promotions__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none; /* 防止h3标签阻止点击事件 */
  color: #FFD700; /* Gold for FAQ questions */
}

/* 切换图标 */
.page-promotions__faq-toggle {
  font-size: 28px; /* Larger icon */
  font-weight: bold;
  line-height: 1;
  color: #FFD700; /* Gold icon */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* 防止图标阻止点击事件 */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3); /* Dark background for toggle */
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
  transform: rotate(45deg); /* Rotate for minus sign */
  color: #ffffff; /* White icon when active */
  background: #FFD700; /* Gold background when active */
}

/* Brand Section */
.page-promotions__brand-section {
  padding: 80px 0;
  background-color: #0A2240; /* Dark blue background */
}

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

.page-promotions__brand-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.page-promotions__brand-item-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 10px;
}

/* Blog Section */
.page-promotions__blog-section {
  padding: 80px 0;
  background-color: #000000; /* Black background */
}

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