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

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

/* Hero Section */
.page-promotions-welcome-bonus__hero-section {
  background: linear-gradient(135deg, #007bff, #4da3ff);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.page-promotions-welcome-bonus__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Buttons */
.page-promotions-welcome-bonus__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin: 10px;
  cursor: pointer;
}

.page-promotions-welcome-bonus__btn--primary {
  background-color: #ffc107;
  color: #000;
  border: 2px solid #ffc107;
}

.page-promotions-welcome-bonus__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-welcome-bonus__btn--secondary:hover {
  background-color: #ffc107;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Content Sections */
.page-promotions-welcome-bonus__content-section {
  padding: 60px 0;
  background-color: #fff;
  border-radius: 20px;
  margin-top: -30px;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.page-promotions-welcome-bonus__section-title {
  font-size: 2.2em;
  color: #007bff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-welcome-bonus__section-title--spacing {
  margin-top: 60px;
}

.page-promotions-welcome-bonus__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555;
}

/* Feature Grid */
.page-promotions-welcome-bonus__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-welcome-bonus__feature-item {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-promotions-welcome-bonus__feature-item:hover {
  transform: translateY(-5px);
}

.page-promotions-welcome-bonus__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promotions-welcome-bonus__feature-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus__feature-description {
  color: #666;
  margin-bottom: 20px;
}

.page-promotions-welcome-bonus__list {
  list-style: disc;
  text-align: left;
  margin-left: 20px;
  color: #555;
  margin-bottom: 20px;
}

.page-promotions-welcome-bonus__list li {
  margin-bottom: 8px;
}

/* Content Block (Image + Text) */
.page-promotions-welcome-bonus__content-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  background-color: #f0f7ff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions-welcome-bonus__content-text {
  flex: 1;
  min-width: 300px;
}

.page-promotions-welcome-bonus__sub-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus__ordered-list {
  list-style: decimal;
  text-align: left;
  margin-left: 25px;
  color: #555;
  margin-bottom: 20px;
}

.page-promotions-welcome-bonus__ordered-list li {
  margin-bottom: 10px;
}

.page-promotions-welcome-bonus__content-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

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

/* Terms Grid */
.page-promotions-welcome-bonus__terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-welcome-bonus__terms-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #007bff;
}

.page-promotions-welcome-bonus__terms-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-promotions-welcome-bonus__terms-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-promotions-welcome-bonus__terms-description {
  color: #666;
}

/* Tips List */
.page-promotions-welcome-bonus__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-welcome-bonus__tips-list li {
  background-color: #f0f7ff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-promotions-welcome-bonus__tips-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promotions-welcome-bonus__tips-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
}

/* Advantage Grid */
.page-promotions-welcome-bonus__advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-welcome-bonus__advantage-item {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-welcome-bonus__advantage-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  object-fit: contain;
}

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

/* CTA Group */
.page-promotions-welcome-bonus__cta-group {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 40px;
}

/* FAQ Section */
.page-promotions-welcome-bonus__faq-container {
  margin-top: 40px;
  border-top: 1px solid #eee;
  padding-top: 30px;
}

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

.page-promotions-welcome-bonus__faq-question {
  font-size: 1.3em;
  color: #007bff;
  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;
  font-weight: bold;
  color: #ffc107;
}

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

.page-promotions-welcome-bonus__faq-answer {
  color: #555;
  display: none;
  padding-top: 10px;
  border-top: 1px dashed #eee;
  margin-top: 10px;
}

.page-promotions-welcome-bonus__faq-question.active + .page-promotions-welcome-bonus__faq-answer {
  display: block;
}

.page-promotions-welcome-bonus__btn--faq {
  margin-top: 30px;
}

/* Final CTA Section */
.page-promotions-welcome-bonus__final-cta-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  margin-top: 50px;
}

.page-promotions-welcome-bonus__final-cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-promotions-welcome-bonus__final-cta-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-welcome-bonus__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-welcome-bonus__section-title {
    font-size: 1.8em;
  }
  .page-promotions-welcome-bonus__content-block {
    flex-direction: column;
  }
  .page-promotions-welcome-bonus__content-text, .page-promotions-welcome-bonus__content-image-wrapper {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promotions-welcome-bonus__hero-section {
    padding: 60px 0;
  }
  .page-promotions-welcome-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-welcome-bonus__hero-description {
    font-size: 1em;
  }
  .page-promotions-welcome-bonus__section-title {
    font-size: 1.6em;
  }
  .page-promotions-welcome-bonus__feature-grid, .page-promotions-welcome-bonus__terms-grid, .page-promotions-welcome-bonus__tips-list, .page-promotions-welcome-bonus__advantage-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-welcome-bonus__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promotions-welcome-bonus__final-cta-title {
    font-size: 2em;
  }
  .page-promotions-welcome-bonus__final-cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-welcome-bonus__hero-section {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
  .page-promotions-welcome-bonus__content-section {
    margin-top: -15px;
    border-radius: 15px;
  }
  .page-promotions-welcome-bonus__hero-title {
    font-size: 1.5em;
  }
  .page-promotions-welcome-bonus__section-title {
    font-size: 1.4em;
  }
  .page-promotions-welcome-bonus__feature-item, .page-promotions-welcome-bonus__terms-item, .page-promotions-welcome-bonus__tips-list li, .page-promotions-welcome-bonus__advantage-item {
    padding: 20px;
  }
  .page-promotions-welcome-bonus__final-cta-section {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
  .page-promotions-welcome-bonus__final-cta-title {
    font-size: 1.8em;
  }
}