/* style/promotions-welcome-bonus.css */
.page-promotions-welcome-bonus {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0F1A2B; /* A slightly lighter shade of main color for 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, #1A2B47 0%, #0F1A2B 100%);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

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

.page-promotions-welcome-bonus__hero-subtitle {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #E0E0E0;
}

.page-promotions-welcome-bonus__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for primary CTA */
  color: #1A2B47; /* Deep blue for text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-welcome-bonus__cta-button:hover {
  background-color: #e5c100; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-promotions-welcome-bonus__cta-button--secondary {
  background-color: #1A2B47;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions-welcome-bonus__cta-button--secondary:hover {
  background-color: #2a3d5f;
  border-color: #e5c100;
}

.page-promotions-welcome-bonus__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-promotions-welcome-bonus__content-section {
  padding: 60px 0;
  background-color: #1A2B47; /* Main deep blue for content sections */
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions-welcome-bonus__content-section:nth-child(even) {
  background-color: #0F1A2B; /* Alternate background for readability */
}

.page-promotions-welcome-bonus__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-promotions-welcome-bonus__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-promotions-welcome-bonus__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus__image--large {
  width: 90%;
}

.page-promotions-welcome-bonus__image--medium {
  width: 70%;
}

.page-promotions-welcome-bonus__image--small {
  width: 50%;
  max-width: 300px;
}

.page-promotions-welcome-bonus__numbered-list,
.page-promotions-welcome-bonus__bullet-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-promotions-welcome-bonus__numbered-list li,
.page-promotions-welcome-bonus__bullet-list li {
  background-color: #2a3d5f; /* Slightly lighter blue for list items */
  margin-bottom: 15px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 70px;
}

.page-promotions-welcome-bonus__numbered-list li::before {
  content: counter(list-item);
  counter-increment: list-item;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #1A2B47;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-promotions-welcome-bonus__list-title {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions-welcome-bonus__bullet-list li p {
  margin-bottom: 0;
}

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

.page-promotions-welcome-bonus__grid-item {
  background-color: #2a3d5f;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

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

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

.page-promotions-welcome-bonus__icon-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.page-promotions-welcome-bonus__icon-list li {
  display: flex;
  align-items: flex-start;
  background-color: #0F1A2B;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-welcome-bonus__list-icon {
  width: 60px;
  height: 60px;
  margin-right: 20px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
}

.page-promotions-welcome-bonus__icon-list li p {
  margin-bottom: 0;
}

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

.page-promotions-welcome-bonus__faq-question {
  color: #FFD700;
  font-size: 1.4em;
  margin-top: 0;
  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;
  transition: transform 0.3s ease;
}

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

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

.page-promotions-welcome-bonus__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding-bottom: 15px;
}

.page-promotions-welcome-bonus__final-cta-section {
  background: linear-gradient(45deg, #1A2B47, #0F1A2B);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
  border-top: 5px solid #FFD700;
}

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

.page-promotions-welcome-bonus__final-cta-subtitle {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #E0E0E0;
}

.page-promotions-welcome-bonus__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-welcome-bonus__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-welcome-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-welcome-bonus__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-promotions-welcome-bonus__image--large {
    width: 100%;
  }
  .page-promotions-welcome-bonus__image--medium {
    width: 90%;
  }
  .page-promotions-welcome-bonus__image--small {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .page-promotions-welcome-bonus__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-welcome-bonus__hero-subtitle {
    font-size: 1.2em;
  }
  .page-promotions-welcome-bonus__section-title {
    font-size: 1.8em;
  }
  .page-promotions-welcome-bonus__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-promotions-welcome-bonus__numbered-list li,
  .page-promotions-welcome-bonus__bullet-list li {
    padding-left: 60px;
  }
  .page-promotions-welcome-bonus__numbered-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
    left: 15px;
  }
  .page-promotions-welcome-bonus__list-title {
    font-size: 1.3em;
  }
  .page-promotions-welcome-bonus__icon-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-promotions-welcome-bonus__list-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-promotions-welcome-bonus__final-cta-title {
    font-size: 2.5em;
  }
  .page-promotions-welcome-bonus__final-cta-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-welcome-bonus__button-group {
    flex-direction: column;
  }
  .page-promotions-welcome-bonus__cta-button {
    width: 100%;
    max-width: 300px;
  }
}

@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.5em;
  }
  .page-promotions-welcome-bonus__text-block {
    font-size: 1em;
  }
  .page-promotions-welcome-bonus__final-cta-title {
    font-size: 2em;
  }
  .page-promotions-welcome-bonus__final-cta-subtitle {
    font-size: 1em;
  }
}