.page-promotions-new-user-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
}

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

.page-promotions-new-user-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
  background-color: #2F6BFF; /* Main Color */
  color: #FFFFFF;
  padding-top: 10px; /* Small top padding */
}

.page-promotions-new-user-bonus__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width if hero is wider */
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

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

.page-promotions-new-user-bonus__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-promotions-new-user-bonus__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 15px;
  max-width: 100%;
}

.page-promotions-new-user-bonus__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #E0EFFF; /* Lighter shade for description */
}

.page-promotions-new-user-bonus__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
}

.page-promotions-new-user-bonus__section-title {
  font-size: 2.2em;
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__benefits-section {
  background-color: #F4F7FB; /* Background */
  padding: 40px 0;
}

.page-promotions-new-user-bonus__benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-promotions-new-user-bonus__benefit-item {
  background-color: #FFFFFF; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid #D6E2FF; /* Border */
  transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus__benefit-item:hover {
  transform: translateY(-5px);
}

.page-promotions-new-user-bonus__benefit-heading {
  font-size: 1.4em;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__benefit-text {
  color: #1F2D3D; /* Text Main */
  font-size: 0.95em;
}

.page-promotions-new-user-bonus__steps-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus__how-to-claim {
  background-color: #FFFFFF; /* Card BG */
  padding: 40px 0;
}

.page-promotions-new-user-bonus__steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-promotions-new-user-bonus__step-item {
  background-color: #F4F7FB; /* Background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #D6E2FF; /* Border */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.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; /* Main Color */
  color: #FFFFFF;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-promotions-new-user-bonus__step-heading {
  font-size: 1.5em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__step-text {
  color: #1F2D3D; /* Text Main */
  font-size: 1em;
}

.page-promotions-new-user-bonus__cta-button--bottom {
  margin-top: 40px;
  display: block;
  text-align: center;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__terms-section {
  background-color: #F4F7FB; /* Background */
  padding: 40px 0 60px 0;
}

.page-promotions-new-user-bonus__terms-text {
  font-size: 1.05em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 20px;
  text-align: center;
}

.page-promotions-new-user-bonus__terms-list {
  list-style: disc;
  margin: 0 auto 30px auto;
  padding-left: 25px;
  max-width: 800px;
  color: #1F2D3D; /* Text Main */
}

.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; /* Main Color */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__hero-image-wrapper {
    margin-bottom: 15px;
  }

  .page-promotions-new-user-bonus__main-title {
    font-size: 1.8em;
    margin-bottom: 10px;
  }

  .page-promotions-new-user-bonus__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

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

  .page-promotions-new-user-bonus__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .page-promotions-new-user-bonus__benefits-list,
  .page-promotions-new-user-bonus__steps-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-new-user-bonus__benefit-item,
  .page-promotions-new-user-bonus__step-item {
    padding: 20px;
  }

  .page-promotions-new-user-bonus__benefit-heading {
    font-size: 1.2em;
  }

  .page-promotions-new-user-bonus__step-number {
    width: 45px;
    height: 45px;
    font-size: 1.5em;
    margin-bottom: 15px;
  }

  .page-promotions-new-user-bonus__step-heading {
    font-size: 1.3em;
  }

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

  .page-promotions-new-user-bonus__hero-section img,
  .page-promotions-new-user-bonus__benefits-section img,
  .page-promotions-new-user-bonus__how-to-claim img,
  .page-promotions-new-user-bonus__terms-section img {
    max-width: 100%;
    height: auto;
  }

  .page-promotions-new-user-bonus__steps-image {
    margin-top: 30px;
  }
}

/* Ensure all content area images are at least 200px wide on mobile */
@media (max-width: 768px) {
  .page-promotions-new-user-bonus img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum width for content images */
    min-height: 200px; /* Enforce minimum height for content images */
  }

  .page-promotions-new-user-bonus__hero-image {
    min-width: unset;
    min-height: unset;
  }

  .page-promotions-new-user-bonus__steps-image {
    min-width: 200px;
    min-height: 200px;
  }

  .page-promotions-new-user-bonus__container {
    padding: 15px;
  }
}