.page-promotions-welcome-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #f8f8f8;
}

.page-promotions-welcome-bonus__dark-bg {
  background-color: #1A2B5B;
  color: #ffffff;
}

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

.page-promotions-welcome-bonus__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.page-promotions-welcome-bonus__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}

.page-promotions-welcome-bonus__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-promotions-welcome-bonus__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promotions-welcome-bonus__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-transform: uppercase;
  font-weight: bold;
}

.page-promotions-welcome-bonus__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-promotions-welcome-bonus__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions-welcome-bonus__btn-primary,
.page-promotions-welcome-bonus__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-promotions-welcome-bonus__btn-primary {
  background-color: #FFD700;
  color: #1A2B5B;
  border: 2px solid #FFD700;
}

.page-promotions-welcome-bonus__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-promotions-welcome-bonus__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions-welcome-bonus__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A2B5B;
}

.page-promotions-welcome-bonus__section {
  padding: 60px 20px;
  text-align: center;
}

.page-promotions-welcome-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-promotions-welcome-bonus__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: inherit;
  font-weight: bold;
}

.page-promotions-welcome-bonus__section-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: inherit;
}

.page-promotions-welcome-bonus__features-grid,
.page-promotions-welcome-bonus__types-grid,
.page-promotions-welcome-bonus__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-promotions-welcome-bonus__feature-item,
.page-promotions-welcome-bonus__card,
.page-promotions-welcome-bonus__step-item {
  background-color: #1A2B5B;
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-welcome-bonus__feature-item:hover,
.page-promotions-welcome-bonus__card:hover,
.page-promotions-welcome-bonus__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus__feature-title,
.page-promotions-welcome-bonus__card-title,
.page-promotions-welcome-bonus__step-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-promotions-welcome-bonus__feature-text,
.page-promotions-welcome-bonus__card-text,
.page-promotions-welcome-bonus__step-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-promotions-welcome-bonus__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-promotions-welcome-bonus__step-number {
  background-color: #FFD700;
  color: #1A2B5B;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-promotions-welcome-bonus__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-welcome-bonus__cta-center {
  margin-top: 40px;
}

.page-promotions-welcome-bonus__terms-list,
.page-promotions-welcome-bonus__responsible-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions-welcome-bonus__list-item {
  background-color: #0c1a3b; /* Slightly lighter dark blue */
  color: #ffffff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-welcome-bonus__list-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #FFD700;
}

.page-promotions-welcome-bonus__list-text {
  font-size: 0.95em;
  color: #f0f0f0;
}

.page-promotions-welcome-bonus__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-promotions-welcome-bonus__faq-item {
  background-color: #0c1a3b;
  color: #ffffff;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-welcome-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #1A2B5B;
  color: #FFD700;
  transition: background-color 0.3s ease;
}

.page-promotions-welcome-bonus__faq-question:hover {
  background-color: #2b3d6e;
}

.page-promotions-welcome-bonus__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-promotions-welcome-bonus__faq-item.active .page-promotions-welcome-bonus__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions-welcome-bonus__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-promotions-welcome-bonus__faq-item.active .page-promotions-welcome-bonus__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to accommodate content */
  padding: 15px 25px;
}

.page-promotions-welcome-bonus__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

.page-promotions-welcome-bonus__final-cta .page-promotions-welcome-bonus__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions-welcome-bonus__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-welcome-bonus__hero-title {
    font-size: 3em;
  }
  .page-promotions-welcome-bonus__hero-description {
    font-size: 1.2em;
  }
  .page-promotions-welcome-bonus__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promotions-welcome-bonus {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions-welcome-bonus__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-promotions-welcome-bonus__hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 30px 15px;
    background-color: rgba(26, 43, 91, 0.85); /* Darken overlay for text */
    width: 100%;
    box-sizing: border-box;
  }

  .page-promotions-welcome-bonus__hero-image {
    filter: brightness(0.5); /* Further darken image on mobile */
  }

  .page-promotions-welcome-bonus__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-promotions-welcome-bonus__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-promotions-welcome-bonus__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-welcome-bonus__btn-primary,
  .page-promotions-welcome-bonus__btn-secondary,
  .page-promotions-welcome-bonus a[class*="button"],
  .page-promotions-welcome-bonus a[class*="btn"] {
    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-welcome-bonus__cta-buttons,
  .page-promotions-welcome-bonus__button-group,
  .page-promotions-welcome-bonus__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-promotions-welcome-bonus__section {
    padding: 40px 15px;
  }

  .page-promotions-welcome-bonus__container {
    padding: 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-promotions-welcome-bonus__section-description {
    font-size: 0.9em;
  }

  .page-promotions-welcome-bonus__features-grid,
  .page-promotions-welcome-bonus__types-grid,
  .page-promotions-welcome-bonus__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-welcome-bonus__feature-item,
  .page-promotions-welcome-bonus__card,
  .page-promotions-welcome-bonus__step-item {
    padding: 20px;
  }

  .page-promotions-welcome-bonus__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 30px auto;
  }

  .page-promotions-welcome-bonus__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-promotions-welcome-bonus__faq-answer {
    padding: 0 20px;
  }

  .page-promotions-welcome-bonus__faq-item.active .page-promotions-welcome-bonus__faq-answer {
    padding: 10px 20px;
  }

  .page-promotions-welcome-bonus__btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  /* Ensure all image containers are responsive */
  .page-promotions-welcome-bonus__hero-image-wrapper,
  .page-promotions-welcome-bonus__section,
  .page-promotions-welcome-bonus__why-choose,
  .page-promotions-welcome-bonus__how-to-claim,
  .page-promotions-welcome-bonus__bonus-types,
  .page-promotions-welcome-bonus__terms-conditions,
  .page-promotions-welcome-bonus__responsible-gambling,
  .page-promotions-welcome-bonus__faq-section,
  .page-promotions-welcome-bonus__final-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}