/* style/promotions-welcome-bonus.css */
.page-promotions-welcome-bonus {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

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

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

.page-promotions-welcome-bonus__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

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

.page-promotions-welcome-bonus__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-promotions-welcome-bonus__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A237E;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.page-promotions-welcome-bonus__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promotions-welcome-bonus__content-section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions-welcome-bonus__bg-light {
  background-color: #eef2f1;
}

.page-promotions-welcome-bonus__section-title {
  font-size: 2.5em;
  color: #1A237E;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.page-promotions-welcome-bonus__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-promotions-welcome-bonus__text-block {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #444;
}

.page-promotions-welcome-bonus__keyword {
  color: #1A237E;
  font-weight: bold;
}

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

.page-promotions-welcome-bonus__feature-item,
.page-promotions-welcome-bonus__step-item,
.page-promotions-welcome-bonus__reason-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-top: 5px solid #1A237E;
}

.page-promotions-welcome-bonus__feature-item:hover,
.page-promotions-welcome-bonus__step-item:hover,
.page-promotions-welcome-bonus__reason-item:hover {
  transform: translateY(-10px);
}

.page-promotions-welcome-bonus__feature-icon,
.page-promotions-welcome-bonus__reason-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.page-promotions-welcome-bonus__feature-title,
.page-promotions-welcome-bonus__reason-title {
  font-size: 1.6em;
  color: #1A237E;
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus__feature-description,
.page-promotions-welcome-bonus__reason-description {
  font-size: 1em;
  color: #555;
}

.page-promotions-welcome-bonus__step-number {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #1A237E;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-welcome-bonus__step-title {
  font-size: 1.8em;
  color: #1A237E;
  margin-bottom: 10px;
}

.page-promotions-welcome-bonus__step-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
}

.page-promotions-welcome-bonus__inline-cta {
  display: inline-block;
  background-color: #1A237E;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-promotions-welcome-bonus__inline-cta:hover {
  background-color: #3b429e;
}

.page-promotions-welcome-bonus__image-full-width {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 15px;
  margin-top: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions-welcome-bonus__list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 30px auto;
  text-align: left;
}

.page-promotions-welcome-bonus__list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  color: #444;
}

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

.page-promotions-welcome-bonus__faq-section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions-welcome-bonus__faq-item {
  background-color: #fff;
  border-radius: 15px;
  margin-bottom: 20px;
  padding: 25px 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
}

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

.page-promotions-welcome-bonus__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
  font-weight: bold;
}

.page-promotions-welcome-bonus__faq-question.active::after {
  content: '-';
}

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

.page-promotions-welcome-bonus__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  margin-top: 15px;
}

.page-promotions-welcome-bonus__cta-banner {
  background: linear-gradient(90deg, #FFD700, #e6c200);
  color: #1A237E;
  padding: 80px 0;
  text-align: center;
  margin-top: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-promotions-welcome-bonus__cta-banner-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #1A237E;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-promotions-welcome-bonus__cta-banner-text {
  font-size: 1.4em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #333;
}

.page-promotions-welcome-bonus__cta-button--large {
  padding: 18px 50px;
  font-size: 1.5em;
  background-color: #1A237E;
  color: #FFD700;
}

.page-promotions-welcome-bonus__cta-button--large:hover {
  background-color: #3b429e;
  color: #fff;
}

@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__reason-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions-welcome-bonus__cta-banner-title {
    font-size: 2.5em;
  }
  .page-promotions-welcome-bonus__cta-banner-text {
    font-size: 1.2em;
  }
  .page-promotions-welcome-bonus__cta-button--large {
    font-size: 1.3em;
    padding: 15px 40px;
  }
}

@media (max-width: 768px) {
  .page-promotions-welcome-bonus__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-welcome-bonus__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-welcome-bonus__cta-button {
    font-size: 1.1em;
    padding: 12px 30px;
  }
  .page-promotions-welcome-bonus__section-title {
    font-size: 1.8em;
  }
  .page-promotions-welcome-bonus__feature-item,
  .page-promotions-welcome-bonus__step-item,
  .page-promotions-welcome-bonus__reason-item {
    padding: 20px;
  }
  .page-promotions-welcome-bonus__cta-banner-title {
    font-size: 2em;
  }
  .page-promotions-welcome-bonus__cta-banner-text {
    font-size: 1em;
  }
  .page-promotions-welcome-bonus__cta-button--large {
    font-size: 1.1em;
    padding: 12px 30px;
  }
}

@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__cta-button {
    font-size: 1em;
    padding: 10px 25px;
  }
  .page-promotions-welcome-bonus__section-title {
    font-size: 1.5em;
  }
  .page-promotions-welcome-bonus__text-block {
    font-size: 0.95em;
  }
  .page-promotions-welcome-bonus__features-grid,
  .page-promotions-welcome-bonus__steps-grid,
  .page-promotions-welcome-bonus__reason-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-welcome-bonus__cta-banner-title {
    font-size: 1.8em;
  }
  .page-promotions-welcome-bonus__cta-banner-text {
    font-size: 0.95em;
  }
  .page-promotions-welcome-bonus__cta-button--large {
    font-size: 1em;
    padding: 10px 25px;
  }
  .page-promotions-welcome-bonus__list li {
    font-size: 1em;
    padding: 15px;
  }
  .page-promotions-welcome-bonus__faq-question {
    font-size: 1.2em;
  }
  .page-promotions-welcome-bonus__faq-answer {
    font-size: 0.95em;
  }
}