/* style/promotions-new-user-offer.css */
/* body đã padding-top: var(--header-offset) từ shared.css; trang này không cần thêm padding-top cho body hoặc main */

.page-promotions-new-user-offer {
  background-color: #08160F; /* Nền chính của trang */
  color: #F2FFF6; /* Màu chữ chính cho nền tối */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-promotions-new-user-offer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions-new-user-offer__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Chỉ một khoảng cách nhỏ từ header */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-promotions-new-user-offer__hero-image-wrapper {
  width: 100%;
  max-height: 70vh; /* Giới hạn chiều cao hình ảnh */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions-new-user-offer__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-promotions-new-user-offer__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Kéo nội dung lên trên hình ảnh một chút */
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 22, 15, 0.8) 0%, #08160F 100%); /* Nền gradient để chữ nổi bật */
  border-radius: 15px;
  padding-bottom: 60px;
}

.page-promotions-new-user-offer__main-title {
  color: #F2C14E; /* Màu vàng Gold cho tiêu đề chính */
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-promotions-new-user-offer__hero-description {
  color: #A7D9B8; /* Màu chữ phụ */
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-offer__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions-new-user-offer__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
  transform: translateY(-2px);
}

.page-promotions-new-user-offer__introduction-section,
.page-promotions-new-user-offer__details-section,
.page-promotions-new-user-offer__terms-section,
.page-promotions-new-user-offer__how-to-claim-section,
.page-promotions-new-user-offer__why-choose-us-section,
.page-promotions-new-user-offer__faq-section,
.page-promotions-new-user-offer__cta-section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Màu đường kẻ Divider */
}

.page-promotions-new-user-offer__introduction-section:last-of-type,
.page-promotions-new-user-offer__cta-section:last-of-type {
  border-bottom: none;
}

.page-promotions-new-user-offer__section-title {
  color: #F2FFF6; /* Màu chữ chính */
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-promotions-new-user-offer__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #2AD16F;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions-new-user-offer__text-block {
  color: #A7D9B8; /* Màu chữ phụ */
  font-size: 1.05rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-new-user-offer__card-grid,
.page-promotions-new-user-offer__steps-grid,
.page-promotions-new-user-offer__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-new-user-offer__card,
.page-promotions-new-user-offer__step-card,
.page-promotions-new-user-offer__feature-card {
  background-color: #11271B; /* Màu nền Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #2E7A4E; /* Màu viền Border */
}

.page-promotions-new-user-offer__card-image,
.page-promotions-new-user-offer__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-offer__card-title,
.page-promotions-new-user-offer__step-title,
.page-promotions-new-user-offer__feature-title {
  color: #F2FFF6; /* Màu chữ chính */
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-promotions-new-user-offer__card-description,
.page-promotions-new-user-offer__step-description,
.page-promotions-new-user-offer__feature-description {
  color: #A7D9B8; /* Màu chữ phụ */
  font-size: 1rem;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-promotions-new-user-offer__card-button,
.page-promotions-new-user-offer__step-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-top: 15px;
  border: none;
  cursor: pointer;
}

.page-promotions-new-user-offer__card-button:hover,
.page-promotions-new-user-offer__step-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-1px);
}

.page-promotions-new-user-offer__list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.page-promotions-new-user-offer__list-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 10px;
  color: #A7D9B8;
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
  text-align: justify;
}

.page-promotions-new-user-offer__list-item strong {
  color: #F2FFF6;
  margin-right: 8px;
  flex-shrink: 0;
}

.page-promotions-new-user-offer__step-icon {
  background-color: #2AD16F;
  color: #08160F;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(42, 209, 111, 0.4);
}

.page-promotions-new-user-offer__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-new-user-offer__faq-item {
  background-color: #11271B; /* Màu nền Card BG */
  border: 1px solid #2E7A4E; /* Màu viền Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-new-user-offer__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  color: #F2FFF6; /* Màu chữ chính */
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #1a3425; /* Slightly darker for contrast */
  border-bottom: 1px solid #2E7A4E;
  list-style: none; /* Hide default marker for details/summary */
}

.page-promotions-new-user-offer__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions-new-user-offer__faq-item[open] .page-promotions-new-user-offer__faq-question {
  border-bottom: 1px solid #2E7A4E;
}

.page-promotions-new-user-offer__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #2AD16F;
}

.page-promotions-new-user-offer__faq-item[open] .page-promotions-new-user-offer__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions-new-user-offer__faq-answer {
  padding: 20px 25px;
  color: #A7D9B8; /* Màu chữ phụ */
  font-size: 1rem;
  text-align: justify;
}

.page-promotions-new-user-offer__faq-answer p {
  margin: 0;
}

.page-promotions-new-user-offer__cta-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-promotions-new-user-offer__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 40px;
  object-fit: cover;
}

