.page-promo-welcome-bonus {
  background-color: #FFFFFF;
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promo-welcome-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px;
  min-height: 600px;
  overflow: hidden;
}

.page-promo-welcome-bonus__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

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

.page-promo-welcome-bonus__hero-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  max-width: 900px;
}

.page-promo-welcome-bonus__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promo-welcome-bonus__intro-text {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.page-promo-welcome-bonus__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-promo-welcome-bonus__button--register {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-promo-welcome-bonus__button--register:hover {
  background-color: #FCBC45;
  border-color: #FCBC45;
  transform: translateY(-2px);
}

.page-promo-welcome-bonus__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promo-welcome-bonus__button--login:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.page-promo-welcome-bonus__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-promo-welcome-bonus__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555555;
}

.page-promo-welcome-bonus__bonus-benefits,
.page-promo-welcome-bonus__how-to-claim,
.page-promo-welcome-bonus__terms-conditions,
.page-promo-welcome-bonus__why-plus-ph,
.page-promo-welcome-bonus__responsible-gaming,
.page-promo-welcome-bonus__faq,
.page-promo-welcome-bonus__final-cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-promo-welcome-bonus__benefits-grid,
.page-promo-welcome-bonus__steps-grid,
.page-promo-welcome-bonus__terms-list,
.page-promo-welcome-bonus__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo-welcome-bonus__benefit-card,
.page-promo-welcome-bonus__step-card,
.page-promo-welcome-bonus__term-item,
.page-promo-welcome-bonus__feature-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo-welcome-bonus__benefit-card:hover,
.page-promo-welcome-bonus__step-card:hover,
.page-promo-welcome-bonus__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-promo-welcome-bonus__card-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-promo-welcome-bonus__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FCBC45;
  margin-bottom: 15px;
  background-color: #000000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-promo-welcome-bonus__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: auto; /* Push button to bottom */
  background-color: #000000;
  color: #FFFFFF;
  border: 1px solid #000000;
}

.page-promo-welcome-bonus__button--small:hover {
  background-color: #FCBC45;
  border-color: #FCBC45;
  color: #000000;
}

.page-promo-welcome-bonus__step-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-promo-welcome-bonus__image-container {
  text-align: center;
  margin-top: 50px;
}

.page-promo-welcome-bonus__image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-promo-welcome-bonus__link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  margin-top: auto;
  transition: color 0.3s ease;
}

.page-promo-welcome-bonus__link:hover {
  color: #000000;
  text-decoration: underline;
}

.page-promo-welcome-bonus__responsible-gaming-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo-welcome-bonus__responsible-gaming-list li {
  background-color: #f0f0f0;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 1.1em;
  color: #333333;
}

.page-promo-welcome-bonus__responsible-gaming-list li::before {
  content: '✓';
  color: #000000;
  font-weight: bold;
  margin-right: 10px;
}

.page-promo-welcome-bonus__button--outline {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
  margin-top: 30px;
  padding: 12px 25px;
  font-size: 1em;
}

.page-promo-welcome-bonus__button--outline:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.page-promo-welcome-bonus__faq-item {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promo-welcome-bonus__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promo-welcome-bonus__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-promo-welcome-bonus__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promo-welcome-bonus__faq-answer {
  font-size: 1em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-promo-welcome-bonus__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  margin-top: 10px;
}

.page-promo-welcome-bonus__final-cta {
  text-align: center;
  background-color: #000000;
  padding: 80px 20px;
  border-radius: 15px;
  color: #FFFFFF;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-promo-welcome-bonus__final-cta .page-promo-welcome-bonus__section-title,
.page-promo-welcome-bonus__final-cta .page-promo-welcome-bonus__section-description {
  color: #FFFFFF;
}

.page-promo-welcome-bonus__button--large {
  padding: 18px 40px;
  font-size: 1.2em;
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promo-welcome-bonus__button--large:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #000000;
}

.page-promo-welcome-bonus__cta-image {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

.page-promo-welcome-bonus__cta-image img {
  width: 400px;
  height: auto;
  min-width: 200px;
  min-height: 200px;
  object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo-welcome-bonus__main-title {
    font-size: 3em;
  }
  .page-promo-welcome-bonus__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promo-welcome-bonus__main-title {
    font-size: 2.5em;
  }
  .page-promo-welcome-bonus__intro-text {
    font-size: 1.1em;
  }
  .page-promo-welcome-bonus__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo-welcome-bonus__button {
    width: 100%;
  }
  .page-promo-welcome-bonus__section-title {
    font-size: 2em;
  }
  .page-promo-welcome-bonus__hero-section {
    min-height: 500px;
    padding: 60px 15px 30px;
  }
  .page-promo-welcome-bonus__bonus-benefits,
  .page-promo-welcome-bonus__how-to-claim,
  .page-promo-welcome-bonus__terms-conditions,
  .page-promo-welcome-bonus__why-plus-ph,
  .page-promo-welcome-bonus__responsible-gaming,
  .page-promo-welcome-bonus__faq,
  .page-promo-welcome-bonus__final-cta {
    padding: 40px 15px;
  }
  .page-promo-welcome-bonus__benefits-grid,
  .page-promo-welcome-bonus__steps-grid,
  .page-promo-welcome-bonus__terms-list,
  .page-promo-welcome-bonus__features-grid {
    grid-template-columns: 1fr;
  }
  .page-promo-welcome-bonus__step-card img,
  .page-promo-welcome-bonus__image-container img,
  .page-promo-welcome-bonus__cta-image img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
  }
  .page-promo-welcome-bonus__cta-image {
    position: relative;
    width: 100%;
    text-align: center;
    right: auto;
    bottom: auto;
    margin-top: 30px;
  }
  .page-promo-welcome-bonus__cta-image img {
    width: 100%;
    max-width: 400px; /* Constrain image width on mobile */
    opacity: 0.5;
  }
}

@media (max-width: 480px) {
  .page-promo-welcome-bonus__main-title {
    font-size: 2em;
  }
  .page-promo-welcome-bonus__intro-text {
    font-size: 1em;
  }
  .page-promo-welcome-bonus__button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-promo-welcome-bonus__section-title {
    font-size: 1.8em;
  }
  .page-promo-welcome-bonus__card-title {
    font-size: 1.4em;
  }
  .page-promo-welcome-bonus__faq-question {
    font-size: 1.1em;
  }
}