.page-promo-welcome-bonus-details {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-promo-welcome-bonus-details__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-promo-welcome-bonus-details__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding-bottom: 60px; /* Adjust padding as needed, initial padding-top is from main element */
}

.page-promo-welcome-bonus-details__hero-image {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.6); /* Darken image slightly for text readability, not changing color */
}

.page-promo-welcome-bonus-details__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  width: 90%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-promo-welcome-bonus-details__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-promo-welcome-bonus-details__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-promo-welcome-bonus-details__hero-cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-promo-welcome-bonus-details__hero-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promo-welcome-bonus-details__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promo-welcome-bonus-details__sub-section-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-promo-welcome-bonus-details__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-promo-welcome-bonus-details__image-content {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px; /* Ensure images are not too small */
}

.page-promo-welcome-bonus-details__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promo-welcome-bonus-details__list-item {
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid #FFD700;
  font-size: 1.1em;
}

.page-promo-welcome-bonus-details__list-item strong {
  color: #FFD700;
}

.page-promo-welcome-bonus-details__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-bottom: 40px;
}

.page-promo-welcome-bonus-details__steps-item {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promo-welcome-bonus-details__steps-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: -20px;
  top: 20px;
  background-color: #FFD700;
  color: #1A1A1A;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3em;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-promo-welcome-bonus-details__steps-heading {
  color: #FFD700;
  font-size: 1.6em;
  margin-left: 30px; /* Space for the counter */
  margin-bottom: 10px;
}

.page-promo-welcome-bonus-details__steps-description {
  font-size: 1.05em;
  margin-left: 30px; /* Space for the counter */
  color: #e0e0e0;
}

.page-promo-welcome-bonus-details__faq-item {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promo-welcome-bonus-details__faq-question {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-promo-welcome-bonus-details__faq-answer {
  font-size: 1.05em;
  color: #e0e0e0;
}

.page-promo-welcome-bonus-details__cta-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A1A1A, #0D0D0D);
  border-top: 3px solid #FFD700;
  margin-top: 60px;
}

.page-promo-welcome-bonus-details__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  margin: 15px;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promo-welcome-bonus-details__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-promo-welcome-bonus-details__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
  box-shadow: none;
}

.page-promo-welcome-bonus-details__cta-button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
}

.page-promo-welcome-bonus-details__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo-welcome-bonus-details__card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo-welcome-bonus-details__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 215, 0, 0.3);
}

.page-promo-welcome-bonus-details__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promo-welcome-bonus-details__card-link {
  color: #FFD700;
  text-decoration: none;
}

.page-promo-welcome-bonus-details__card-link:hover {
  text-decoration: underline;
}

.page-promo-welcome-bonus-details__card-description {
  color: #e0e0e0;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-promo-welcome-bonus-details__card-button {
  display: inline-block;
  background-color: #1A1A1A;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  border: 1px solid #FFD700;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promo-welcome-bonus-details__card-button:hover {
  background-color: #FFD700;
  color: #1A1A1A;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-promo-welcome-bonus-details__hero-title {
    font-size: 2.5em;
  }

  .page-promo-welcome-bonus-details__hero-description {
    font-size: 1em;
  }

  .page-promo-welcome-bonus-details__hero-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promo-welcome-bonus-details__section-title {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .page-promo-welcome-bonus-details__sub-section-title {
    font-size: 1.5em;
  }

  .page-promo-welcome-bonus-details__list-item,
  .page-promo-welcome-bonus-details__steps-item,
  .page-promo-welcome-bonus-details__faq-item {
    padding: 15px;
    font-size: 1em;
  }

  .page-promo-welcome-bonus-details__steps-heading {
    font-size: 1.4em;
  }

  .page-promo-welcome-bonus-details__steps-item::before {
    left: 10px;
    top: 15px;
    width: 30px;
    height: 30px;
    font-size: 1.1em;
  }

  .page-promo-welcome-bonus-details__steps-heading,
  .page-promo-welcome-bonus-details__steps-description {
    margin-left: 45px;
  }

  .page-promo-welcome-bonus-details__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
    margin: 10px;
  }

  .page-promo-welcome-bonus-details__card-grid {
    grid-template-columns: 1fr;
  }

  /* Ensure images do not overflow on mobile */
  .page-promo-welcome-bonus-details__container img,
  .page-promo-welcome-bonus-details__image-content,
  .page-promo-welcome-bonus-details__hero-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo-welcome-bonus-details__hero-title {
    font-size: 1.8em;
  }

  .page-promo-welcome-bonus-details__hero-description {
    font-size: 0.9em;
  }

  .page-promo-welcome-bonus-details__hero-cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-promo-welcome-bonus-details__section-title {
    font-size: 1.8em;
  }
}