.page-promotions-new-user-offer__cta-title {
  color: #F2C14E; /* Màu vàng Gold */
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-promotions-new-user-offer__cta-description {
  color: #A7D9B8; /* Màu chữ phụ */
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-offer__cta-button--large {
  padding: 18px 35px;
  font-size: 1.25rem;
  border-radius: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-new-user-offer__hero-content {
    margin-top: -80px;
  }

  .page-promotions-new-user-offer__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-promotions-new-user-offer__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
}

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

  .page-promotions-new-user-offer__container {
    padding: 0 15px !important;
  }

  .page-promotions-new-user-offer__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }

  .page-promotions-new-user-offer__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-promotions-new-user-offer__hero-description {
    font-size: 1rem;
  }

  .page-promotions-new-user-offer__cta-button {
    font-size: 1rem;
    padding: 12px 25px;
  }

  .page-promotions-new-user-offer__introduction-section,
  .page-promotions-new-user-offer__details-section,
  .page-promotions-new-user-offer__terms-section,
  .page-promotions-new-user-offer__how-to-claim-section,
  .page-promotions-new-user-offer__why-choose-us-section,
  .page-promotions-new-user-offer__faq-section,
  .page-promotions-new-user-offer__cta-section {
    padding: 40px 0;
  }

  .page-promotions-new-user-offer__section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-promotions-new-user-offer__text-block {
    font-size: 0.95rem;
  }

  .page-promotions-new-user-offer__card-grid,
  .page-promotions-new-user-offer__steps-grid,
  .page-promotions-new-user-offer__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-new-user-offer__card,
  .page-promotions-new-user-offer__step-card,
  .page-promotions-new-user-offer__feature-card {
    padding: 25px;
  }

  .page-promotions-new-user-offer__card-title,
  .page-promotions-new-user-offer__step-title,
  .page-promotions-new-user-offer__feature-title {
    font-size: 1.3rem;
  }

  .page-promotions-new-user-offer__card-description,
  .page-promotions-new-user-offer__step-description,
  .page-promotions-new-user-offer__feature-description {
    font-size: 0.9rem;
  }

  .page-promotions-new-user-offer__list-item {
    font-size: 0.95rem;
    padding: 12px 15px;
  }

  .page-promotions-new-user-offer__faq-question {
    font-size: 1.05rem;
    padding: 15px 20px;
  }

  .page-promotions-new-user-offer__faq-toggle {
    font-size: 1.5rem;
  }

  .page-promotions-new-user-offer__faq-answer {
    font-size: 0.9rem;
    padding: 15px 20px;
  }

  .page-promotions-new-user-offer__cta-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-promotions-new-user-offer__cta-description {
    font-size: 1rem;
  }

  .page-promotions-new-user-offer__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }

  /* Mobile image responsiveness */
  .page-promotions-new-user-offer img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions-new-user-offer__section,
  .page-promotions-new-user-offer__card,
  .page-promotions-new-user-offer__container,
  .page-promotions-new-user-offer__hero-image-wrapper,
  .page-promotions-new-user-offer__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* padding-left: 15px; */ /* Added in .page-promotions-new-user-offer__container */
    /* padding-right: 15px; */ /* Added in .page-promotions-new-user-offer__container */
    overflow: hidden !important;
  }

  /* Mobile button responsiveness */
  .page-promotions-new-user-offer__cta-button,
  .page-promotions-new-user-offer__card-button,
  .page-promotions-new-user-offer__step-button,
  .page-promotions-new-user-offer a[class*="button"],
  .page-promotions-new-user-offer 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-new-user-offer__cta-buttons,
  .page-promotions-new-user-offer__button-group,
  .page-promotions-new-user-offer__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;
    display: flex;
    flex-direction: column; /* Ensure vertical stacking for multiple buttons */
  }

  /* Video responsiveness (if any, though none currently in HTML) */
  .page-promotions-new-user-offer video,
  .page-promotions-new-user-offer__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-new-user-offer__video-section,
  .page-promotions-new-user-offer__video-container,
  .page-promotions-new-user-offer__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-promotions-new-user-offer__video-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-offer__hero-content {
    margin-top: -40px;
    padding: 25px 10px;
  }

  .page-promotions-new-user-offer__main-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .page-promotions-new-user-offer__cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .page-promotions-new-user-offer__section-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .page-promotions-new-user-offer__card,
  .page-promotions-new-user-offer__step-card,
  .page-promotions-new-user-offer__feature-card {
    padding: 20px;
  }

  .page-promotions-new-user-offer__card-title,
  .page-promotions-new-user-offer__step-title,
  .page-promotions-new-user-offer__feature-title {
    font-size: 1.2rem;
  }

  .page-promotions-new-user-offer__faq-question {
    font-size: 1rem;
    padding: 12px 15px;
  }

  .page-promotions-new-user-offer__faq-answer {
    padding: 12px 15px;
  }

  .page-promotions-new-user-offer__cta-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .page-promotions-new-user-offer__cta-button--large {
    padding: 12px 25px;
    font-size: 1rem;
  }
}