.page-promotions-welcome-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

.page-promotions-welcome-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding as body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
  background-color: #08160F; /* Background */
}

.page-promotions-welcome-bonus__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.page-promotions-welcome-bonus__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-promotions-welcome-bonus__hero-content {
  max-width: 800px;
  z-index: 1;
  color: #F2FFF6; /* Text Main */
}

.page-promotions-welcome-bonus__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.page-promotions-welcome-bonus__hero-description {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-promotions-welcome-bonus__btn-primary,
.page-promotions-welcome-bonus__btn-secondary {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.page-promotions-welcome-bonus__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-promotions-welcome-bonus__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-promotions-welcome-bonus__btn-secondary {
  background-color: transparent;
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
}

.page-promotions-welcome-bonus__btn-secondary:hover {
  background-color: rgba(46, 122, 78, 0.2); /* Border color with opacity */
  transform: translateY(-2px);
}

.page-promotions-welcome-bonus__introduction-section,
.page-promotions-welcome-bonus__how-to-claim-section,
.page-promotions-welcome-bonus__types-of-bonus-section,
.page-promotions-welcome-bonus__terms-conditions-section,
.page-promotions-welcome-bonus__benefits-section,
.page-promotions-welcome-bonus__faq-section,
.page-promotions-welcome-bonus__cta-section {
  padding: 60px 0;
}

.page-promotions-welcome-bonus__dark-section {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}

.page-promotions-welcome-bonus__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.page-promotions-welcome-bonus__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
  text-align: justify;
}

.page-promotions-welcome-bonus__text-block a {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-welcome-bonus__text-block a:hover {
  text-decoration: underline;
}

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

.page-promotions-welcome-bonus__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-welcome-bonus__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus__step-image,
.page-promotions-welcome-bonus__bonus-image,
.page-promotions-welcome-bonus__benefit-icon {
  width: 100%;
  height: auto;
  max-width: 400px; /* Constrain image width for cards */
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-promotions-welcome-bonus__benefit-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-promotions-welcome-bonus__step-title,
.page-promotions-welcome-bonus__bonus-title,
.page-promotions-welcome-bonus__benefit-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-welcome-bonus__step-description,
.page-promotions-welcome-bonus__bonus-description,
.page-promotions-welcome-bonus__benefit-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
}

.page-promotions-welcome-bonus__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-promotions-welcome-bonus__terms-list {
  list-style-type: disc;
  margin-left: 25px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.1rem;
}

.page-promotions-welcome-bonus__list-item {
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus__list-item strong {
  color: #F2FFF6; /* Text Main */
}

.page-promotions-welcome-bonus__faq-list {
  margin-top: 40px;
}

.page-promotions-welcome-bonus__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-welcome-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-promotions-welcome-bonus__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions-welcome-bonus__faq-question:hover {
  background-color: rgba(46, 122, 78, 0.2); /* Border color with opacity */
}

.page-promotions-welcome-bonus__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #57E38D; /* Glow */
}

.page-promotions-welcome-bonus__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-promotions-welcome-bonus__faq-item[open] .page-promotions-welcome-bonus__faq-question {
  background-color: rgba(46, 122, 78, 0.2); /* Border color with opacity */
}

/* Ensure contrast for all text */
.page-promotions-welcome-bonus p,
.page-promotions-welcome-bonus li,
.page-promotions-welcome-bonus h1,
.page-promotions-welcome-bonus h2,
.page-promotions-welcome-bonus h3,
.page-promotions-welcome-bonus h4,
.page-promotions-welcome-bonus a,
.page-promotions-welcome-bonus span {
  color: #F2FFF6; /* Default to Text Main */
}

.page-promotions-welcome-bonus__hero-description,
.page-promotions-welcome-bonus__text-block,
.page-promotions-welcome-bonus__step-description,
.page-promotions-welcome-bonus__bonus-description,
.page-promotions-welcome-bonus__benefit-description,
.page-promotions-welcome-bonus__faq-answer {
  color: #A7D9B8; /* Use Text Secondary for descriptive text */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-promotions-welcome-bonus__container {
    padding: 0 15px;
  }

  .page-promotions-welcome-bonus__hero-section {
    padding-bottom: 40px;
  }

  .page-promotions-welcome-bonus__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-promotions-welcome-bonus__main-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .page-promotions-welcome-bonus__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-promotions-welcome-bonus__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-welcome-bonus__btn-primary,
  .page-promotions-welcome-bonus__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }

  .page-promotions-welcome-bonus__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-promotions-welcome-bonus__text-block {
    font-size: 1rem;
  }

  .page-promotions-welcome-bonus__steps-grid,
  .page-promotions-welcome-bonus__bonus-grid,
  .page-promotions-welcome-bonus__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-welcome-bonus__card {
    padding: 20px;
  }

  .page-promotions-welcome-bonus__step-title,
  .page-promotions-welcome-bonus__bonus-title,
  .page-promotions-welcome-bonus__benefit-title {
    font-size: 1.3rem;
  }

  .page-promotions-welcome-bonus__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-promotions-welcome-bonus__faq-answer {
    padding: 0 15px 15px;
  }

  .page-promotions-welcome-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-promotions-welcome-bonus__section,
  .page-promotions-welcome-bonus__card,
  .page-promotions-welcome-bonus__container,
  .page-promotions-welcome-bonus__hero-section,
  .page-promotions-welcome-bonus__hero-image-wrapper,
  .page-promotions-welcome-bonus__cta-buttons,
  .page-promotions-welcome-bonus__steps-grid,
  .page-promotions-welcome-bonus__bonus-grid,
  .page-promotions-welcome-bonus__benefits-grid,
  .page-promotions-welcome-bonus__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow for containers */
  }
  
  .page-promotions-welcome-bonus__video-section {
    padding-top: 10px !important; /* body đã xử lý --header-offset */
  }
}