.page-promotions {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF;
}

.page-promotions__hero-section {
  padding-top: 0;
  position: relative;
  text-align: center;
  background-color: #017439;
  color: #FFFFFF;
  padding-bottom: 40px;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

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

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

.page-promotions__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-promotions__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-promotions__btn-primary {
  background-color: #C30808;
  color: #FFFF00;
  border: 2px solid #C30808;
}

.page-promotions__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-promotions__btn-secondary {
  background-color: #FFFFFF;
  color: #017439;
  border: 2px solid #017439;
}

.page-promotions__btn-secondary:hover {
  background-color: #f0f0f0;
  border-color: #005a2e;
}

.page-promotions__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-promotions__dark-bg {
  background-color: #017439;
  color: #FFFFFF;
}

.page-promotions__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: inherit;
  font-weight: 700;
}

.page-promotions__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

.page-promotions__featured-promos .page-promotions__section-title,
.page-promotions__faq-section .page-promotions__section-title,
.page-promotions__cta-bottom .page-promotions__section-title {
  color: #017439;
}

.page-promotions__featured-promos .page-promotions__section-description,
.page-promotions__faq-section .page-promotions__section-description,
.page-promotions__cta-bottom .page-promotions__section-description {
  color: #333333;
}

.page-promotions__promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-promotions__promo-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  color: #333333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-promotions__promo-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #017439;
}

.page-promotions__promo-text {
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__promo-details {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promotions__promo-details li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.page-promotions__promo-details li::before {
  content: '✔';
  color: #017439;
  position: absolute;
  left: 0;
  top: 0;
}

.page-promotions__terms-conditions {
  text-align: left;
  background-color: #f8f8f8;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-promotions__terms-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  color: #017439;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promotions__terms-list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 30px;
}

.page-promotions__terms-list li {
  margin-bottom: 10px;
}

.page-promotions__why-choose .page-promotions__section-title,
.page-promotions__why-choose .page-promotions__section-description {
  color: #FFFFFF;
}

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

.page-promotions__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  color: #FFFFFF;
  transition: background-color 0.3s ease;
}

.page-promotions__feature-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

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

.page-promotions__feature-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.page-promotions__feature-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

.page-promotions__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #017439;
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
}

.page-promotions__faq-item[open] > .page-promotions__faq-question {
  border-bottom: 1px solid #d0d0d0;
  background-color: #f0f0f0;
}

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

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

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

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

.page-promotions__faq-item summary::marker {
  display: none;
}

.page-promotions__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1.05em;
  line-height: 1.7;
  color: #555555;
}

.page-promotions__cta-bottom {
  background-color: #f8f8f8;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-promotions__btn-large {
  padding: 15px 40px;
  font-size: 1.2em;
  border-radius: 10px;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

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

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

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

  /* LOGO 轮播区域 - 此页面无LOGO轮播，但为遵循必写清单，此处为空占位 */
  .page-promotions__logo-carousel-section {
    padding: 10px 15px 20px;
  }
  .page-promotions__logo-carousel {
    /* specific styles if any */
  }
  .page-promotions__logo-item {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    box-sizing: border-box;
  }

  /* HERO 主图区域 */
  .page-promotions__hero-section {
    padding-top: 0 !important;
    padding-bottom: 30px;
  }
  .page-promotions__hero-content {
    padding: 15px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 15px;
  }
  .page-promotions__description {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  /* 游戏展示区域 - 此页面无直接游戏展示，但为遵循必写清单，此处为空占位 */
  .page-promotions__games-section,
  .page-promotions__games-layout,
  .page-promotions__games-grid,
  .page-promotions__featured-game-image,
  .page-promotions__game-card,
  .page-promotions__game-card-title {
    /* specific styles if any */
  }

  /* 通用图片与容器 */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__section,
  .page-promotions__promo-card,
  .page-promotions__feature-item,
  .page-promotions__faq-item,
  .page-promotions__terms-content,
  .page-promotions__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__terms-conditions,
  .page-promotions__cta-bottom {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  /* 其他内容模块 */
  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  .page-promotions__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-promotions__promo-card {
    padding: 20px;
  }
  .page-promotions__promo-image {
    height: 180px;
  }
  .page-promotions__promo-title {
    font-size: 1.5em;
  }
  .page-promotions__sub-title {
    font-size: 1.5em;
  }
  .page-promotions__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-promotions__faq-answer {
    padding: 10px 20px 15px;
    font-size: 1em;
  }
  .page-promotions__feature-icon {
    width: 80px;
    height: 80px;
  }
  .page-promotions__feature-title {
    font-size: 1.3em;
  }
  .page-promotions__btn-large {
    font-size: 1.1em;
  }
}