.page-promotions-new-user-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Inherit from body via shared.css */
}

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

.page-promotions-new-user-bonus__container--center {
  text-align: center;
}

.page-promotions-new-user-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding: var(--header-offset, 120px) 20px 60px;
  background-color: #26A9E0;
  color: #FFFFFF;
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

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

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

.page-promotions-new-user-bonus__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #FFFFFF;
}

.page-promotions-new-user-bonus__cta-button {
  display: inline-block;
  background-color: #EA7C07; /* Login color for primary CTA */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
}

.page-promotions-new-user-bonus__cta-button:hover {
  background-color: #d16b06;
}

.page-promotions-new-user-bonus__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0;
}

.page-promotions-new-user-bonus__dark-bg {
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 60px 0;
}

.page-promotions-new-user-bonus__light-bg {
  background-color: #FFFFFF;
  color: #333333;
  padding: 60px 0;
}

.page-promotions-new-user-bonus__text-block {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__overview-section .page-promotions-new-user-bonus__section-title {
  color: #FFFFFF;
}

.page-promotions-new-user-bonus__overview-section .page-promotions-new-user-bonus__text-block {
  color: #FFFFFF;
}

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

.page-promotions-new-user-bonus__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #FFFFFF;
}

.page-promotions-new-user-bonus__feature-item img {
  width: 100%; /* Ensure images fill card width */
  height: auto;
  max-width: 400px; /* Example, adjust as needed */
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary {
  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, border-color 0.3s ease, color 0.3s ease;
  margin: 10px;
}

.page-promotions-new-user-bonus__btn-primary {
  background-color: #EA7C07;
  color: #FFFFFF;
  border: 2px solid transparent;
}

.page-promotions-new-user-bonus__btn-primary:hover {
  background-color: #d16b06;
}

.page-promotions-new-user-bonus__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-promotions-new-user-bonus__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-promotions-new-user-bonus__registration-guide {
  padding: 60px 0;
  background-color: #FFFFFF;
  color: #333333;
}

.page-promotions-new-user-bonus__registration-guide .page-promotions-new-user-bonus__section-title {
  color: #26A9E0;
}

.page-promotions-new-user-bonus__registration-guide .page-promotions-new-user-bonus__text-block {
  color: #333333;
}

.page-promotions-new-user-bonus__steps-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-bottom: 50px;
}

.page-promotions-new-user-bonus__steps-list li {
  position: relative;
  padding-left: 60px;
  margin-bottom: 30px;
  text-align: left;
  color: #333333;
}

.page-promotions-new-user-bonus__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #26A9E0;
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-promotions-new-user-bonus__step-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
}

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

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

.page-promotions-new-user-bonus__benefit-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-promotions-new-user-bonus__benefit-card .page-promotions-new-user-bonus__benefit-title {
  color: #26A9E0;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__faq-section {
  padding: 60px 0;
  background-color: #f8f8f8;
  color: #333333;
}

.page-promotions-new-user-bonus__faq-section .page-promotions-new-user-bonus__section-title {
  color: #26A9E0;
}

.page-promotions-new-user-bonus__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-new-user-bonus__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #26A9E0;
  list-style: none;
}

.page-promotions-new-user-bonus__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #26A9E0;
}

.page-promotions-new-user-bonus__faq-answer {
  padding: 0 20px 20px;
  font-size: 1.1em;
  color: #555555;
}

.page-promotions-new-user-bonus__call-to-action {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-new-user-bonus__call-to-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(38, 169, 224, 0.8), rgba(60, 180, 240, 0.8));
  z-index: 0;
}

.page-promotions-new-user-bonus__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.page-promotions-new-user-bonus__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.page-promotions-new-user-bonus__cta-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.page-promotions-new-user-bonus__cta-illustration {
  margin-top: 40px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

/* Image specific styles */
.page-promotions-new-user-bonus img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

@media (max-width: 768px) {
  .page-promotions-new-user-bonus {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promotions-new-user-bonus__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    min-height: 500px;
  }
  .page-promotions-new-user-bonus__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 1em;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user-bonus__cta-title {
    font-size: 2em;
  }
  .page-promotions-new-user-bonus__features-grid,
  .page-promotions-new-user-bonus__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-new-user-bonus__feature-item,
  .page-promotions-new-user-bonus__benefit-card {
    padding: 20px;
  }
  .page-promotions-new-user-bonus__steps-list li {
    padding-left: 50px;
  }
  .page-promotions-new-user-bonus__steps-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }
  .page-promotions-new-user-bonus__step-title {
    font-size: 1.2em;
  }
  .page-promotions-new-user-bonus__faq-question {
    font-size: 1.1em;
  }
  .page-promotions-new-user-bonus__faq-answer {
    font-size: 1em;
  }
  .page-promotions-new-user-bonus__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-new-user-bonus__cta-button,
  .page-promotions-new-user-bonus__btn-primary,
  .page-promotions-new-user-bonus__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-new-user-bonus__overview-section,
  .page-promotions-new-user-bonus__registration-guide,
  .page-promotions-new-user-bonus__benefits-section,
  .page-promotions-new-user-bonus__faq-section,
  .page-promotions-new-user-bonus__call-to-action {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
  /* Ensure all images in content area are responsive */
  .page-promotions-new-user-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions-new-user-bonus__section,
  .page-promotions-new-user-bonus__card,
  .page-promotions-new-user-bonus__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Ensure images are not smaller than 200px in content sections */
.page-promotions-new-user-bonus__feature-icon,
.page-promotions-new-user-bonus__guide-image,
.page-promotions-new-user-bonus__cta-illustration {
  min-width: 200px;
  min-height: 200px;
}

/* CSS for color contrast */
/* Default color for main content area, assuming dark shared body background */
.page-promotions-new-user-bonus {
  color: #f8f9fa; /* Light text for dark background */
}

/* Specific sections with defined backgrounds */
.page-promotions-new-user-bonus__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-promotions-new-user-bonus__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-promotions-new-user-bonus__registration-guide {
  background-color: #ffffff;
  color: #333333;
}

.page-promotions-new-user-bonus__faq-section {
  background-color: #f8f8f8;
  color: #333333;
}

/* Ensure headings in light sections are dark */
.page-promotions-new-user-bonus__registration-guide h2,
.page-promotions-new-user-bonus__registration-guide h3,
.page-promotions-new-user-bonus__benefits-section h2,
.page-promotions-new-user-bonus__benefits-section h3,
.page-promotions-new-user-bonus__faq-section h2,
.page-promotions-new-user-bonus__faq-section h3 {
  color: #26A9E0;
}

/* Ensure text in light sections is dark */
.page-promotions-new-user-bonus__registration-guide p,
.page-promotions-new-user-bonus__benefits-section p,
.page-promotions-new-user-bonus__faq-section p,
.page-promotions-new-user-bonus__faq-item {
  color: #555555;
}

/* Card backgrounds and text for contrast */
.page-promotions-new-user-bonus__benefit-card {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-promotions-new-user-bonus__faq-item {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
}

/* Button contrast */
.page-promotions-new-user-bonus__btn-primary {
  background: #EA7C07;
  color: #ffffff;
}

.page-promotions-new-user-bonus__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-promotions-new-user-bonus__cta-button {
  background-color: #EA7C07;
  color: #FFFFFF;
}