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

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

.page-promotions-new-user-bonus__hero-section {
  background: linear-gradient(135deg, #003366 0%, #003d7a 50%, #00478e 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-promotions-new-user-bonus__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

.page-promotions-new-user-bonus__cta-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-promotions-new-user-bonus__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.3;
  max-width: 300px;
  height: auto;
  z-index: 0;
}

.page-promotions-new-user-bonus__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-new-user-bonus__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-promotions-new-user-bonus__content-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-promotions-new-user-bonus__content-section:nth-of-type(even) {
  background-color: #fff;
}

.page-promotions-new-user-bonus__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
  text-align: justify;
}

.page-promotions-new-user-bonus__secondary-cta {
  display: inline-block;
  background-color: #003366;
  color: #FFCC00;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-promotions-new-user-bonus__secondary-cta:hover {
  background-color: #004488;
}

.page-promotions-new-user-bonus__subsection-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFCC00;
  padding-left: 15px;
}

.page-promotions-new-user-bonus__list,
.page-promotions-new-user-bonus__numbered-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promotions-new-user-bonus__list li,
.page-promotions-new-user-bonus__numbered-list li {
  background-color: #e6f2ff; /* Lighter blue for list items */
  border-left: 3px solid #003366;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.05em;
  color: #222;
}

.page-promotions-new-user-bonus__numbered-list li {
  counter-increment: custom-counter;
}

.page-promotions-new-user-bonus__numbered-list li::before {
  content: counter(custom-counter) ". ";
  font-weight: bold;
  color: #003366;
  margin-right: 10px;
}

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

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

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

.page-promotions-new-user-bonus__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

.page-promotions-new-user-bonus__feature-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__feature-description {
  font-size: 1em;
  color: #555;
}

.page-promotions-new-user-bonus__download-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-new-user-bonus__qr-code {
  text-align: center;
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-new-user-bonus__qr-image {
  width: 180px;
  height: 180px;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__qr-code p {
  font-size: 1.1em;
  color: #003366;
  font-weight: bold;
}

.page-promotions-new-user-bonus__download-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-promotions-new-user-bonus__app-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #003366;
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 250px;
}

.page-promotions-new-user-bonus__app-button--ios {
  background-color: #000;
}

.page-promotions-new-user-bonus__app-button--ios:hover {
  background-color: #333;
  transform: translateY(-3px);
}

.page-promotions-new-user-bonus__app-button--android {
  background-color: #3DDC84;
  color: #000;
}

.page-promotions-new-user-bonus__app-button--android:hover {
  background-color: #2fb66a;
  transform: translateY(-3px);
}

.page-promotions-new-user-bonus__app-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.page-promotions-new-user-bonus__faq-item {
  background-color: #f0f8ff;
  border: 1px solid #cceeff;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-promotions-new-user-bonus__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__faq-answer {
  font-size: 1em;
  color: #555;
}

.page-promotions-new-user-bonus__final-cta-section {
  background-color: #003366;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-new-user-bonus__final-cta-section .page-promotions-new-user-bonus__section-title {
  color: #FFCC00;
}

.page-promotions-new-user-bonus__final-cta-section .page-promotions-new-user-bonus__section-title::after {
  background-color: #fff;
}

.page-promotions-new-user-bonus__final-cta-section .page-promotions-new-user-bonus__text-block {
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-promotions-new-user-bonus__cta-button--large {
  padding: 20px 40px;
  font-size: 1.5em;
}

.page-promotions-new-user-bonus__cta-image {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.2;
  max-width: 350px;
  height: auto;
  z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promotions-new-user-bonus__hero-title {
    font-size: 2.5em;
  }

  .page-promotions-new-user-bonus__hero-subtitle {
    font-size: 1.1em;
  }

  .page-promotions-new-user-bonus__section-title {
    font-size: 2em;
  }

  .page-promotions-new-user-bonus__subsection-title {
    font-size: 1.5em;
  }

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

  .page-promotions-new-user-bonus__download-options {
    flex-direction: column;
  }

  .page-promotions-new-user-bonus__app-button {
    min-width: unset;
    width: 100%;
  }

  .page-promotions-new-user-bonus__cta-button--large {
    font-size: 1.2em;
    padding: 15px 30px;
  }

  .page-promotions-new-user-bonus__hero-image,
  .page-promotions-new-user-bonus__cta-image {
    display: none;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-bonus__hero-title {
    font-size: 2em;
  }

  .page-promotions-new-user-bonus__hero-subtitle {
    font-size: 1em;
  }

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

  .page-promotions-new-user-bonus__section-title {
    font-size: 1.8em;
  }

  .page-promotions-new-user-bonus__subsection-title {
    font-size: 1.3em;
  }

  .page-promotions-new-user-bonus__list li,
  .page-promotions-new-user-bonus__numbered-list li {
    font-size: 0.95em;
    padding: 12px 15px;
  }

  .page-promotions-new-user-bonus__qr-image {
    width: 150px;
    height: 150px;
  }

  .page-promotions-new-user-bonus__app-button {
    font-size: 1em;
    padding: 12px 20px;
  }

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