/* 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;
}

.page-promotions-welcome-bonus__hero {
  background: linear-gradient(135deg, #0A2463, #223a70);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-welcome-bonus__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation: rotateGradient 20s linear infinite;
}

@keyframes rotateGradient {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.page-promotions-welcome-bonus__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
  position: relative;
  z-index: 1;
}

.page-promotions-welcome-bonus__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

.page-promotions-welcome-bonus__subtitle a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-welcome-bonus__subtitle a:hover {
  text-decoration: underline;
}

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

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

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

.page-promotions-welcome-bonus__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-promotions-welcome-bonus__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.page-promotions-welcome-bonus__section:nth-of-type(even) {
  background-color: #f1f4f8;
}

.page-promotions-welcome-bonus__section-title {
  font-size: 2.2em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-promotions-welcome-bonus__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions-welcome-bonus__description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #555;
}

.page-promotions-welcome-bonus__description a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-welcome-bonus__description a:hover {
  text-decoration: underline;
}

.page-promotions-welcome-bonus__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-promotions-welcome-bonus__content-grid .page-promotions-welcome-bonus__text-content {
  flex: 1;
}

.page-promotions-welcome-bonus__content-grid .page-promotions-welcome-bonus__image-wrapper {
  flex: 1;
  text-align: center;
}

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

.page-promotions-welcome-bonus__text-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444;
}

.page-promotions-welcome-bonus__text-content p a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-welcome-bonus__text-content p a:hover {
  text-decoration: underline;
}

.page-promotions-welcome-bonus__offer-card {
  display: flex;
  background-color: #0A2463;
  color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  margin-top: 30px;
}

.page-promotions-welcome-bonus__card-image {
  width: 40%;
  height: auto;
  object-fit: cover;
}

.page-promotions-welcome-bonus__card-content {
  width: 60%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-promotions-welcome-bonus__card-content h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-promotions-welcome-bonus__card-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.page-promotions-welcome-bonus__card-content ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
  display: flex;
  align-items: flex-start;
}

.page-promotions-welcome-bonus__card-content ul li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
  line-height: 1;
}

.page-promotions-welcome-bonus__card-content ul li a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-welcome-bonus__card-content ul li a:hover {
  text-decoration: underline;
}

.page-promotions-welcome-bonus__card-description {
  font-size: 1em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-promotions-welcome-bonus__steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

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

.page-promotions-welcome-bonus__steps li:hover {
  transform: translateY(-5px);
  background-color: #e2eaf4;
}

.page-promotions-welcome-bonus__step-icon {
  width: 70px;
  height: 70px;
  background-color: #0A2463;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.page-promotions-welcome-bonus__step-icon img {
  width: 40px;
  height: 40px;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(287deg) brightness(100%) contrast(100%); /* Make icons white/gold */
}

