.page-promotions-welcome-bonus {
  font-family: 'Arial', sans-serif;
  color: #E5E5E5; /* Light grey for text on dark background */
  background-color: #1A202C; /* Primary dark background */
  line-height: 1.6;
}

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

.page-promotions-welcome-bonus__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a4a6e 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-welcome-bonus__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-welcome-bonus__hero-subtitle {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 40px;
}

.page-promotions-welcome-bonus__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-promotions-welcome-bonus__btn--primary {
  background-color: #FFD700; /* Gold primary button */
  color: #1A202C;
}

.page-promotions-welcome-bonus__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promotions-welcome-bonus__btn--secondary {
  background-color: #3A4750; /* Darker grey secondary button */
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions-welcome-bonus__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-promotions-welcome-bonus__hero-image-wrapper {
  margin-top: 50px;
}

.page-promotions-welcome-bonus__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions-welcome-bonus__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
  font-weight: bold;
}

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

.page-promotions-welcome-bonus__about-bonus-section,
.page-promotions-welcome-bonus__how-to-claim-section,
.page-promotions-welcome-bonus__terms-conditions-section,
.page-promotions-welcome-bonus__why-choose-section,
.page-promotions-welcome-bonus__faq-section,
.page-promotions-welcome-bonus__responsible-gambling-section {
  padding: 60px 0;
  background-color: #222B36; /* Slightly lighter dark background for sections */
  margin-bottom: 20px;
}

.page-promotions-welcome-bonus__about-bonus-section {
  background-color: #1A202C;
}

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

.page-promotions-welcome-bonus__feature-item,
.page-promotions-welcome-bonus__step-item,
.page-promotions-welcome-bonus__advantage-item {
  background-color: #2D3748; /* Dark grey card background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions-welcome-bonus__feature-icon,
.page-promotions-welcome-bonus__advantage-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-promotions-welcome-bonus__feature-title,
.page-promotions-welcome-bonus__advantage-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-welcome-bonus__feature-text,
.page-promotions-welcome-bonus__advantage-text {
  color: #C0C0C0;
  font-size: 1em;
}

.page-promotions-welcome-bonus__step-number {
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #1A202C;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

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

.page-promotions-welcome-bonus__step-text {
  color: #C0C0C0;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-promotions-welcome-bonus__image-block {
  margin-top: 60px;
  text-align: center;
}

.page-promotions-welcome-bonus__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-promotions-welcome-bonus__terms-list li,
.page-promotions-welcome-bonus__responsible-list li {
  background-color: #2D3748;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.05em;
  color: #E0E0E0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-welcome-bonus__list-highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-promotions-welcome-bonus__note {
  font-style: italic;
  color: #A0A0A0;
  margin-top: 30px;
}

.page-promotions-welcome-bonus__cta-block {
  background-color: #1A202C;
  border-radius: 15px;
  padding: 50px;
  text-align: center;
  margin-top: 80px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.page-promotions-welcome-bonus__cta-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-welcome-bonus__cta-text {
  font-size: 1.2em;
  color: #FFFFFF;
  margin-bottom: 40px;
}

.page-promotions-welcome-bonus__cta-image {
  max-width: 80%;
  height: auto;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus__faq-item {
  background-color: #2D3748;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-promotions-welcome-bonus__faq-answer {
  font-size: 1em;
  color: #C0C0C0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
  padding-top: 0;
}

.page-promotions-welcome-bonus__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content length */
  opacity: 1;
  padding-top: 15px;
}

.page-promotions-welcome-bonus__responsible-gambling-section {
  background-color: #1A202C;
}

.text-highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-welcome-bonus__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-welcome-bonus__hero-subtitle {
    font-size: 1.3em;
  }
  .page-promotions-welcome-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-welcome-bonus__features-grid,
  .page-promotions-welcome-bonus__steps-grid,
  .page-promotions-welcome-bonus__advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-promotions-welcome-bonus__cta-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-promotions-welcome-bonus__hero-section {
    padding: 80px 0 50px;
  }
  .page-promotions-welcome-bonus__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-welcome-bonus__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-welcome-bonus__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-welcome-bonus__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-promotions-welcome-bonus__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promotions-welcome-bonus__about-bonus-section,
  .page-promotions-welcome-bonus__how-to-claim-section,
  .page-promotions-welcome-bonus__terms-conditions-section,
  .page-promotions-welcome-bonus__why-choose-section,
  .page-promotions-welcome-bonus__faq-section,
  .page-promotions-welcome-bonus__responsible-gambling-section {
    padding: 40px 0;
  }
  .page-promotions-welcome-bonus__features-grid,
  .page-promotions-welcome-bonus__steps-grid,
  .page-promotions-welcome-bonus__advantages-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-welcome-bonus__feature-item,
  .page-promotions-welcome-bonus__step-item,
  .page-promotions-welcome-bonus__advantage-item {
    padding: 25px;
  }
  .page-promotions-welcome-bonus__cta-block {
    padding: 40px;
    margin-top: 60px;
  }
  .page-promotions-welcome-bonus__cta-title {
    font-size: 1.5em;
  }
  .page-promotions-welcome-bonus__cta-text {
    font-size: 1em;
  }
  .page-promotions-welcome-bonus__faq-question {
    font-size: 1.1em;
  }
  .page-promotions-welcome-bonus__terms-list li,
  .page-promotions-welcome-bonus__responsible-list li {
    font-size: 0.95em;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-welcome-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-welcome-bonus__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-welcome-bonus__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promotions-welcome-bonus__section-title {
    font-size: 1.5em;
  }
  .page-promotions-welcome-bonus__feature-title,
  .page-promotions-welcome-bonus__advantage-title {
    font-size: 1.2em;
  }
  .page-promotions-welcome-bonus__step-title {
    font-size: 1.3em;
  }
  .page-promotions-welcome-bonus__faq-question {
    font-size: 1em;
  }
  .page-promotions-welcome-bonus__cta-title {
    font-size: 1.3em;
  }
}