.page-promotions-new-user {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-promotions-new-user__hero-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue for better contrast */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-new-user__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-promotions-new-user__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #ffc107; /* Highlight with auxiliary color */
}

.page-promotions-new-user__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #0056b3; /* Darker blue for text on auxiliary color */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-new-user__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-promotions-new-user__hero-image-wrapper {
  position: absolute;
  bottom: -50px;
  right: -50px;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions-new-user__hero-image {
  width: 300px;
  height: auto;
  transform: rotate(15deg);
}

.page-promotions-new-user__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  font-weight: 700;
}

.page-promotions-new-user__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555;
}

.page-promotions-new-user__why-join-section {
  padding: 60px 0;
  background-color: #fff;
}

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

.page-promotions-new-user__feature-item {
  background-color: #fefefe;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promotions-new-user__feature-item:hover {
  transform: translateY(-10px);
}

.page-promotions-new-user__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-promotions-new-user__feature-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-promotions-new-user__feature-text {
  color: #666;
  font-size: 1em;
}

.page-promotions-new-user__bonus-details-section {
  padding: 80px 0;
  background-color: #e9f7ff;
}

.page-promotions-new-user__bonus-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-new-user__bonus-item {
  background-color: #ffffff;
  border-left: 5px solid #ffc107;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions-new-user__bonus-item-title {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions-new-user__bonus-item-text {
  color: #666;
}

.page-promotions-new-user__details-image {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 50px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user__how-to-claim-section {
  padding: 80px 0;
  background-color: #fff;
}

.page-promotions-new-user__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions-new-user__steps-list li {
  background-color: #fefefe;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  position: relative;
  counter-increment: step-counter;
}

.page-promotions-new-user__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: -20px;
  top: 30px;
  background-color: #007bff;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user__step-title {
  font-size: 1.8em;
  color: #007bff;
  margin-left: 40px;
  margin-bottom: 10px;
}

.page-promotions-new-user__step-text {
  color: #555;
  margin-left: 40px;
  font-size: 1.05em;
}

.page-promotions-new-user__cta-button--secondary {
  background-color: #007bff;
  color: #fff;
  margin-top: 40px;
}

.page-promotions-new-user__cta-button--secondary:hover {
  background-color: #0056b3;
}

.page-promotions-new-user__faq-section {
  padding: 80px 0;
  background-color: #f0f8ff;
}

.page-promotions-new-user__faq-list {
  margin-top: 40px;
}

.page-promotions-new-user__faq-item {
  background-color: #ffffff;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-new-user__faq-question {
  font-size: 1.25em;
  color: #007bff;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions-new-user__faq-answer {
  color: #666;
  font-size: 1em;
  display: none; /* Hidden by default */
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-promotions-new-user__faq-question.active + .page-promotions-new-user__faq-answer {
  display: block;
}

.page-promotions-new-user__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-new-user__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-new-user__app-download-section {
  padding: 80px 0;
  background-color: #0056b3; /* Darker blue for contrast */
  color: #fff;
}

.page-promotions-new-user__app-download-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-promotions-new-user__app-text-content {
  flex: 1;
  min-width: 300px;
}

.page-promotions-new-user__app-download-section .page-promotions-new-user__section-title,
.page-promotions-new-user__app-download-section .page-promotions-new-user__section-description {
  color: #fff;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-promotions-new-user__app-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-promotions-new-user__cta-button--download {
  background-color: #ffc107;
  color: #0056b3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  font-size: 1em;
}

.page-promotions-new-user__cta-button--download .page-promotions-new-user__app-icon {
  width: 25px;
  height: 25px;
}

.page-promotions-new-user__app-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 250px;
}

.page-promotions-new-user__app-image {
  max-width: 350px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user__final-cta-section {
  padding: 100px 0;
  background: linear-gradient(45deg, #007bff, #ffc107);
  text-align: center;
  color: #fff;
}

.page-promotions-new-user__final-cta-section .page-promotions-new-user__section-title,
.page-promotions-new-user__final-cta-section .page-promotions-new-user__section-description {
  color: #fff;
}

.page-promotions-new-user__cta-button--primary-large {
  background-color: #fff;
  color: #007bff;
  padding: 18px 45px;
  font-size: 1.2em;
  margin-top: 50px;
}

.page-promotions-new-user__cta-button--primary-large:hover {
  background-color: #eee;
  color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-new-user__main-title {
    font-size: 2.8em;
  }
  .page-promotions-new-user__section-title {
    font-size: 2em;
  }
  .page-promotions-new-user__app-download-flex {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions-new-user__app-download-section .page-promotions-new-user__section-title,
  .page-promotions-new-user__app-download-section .page-promotions-new-user__section-description {
    text-align: center;
  }
  .page-promotions-new-user__app-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user__hero-section {
    padding: 80px 0 120px;
  }
  .page-promotions-new-user__main-title {
    font-size: 2.2em;
  }
  .page-promotions-new-user__hero-description {
    font-size: 1em;
  }
  .page-promotions-new-user__section-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user__steps-list li::before {
    left: 10px;
    top: 15px;
  }
  .page-promotions-new-user__step-title,
  .page-promotions-new-user__step-text {
    margin-left: 60px;
  }
  .page-promotions-new-user__hero-image-wrapper {
    bottom: -80px;
    right: -80px;
  }
  .page-promotions-new-user__hero-image {
    width: 250px;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user__hero-section {
    padding: 60px 0 100px;
  }
  .page-promotions-new-user__main-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-new-user__section-title {
    font-size: 1.5em;
  }
  .page-promotions-new-user__features-grid,
  .page-promotions-new-user__bonus-info-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-new-user__steps-list li::before {
    font-size: 1.2em;
    width: 35px;
    height: 35px;
    left: 5px;
    top: 10px;
  }
  .page-promotions-new-user__step-title {
    font-size: 1.4em;
    margin-left: 50px;
  }
  .page-promotions-new-user__step-text {
    margin-left: 50px;
    font-size: 0.95em;
  }
  .page-promotions-new-user__app-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-promotions-new-user__cta-button--download {
    width: 80%;
    justify-content: center;
  }
}