.page-promotions-welcome-bonus__steps li h3 {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus__steps li p {
  font-size: 1em;
  color: #555;
}

.page-promotions-welcome-bonus__steps li p a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-welcome-bonus__steps li p a:hover {
  text-decoration: underline;
}

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

.page-promotions-welcome-bonus__term-item {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions-welcome-bonus__term-item h3 {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.page-promotions-welcome-bonus__term-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(50%) saturate(3025%) hue-rotate(222deg) brightness(94%) contrast(97%); /* Dark blue icon */
}

.page-promotions-welcome-bonus__term-item p {
  font-size: 1em;
  color: #555;
}

.page-promotions-welcome-bonus__term-item p a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-welcome-bonus__term-item p a:hover {
  text-decoration: underline;
}

.page-promotions-welcome-bonus__final-note {
  text-align: center;
  margin-top: 40px;
  font-size: 1em;
  color: #666;
}

.page-promotions-welcome-bonus__final-note a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-welcome-bonus__final-note a:hover {
  text-decoration: underline;
}

.page-promotions-welcome-bonus__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

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

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

.page-promotions-welcome-bonus__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(50%) saturate(3025%) hue-rotate(222deg) brightness(94%) contrast(97%); /* Dark blue icon */
}

.page-promotions-welcome-bonus__benefit-item h3 {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus__benefit-item p {
  font-size: 1em;
  color: #555;
}

.page-promotions-welcome-bonus__benefit-item p a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-welcome-bonus__benefit-item p a:hover {
  text-decoration: underline;
}

.page-promotions-welcome-bonus__why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promotions-welcome-bonus__why-choose-item {
  background-color: #f1f4f8;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-promotions-welcome-bonus__why-choose-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(50%) saturate(3025%) hue-rotate(222deg) brightness(94%) contrast(97%); /* Dark blue icon */
}

.page-promotions-welcome-bonus__why-choose-item h3 {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus__why-choose-item p {
  font-size: 1em;
  color: #555;
}

.page-promotions-welcome-bonus__why-choose-item p a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-welcome-bonus__why-choose-item p a:hover {
  text-decoration: underline;
}

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

.page-promotions-welcome-bonus__faq-item h3 {
  font-size: 1.2em;
  color: #0A2463;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions-welcome-bonus__faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-promotions-welcome-bonus__faq-item p {
  font-size: 1em;
  color: #555;
  display: none; /* Hidden by default */
  margin-top: 10px;
}

.page-promotions-welcome-bonus__faq-item.active p {
  display: block;
}

.page-promotions-welcome-bonus__faq-item p a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-welcome-bonus__faq-item p a:hover {
  text-decoration: underline;
}

.page-promotions-welcome-bonus__final-cta {
  background: linear-gradient(45deg, #FFD700, #e6c200);
  color: #0A2463;
  padding: 80px 0;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions-welcome-bonus__final-cta .page-promotions-welcome-bonus__section-title {
  color: #0A2463;
}

.page-promotions-welcome-bonus__final-cta .page-promotions-welcome-bonus__section-title::after {
  background-color: #0A2463;
}

.page-promotions-welcome-bonus__final-cta .page-promotions-welcome-bonus__description {
  color: #333;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-promotions-welcome-bonus__final-cta .page-promotions-welcome-bonus__description a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-welcome-bonus__final-cta .page-promotions-welcome-bonus__description a:hover {
  text-decoration: underline;
}

.highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-welcome-bonus__title {
    font-size: 2.2em;
  }

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

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

  .page-promotions-welcome-bonus__content-grid,
  .page-promotions-welcome-bonus__offer-card {
    flex-direction: column;
  }

  .page-promotions-welcome-bonus__card-image,
  .page-promotions-welcome-bonus__card-content {
    width: 100%;
  }

  .page-promotions-welcome-bonus__card-image {
    height: 200px;
  }

  .page-promotions-welcome-bonus__card-content {
    padding: 30px;
  }
}

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

  .page-promotions-welcome-bonus__title {
    font-size: 1.8em;
  }

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

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

  .page-promotions-welcome-bonus__section {
    padding: 40px 0;
  }

  .page-promotions-welcome-bonus__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }

  .page-promotions-welcome-bonus__steps,
  .page-promotions-welcome-bonus__terms-grid,
  .page-promotions-welcome-bonus__benefits-grid,
  .page-promotions-welcome-bonus__why-choose-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-welcome-bonus__card-content h3 {
    font-size: 1.5em;
  }

  .page-promotions-welcome-bonus__card-content ul li {
    font-size: 0.95em;
  }

  .page-promotions-welcome-bonus__faq-item {
    padding: 15px 20px;
  }

  .page-promotions-welcome-bonus__faq-item h3 {
    font-size: 1.1em;
  }

  .page-promotions-welcome-bonus__final-cta {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .page-promotions-welcome-bonus__title {
    font-size: 1.5em;
  }

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

  .page-promotions-welcome-bonus__card-content {
    padding: 20px;
  }

  .page-promotions-welcome-bonus__card-content h3 {
    font-size: 1.3em;
  }

  .page-promotions-welcome-bonus__steps li h3 {
    font-size: 1.2em;
  }
}