.page-promotions-new-user-bonus {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-promotions-new-user-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-new-user-bonus__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding as body handles --header-offset */
  padding-bottom: 50px;
  background-color: #2F6BFF;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions-new-user-bonus__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-promotions-new-user-bonus__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-top: 30px;
  padding: 0 20px;
}

.page-promotions-new-user-bonus__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 20px;
  /* clamp for responsive font size without fixed large values */
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.page-promotions-new-user-bonus__description {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #D6E2FF;
}

.page-promotions-new-user-bonus__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 200px; /* Ensure button min size */
  min-height: 48px; /* Ensure button min size */
}

.page-promotions-new-user-bonus__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-promotions-new-user-bonus__benefits-section,
.page-promotions-new-user-bonus__how-to-claim-section,
.page-promotions-new-user-bonus__terms-section,
.page-promotions-new-user-bonus__faq-section {
  padding-bottom: 60px;
}

.page-promotions-new-user-bonus__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promotions-new-user-bonus__card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-new-user-bonus__benefit-icon {
  width: 100%;
  max-width: 300px; /* Recommended size for card images */
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-promotions-new-user-bonus__benefit-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__benefit-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-promotions-new-user-bonus__steps-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.page-promotions-new-user-bonus__step-item {
  flex: 1 1 calc(33% - 40px);
  min-width: 280px;
  text-align: center;
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF;
}

.page-promotions-new-user-bonus__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #2F6BFF;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1F2D3D;
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__step-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-promotions-new-user-bonus__cta-button--secondary {
  margin-top: 40px;
  background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%);
}

.page-promotions-new-user-bonus__terms-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 30px;
}

.page-promotions-new-user-bonus__terms-list {
  list-style-type: disc;
  margin: 0 auto 30px auto;
  max-width: 800px;
  padding-left: 25px;
  color: #1F2D3D;
  font-size: 1rem;
  line-height: 1.8;
}

.page-promotions-new-user-bonus__terms-list li {
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__read-more-link {
  display: block;
  text-align: center;
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.page-promotions-new-user-bonus__read-more-link:hover {
  color: #6FA3FF;
  text-decoration: underline;
}

.page-promotions-new-user-bonus__faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions-new-user-bonus__faq-item {
  text-align: left;
  padding: 25px;
}

.page-promotions-new-user-bonus__faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions-new-user-bonus__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #2F6BFF;
  transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-promotions-new-user-bonus__faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
  max-height: 150px; /* Adjust as needed for content */
}

.page-promotions-new-user-bonus__contact-link {
  display: block;
  text-align: center;
  margin-top: 40px;
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.page-promotions-new-user-bonus__contact-link:hover {
  color: #6FA3FF;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__hero-section {
    padding-bottom: 30px;
  }

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

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

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

  .page-promotions-new-user-bonus__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    padding-top: 40px;
    margin-bottom: 30px;
  }

  .page-promotions-new-user-bonus__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-new-user-bonus__step-item {
    flex: 1 1 100%;
  }

  .page-promotions-new-user-bonus__terms-list {
    padding-left: 20px;
  }

  /* Critical: Ensure images do not overflow on mobile */
  .page-promotions-new-user-bonus img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-bonus__container {
    padding: 0 15px;
  }

  .page-promotions-new-user-bonus__hero-content {
    margin-top: 20px;
  }

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

  .page-promotions-new-user-bonus__cta-button {
    width: 100%;
    max-width: 300px;
  }

  .page-promotions-new-user-bonus__section-title {
    padding-top: 30px;
  }

  .page-promotions-new-user-bonus__benefit-title,
  .page-promotions-new-user-bonus__step-title {
    font-size: 1.2rem;
  }

  .page-promotions-new-user-bonus__faq-question {
    font-size: 1.1rem;
  }

  .page-promotions-new-user-bonus__faq-answer {
    font-size: 0.95rem;
  }
}