/* style/promotions-new-user-bonus.css */
.page-promotions-new-user-bonus {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-promotions-new-user-bonus__section-spacing {
  padding: 60px 0;
}

.page-promotions-new-user-bonus__section--dark {
  background-color: #0A192F;
  color: #E0E6F0;
}

.page-promotions-new-user-bonus__section-title {
  font-size: 2.5em;
  color: #0A192F;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__section-title--light {
  color: #64FFDA;
}

.page-promotions-new-user-bonus__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555;
}

.page-promotions-new-user-bonus__section-description--light {
  color: #E0E6F0;
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a5e 100%); /* Dark blue gradient */
  color: #E0E6F0;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.page-promotions-new-user-bonus__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #64FFDA; /* Bright green for highlight */
  font-weight: bold;
}

.page-promotions-new-user-bonus__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #E0E6F0;
}

.page-promotions-new-user-bonus__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions-new-user-bonus__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-promotions-new-user-bonus__btn--primary {
  background-color: #64FFDA;
  color: #0A192F;
  border: 2px solid #64FFDA;
}

.page-promotions-new-user-bonus__btn--primary:hover {
  background-color: #46b399;
  transform: translateY(-3px);
}

.page-promotions-new-user-bonus__btn--secondary {
  background-color: transparent;
  color: #64FFDA;
  border: 2px solid #64FFDA;
}

.page-promotions-new-user-bonus__btn--secondary:hover {
  background-color: #64FFDA;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-promotions-new-user-bonus__btn--large {
    padding: 20px 40px;
    font-size: 1.3em;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.2;
}

.page-promotions-new-user-bonus__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) blur(5px);
}

/* Benefits Section */
.page-promotions-new-user-bonus__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-new-user-bonus__benefit-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-promotions-new-user-bonus__benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 10px rgba(100, 255, 218, 0.4));
}

.page-promotions-new-user-bonus__benefit-title {
  font-size: 1.5em;
  color: #0A192F;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__benefit-text {
  color: #555;
}

/* How-To Claim Section */
.page-promotions-new-user-bonus__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-new-user-bonus__step-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(100, 255, 218, 0.3);
  position: relative;
  overflow: hidden;
}

.page-promotions-new-user-bonus__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #64FFDA;
  margin-bottom: 15px;
  background: rgba(100, 255, 218, 0.1);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.page-promotions-new-user-bonus__step-title {
  font-size: 1.6em;
  color: #64FFDA;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__step-text {
  color: #E0E6F0;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__step-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.page-promotions-new-user-bonus__step-item:hover .page-promotions-new-user-bonus__step-image {
    opacity: 1;
}

.page-promotions-new-user-bonus__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

/* Terms Section */
.page-promotions-new-user-bonus__terms-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.page-promotions-new-user-bonus__terms-list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-left: 5px solid #64FFDA;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: #333;
}

.page-promotions-new-user-bonus__terms-list li strong {
  color: #0A192F;
}

/* Why Choose Section */
.page-promotions-new-user-bonus__why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-new-user-bonus__why-choose-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(100, 255, 218, 0.2);
  transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus__why-choose-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-promotions-new-user-bonus__why-choose-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(100, 255, 218, 0.6));
}

.page-promotions-new-user-bonus__why-choose-title {
  font-size: 1.4em;
  color: #64FFDA;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__why-choose-text {
  color: #E0E6F0;
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-promotions-new-user-bonus__faq-item {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.page-promotions-new-user-bonus__faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus__faq-question {
  font-size: 1.25em;
  color: #0A192F;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #64FFDA;
    transition: transform 0.3s ease;
}

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

.page-promotions-new-user-bonus__faq-answer {
  font-size: 1.05em;
  color: #555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-promotions-new-user-bonus__faq-answer.active {
  display: block;
}

/* CTA Section */
.page-promotions-new-user-bonus__cta-section {
  background-color: #64FFDA;
  padding: 80px 0;
  text-align: center;
  color: #0A192F;
}

.page-promotions-new-user-bonus__cta-content .page-promotions-new-user-bonus__section-title {
  color: #0A192F;
}

.page-promotions-new-user-bonus__cta-content .page-promotions-new-user-bonus__section-description {
  color: #333;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-new-user-bonus__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__hero-section {
    padding: 80px 0;
  }
  .page-promotions-new-user-bonus__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-new-user-bonus__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-new-user-bonus__hero-actions {
    flex-direction: column;
  }
  .page-promotions-new-user-bonus__btn {
    width: 80%;
    margin: 5px auto;
  }
  .page-promotions-new-user-bonus__section-spacing {
    padding: 40px 0;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user-bonus__benefits-grid, .page-promotions-new-user-bonus__steps-grid, .page-promotions-new-user-bonus__why-choose-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-new-user-bonus__terms-list, .page-promotions-new-user-bonus__faq-list {
      padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user-bonus__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-new-user-bonus__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 1.5em;
  }
  .page-promotions-new-user-bonus__section-description {
    font-size: 0.95em;
  }
  .page-promotions-new-user-bonus__benefit-icon, .page-promotions-new-user-bonus__why-choose-icon {
      width: 50px;
      height: 50px;
  }
  .page-promotions-new-user-bonus__step-number {
      width: 60px;
      height: 60px;
      font-size: 2.5em;
  }
}