/* style/promotions-welcome-bonus.css */
.page-promotions-welcome-bonus {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0d123d; /* Darker blue for background */
  line-height: 1.6;
}

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

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

.page-promotions-welcome-bonus__section:nth-of-type(even) {
  background-color: #1A237E; /* Primary color for alternating sections */
}

.page-promotions-welcome-bonus__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 25px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #C0C0C0; /* Slightly lighter grey for paragraph text */
}

.page-promotions-welcome-bonus__text--emphasis {
  font-weight: bold;
  color: #FFD700;
}

/* Hero Section */
.page-promotions-welcome-bonus__hero {
  background: linear-gradient(135deg, #1A237E, #0d123d);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  text-align: left;
}

.page-promotions-welcome-bonus__hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  padding-left: 20px;
}

.page-promotions-welcome-bonus__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.page-promotions-welcome-bonus__hero-subtitle {
  font-size: 1.4em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-promotions-welcome-bonus__hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.page-promotions-welcome-bonus__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A237E; /* Dark blue */
  border: 2px solid #FFD700;
}

.page-promotions-welcome-bonus__btn--primary:hover {
  background-color: #e5c100; /* Slightly darker gold */
  color: #0d123d; /* Darker blue */
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus__btn--secondary {
  background-color: #1A237E; /* Dark blue */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-promotions-welcome-bonus__btn--secondary:hover {
  background-color: #2c3a93; /* Lighter dark blue */
  color: #e5c100; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus__btn--text {
  background: none;
  border: none;
  color: #FFD700;
  padding: 0;
  margin-top: 15px;
  text-decoration: underline;
  font-size: 1em;
}

.page-promotions-welcome-bonus__btn--text:hover {
  color: #e5c100;
  text-decoration: none;
}

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

.page-promotions-welcome-bonus__card {
  background-color: #2A317E; /* Slightly lighter primary */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-promotions-welcome-bonus__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-welcome-bonus__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

.page-promotions-welcome-bonus__card-description {
  font-size: 1em;
  color: #C0C0C0;
}

/* How to Claim Steps */
.page-promotions-welcome-bonus__steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: left;
}

.page-promotions-welcome-bonus__steps li {
  background-color: #1A237E;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-welcome-bonus__step-icon-wrapper {
  background-color: #FFD700;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-promotions-welcome-bonus__step-icon {
  width: 40px;
  height: 40px;
  filter: invert(10%) sepia(90%) saturate(7000%) hue-rotate(220deg) brightness(50%); /* Adjust to make icons dark on gold */
}

.page-promotions-welcome-bonus__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
}

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

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

.page-promotions-welcome-bonus__term-item {
  background-color: #2A317E;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-promotions-welcome-bonus__term-description {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 10px;
}

.page-promotions-welcome-bonus__term-small-text {
  font-size: 0.9em;
  color: #999;
  font-style: italic;
}

/* FAQ Section */
.page-promotions-welcome-bonus__faq-item {
  background-color: #1A237E;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  text-align: left;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions-welcome-bonus__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
  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 */
  opacity: 1;
  padding-top: 15px;
}

/* CTA Section */
.page-promotions-welcome-bonus__cta-inner {
  background-color: #2A317E;
  border-radius: 15px;
  padding: 50px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid #FFD700;
}

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

.page-promotions-welcome-bonus__cta-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-welcome-bonus__hero {
    flex-direction: column;
    text-align: center;
  }

  .page-promotions-welcome-bonus__hero-content {
    padding-left: 0;
  }

  .page-promotions-welcome-bonus__hero-title {
    font-size: 2.8em;
  }

  .page-promotions-welcome-bonus__hero-subtitle {
    font-size: 1.2em;
  }

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

@media (max-width: 768px) {
  .page-promotions-welcome-bonus__section {
    padding: 40px 0;
  }

  .page-promotions-welcome-bonus__hero-title {
    font-size: 2.2em;
  }

  .page-promotions-welcome-bonus__hero-subtitle {
    font-size: 1.1em;
  }

  .page-promotions-welcome-bonus__card,
  .page-promotions-welcome-bonus__steps li,
  .page-promotions-welcome-bonus__term-item {
    padding: 20px;
  }

  .page-promotions-welcome-bonus__cta-inner {
    padding: 30px;
  }

  .page-promotions-welcome-bonus__cta-title {
    font-size: 2em;
  }

  .page-promotions-welcome-bonus__cta-description {
    font-size: 1em;
  }
}

@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__section-title {
    font-size: 1.8em;
  }

  .page-promotions-welcome-bonus__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions-welcome-bonus__card-title,
  .page-promotions-welcome-bonus__step-title,
  .page-promotions-welcome-bonus__term-title,
  .page-promotions-welcome-bonus__faq-question {
    font-size: 1.3em;
  }

  .page-promotions-welcome-bonus__cta-title {
    font-size: 1.6em;
  }
}