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

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

/* Hero Section */
.page-khuynmi__hero-section {
  position: relative;
  text-align: center;
  padding-top: 10px; /* Small top padding, assuming body handles header offset */
  padding-bottom: 40px;
  overflow: hidden;
}

.page-khuynmi__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

.page-khuynmi__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-khuynmi__hero-content {
  position: relative; /* Changed from absolute to relative for "image above text" rule */
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.page-khuynmi__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #FFB04D; /* Glow */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-khuynmi__lead-text {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #FFF3E6;
}

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

/* General Section Styling */
.page-khuynmi__section-title {
  font-size: 2.5rem;
  color: #FFB04D; /* Glow */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-khuynmi__section-description {
  font-size: 1.1rem;
  color: #FFF3E6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Buttons */
.page-khuynmi__btn-primary,
.page-khuynmi__btn-secondary,
.page-khuynmi__promo-card-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure button doesn't overflow */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
}

.page-khuynmi__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  border: none;
}

.page-khuynmi__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 140, 26, 0.4);
}

.page-khuynmi__btn-secondary {
  background: transparent;
  color: #FF8C1A;
  border: 2px solid #FF8C1A;
}

.page-khuynmi__btn-secondary:hover {
  background: #FF8C1A;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 140, 26, 0.4);
}

.page-khuynmi__promo-card-button {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  border: none;
  width: 100%;
  text-align: center;
}

.page-khuynmi__promo-card-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 140, 26, 0.4);
}

/* Overview Section */
.page-khuynmi__overview-section {
  padding: 60px 0;
  background-color: #0D0E12;
}

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

.page-khuynmi__promo-card {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 12px;
  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;
  justify-content: space-between;
}

.page-khuynmi__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 140, 26, 0.5);
}

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

.page-khuynmi__promo-card-title {
  font-size: 1.5rem;
  color: #FFB04D; /* Glow */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-khuynmi__promo-card-text {
  font-size: 1rem;
  color: #FFF3E6;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Detailed Promos Section */
.page-khuynmi__detailed-promos-section {
  padding: 60px 0;
  background-color: #0D0E12;
}

.page-khuynmi__promo-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-khuynmi__promo-item-title {
  font-size: 2rem;
  color: #FFB04D; /* Glow */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-khuynmi__promo-item p {
  font-size: 1.05rem;
  color: #FFF3E6;
  margin-bottom: 20px;
}

.page-khuynmi__promo-item-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 8px;
  margin: 20px 0;
  display: block;
}

.page-khuynmi__promo-benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-khuynmi__promo-benefits-list li {
  background: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23FFA53A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check-circle"%3e%3cpath d="M22 11.08V12a10 10 0 1 1-5.93-8.93"%3e%3c/path%3e%3cpolyline points="22 4 12 14.01 9 11.01"%3e%3c/polyline%3e%3c/svg%3e') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #FFF3E6;
  font-size: 1rem;
}

/* How To Claim Section */
.page-khuynmi__how-to-claim-section {
  padding: 60px 0;
  background-color: #0D0E12;
}

.page-khuynmi__claim-steps-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
}

.page-khuynmi__claim-steps-list li {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #FFF3E6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-khuynmi__claim-steps-list li strong {
  color: #FFB04D; /* Glow */
}

/* Terms & Conditions Section */
.page-khuynmi__terms-conditions-section {
  padding: 60px 0;
  background-color: #0D0E12;
}

.page-khuynmi__terms-list {
  list-style: disc;
  padding-left: 20px;
  max-width: 900px;
  margin: 40px auto;
  color: #FFF3E6;
}

.page-khuynmi__terms-list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* FAQ Section */
.page-khuynmi__faq-section {
  padding: 60px 0;
  background-color: #0D0E12;
}

.page-khuynmi__faq-list {
  max-width: 900px;
  margin: 40px auto;
}

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

.page-khuynmi__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #FFB04D; /* Glow */
  cursor: pointer;
  list-style: none;
  outline: none;
  user-select: none;
}

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

.page-khuynmi__faq-qtext {
  flex-grow: 1;
  padding-right: 15px;
}

.page-khuynmi__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: #FFA53A;
  transition: transform 0.3s ease;
}

.page-khuynmi__faq-item[open] .page-khuynmi__faq-toggle {
  transform: rotate(45deg);
}

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

.page-khuynmi__faq-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.page-khuynmi__cta-section {
  padding: 60px 0 80px;
  background-color: #0D0E12;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-khuynmi__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-khuynmi__section-title {
    font-size: 2rem;
  }

  .page-khuynmi__promo-card-title {
    font-size: 1.3rem;
  }

  .page-khuynmi__promo-item-title {
    font-size: 1.7rem;
  }
}

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

  /* HERO 主图区域 */
  .page-khuynmi__hero-section {
    padding-top: 10px !important;
    padding-bottom: 20px;
  }

  .page-khuynmi__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-khuynmi__hero-content {
    padding: 20px 15px;
  }

  .page-khuynmi__main-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }

  .page-khuynmi__lead-text {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  /* 按钮与按钮容器 */
  .page-khuynmi__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-khuynmi__btn-primary,
  .page-khuynmi__btn-secondary,
  .page-khuynmi a[class*="button"],
  .page-khuynmi 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;
    font-size: 1rem;
  }

  .page-khuynmi__cta-buttons,
  .page-khuynmi__button-group,
  .page-khuynmi__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-khuynmi img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  .page-khuynmi__container,
  .page-khuynmi__section,
  .page-khuynmi__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 其他内容模块 */
  .page-khuynmi__overview-section,
  .page-khuynmi__detailed-promos-section,
  .page-khuynmi__how-to-claim-section,
  .page-khuynmi__terms-conditions-section,
  .page-khuynmi__faq-section,
  .page-khuynmi__cta-section {
    padding: 40px 0;
  }

  .page-khuynmi__section-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .page-khuynmi__section-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .page-khuynmi__promotion-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-khuynmi__promo-card {
    padding: 20px;
  }

  .page-khuynmi__promo-card-image {
    height: 180px;
  }

  .page-khuynmi__promo-card-title {
    font-size: 1.2rem;
  }

  .page-khuynmi__promo-card-text {
    font-size: 0.9rem;
  }

  .page-khuynmi__promo-item {
    padding: 20px;
  }

  .page-khuynmi__promo-item-title {
    font-size: 1.5rem;
  }

  .page-khuynmi__promo-item p,
  .page-khuynmi__promo-benefits-list li,
  .page-khuynmi__claim-steps-list li,
  .page-khuynmi__terms-list li,
  .page-khuynmi__faq-answer {
    font-size: 0.95rem;
  }

  .page-khuynmi__faq-item summary {
    font-size: 1.05rem;
    padding: 15px 20px;
  }

  .page-khuynmi__faq-toggle {
    font-size: 1.5rem;
  }

  .page-khuynmi__faq-image {
    max-width: 100%;
    margin-top: 20px;
  }

  .page-khuynmi__claim-steps-list,
  .page-khuynmi__terms-list,
  .page-khuynmi__faq-list {
    margin: 20px auto;
  }
}

@media (max-width: 480px) {
  .page-khuynmi__main-title {
    font-size: 1.8rem;
  }

  .page-khuynmi__section-title {
    font-size: 1.5rem;
  }

  .page-khuynmi__btn-primary,
  .page-khuynmi__btn-secondary {
    padding: 12px 20px;
  }
}