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

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

.page-promotions-welcome-bonus__section-title {
  font-size: 2.5em;
  color: #1A2E47;
  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__intro-text {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555;
}

/* Hero Section */
.page-promotions-welcome-bonus__hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1A2E47 0%, #3a506b 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 20px;
  min-height: 500px;
  text-align: center;
}

.page-promotions-welcome-bonus__hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  margin-right: 40px;
}

.page-promotions-welcome-bonus__hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

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

.page-promotions-welcome-bonus__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  line-height: 1.2;
}

.page-promotions-welcome-bonus__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-promotions-welcome-bonus__hero-cta-button,
.page-promotions-welcome-bonus__step-cta-button,
.page-promotions-welcome-bonus__terms-cta-button,
.page-promotions-welcome-bonus__view-all-games-button,
.page-promotions-welcome-bonus__faq-cta-button,
.page-promotions-welcome-bonus__final-cta-button,
.page-promotions-welcome-bonus__responsible-gaming-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2E47; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-welcome-bonus__hero-cta-button:hover,
.page-promotions-welcome-bonus__step-cta-button:hover,
.page-promotions-welcome-bonus__terms-cta-button:hover,
.page-promotions-welcome-bonus__view-all-games-button:hover,
.page-promotions-welcome-bonus__faq-cta-button:hover,
.page-promotions-welcome-bonus__final-cta-button:hover,
.page-promotions-welcome-bonus__responsible-gaming-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
}

/* Why SA88 Section */
.page-promotions-welcome-bonus__why-sa88-section {
  padding: 80px 0;
  background-color: #fff;
}

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

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

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

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

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

/* How to Claim Section */
.page-promotions-welcome-bonus__how-to-claim-section {
  padding: 80px 0;
  background-color: #f8f8f8;
  text-align: center;
}

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

.page-promotions-welcome-bonus__step-item {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-welcome-bonus__step-icon {
  background-color: #1A2E47;
  color: #FFD700;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 25px;
}

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

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

.page-promotions-welcome-bonus__process-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Terms & Conditions Section */
.page-promotions-welcome-bonus__terms-section {
  padding: 80px 0;
  background-color: #1A2E47;
  color: #fff;
}

.page-promotions-welcome-bonus__terms-section .page-promotions-welcome-bonus__section-title {
  color: #FFD700;
}

.page-promotions-welcome-bonus__terms-section .page-promotions-welcome-bonus__intro-text {
  color: #e0e0e0;
}

.page-promotions-welcome-bonus__terms-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
}

.page-promotions-welcome-bonus__terms-list li {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.8;
  border-left: 5px solid #FFD700;
}

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

.page-promotions-welcome-bonus__call-to-action-text {
  text-align: center;
  font-size: 1.2em;
  margin-top: 40px;
  color: #FFD700;
  font-weight: bold;
}

/* Games Section */
.page-promotions-welcome-bonus__games-section {
  padding: 80px 0;
  background-color: #f0f4f7;
}

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

.page-promotions-welcome-bonus__game-category {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-promotions-welcome-bonus__game-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions-welcome-bonus__game-title {
  font-size: 1.5em;
  color: #1A2E47;
  margin-bottom: 10px;
}

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

/* FAQ Section */
.page-promotions-welcome-bonus__faq-section {
  padding: 80px 0;
  background-color: #fff;
}

.page-promotions-welcome-bonus__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
}

.page-promotions-welcome-bonus__faq-question {
  font-size: 1.4em;
  color: #1A2E47;
  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.5em;
  color: #FFD700;
  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: #555;
  font-size: 1.1em;
  display: none; /* Hidden by default */
  padding-top: 15px;
  border-top: 1px dashed #eee;
  margin-top: 15px;
}

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

.page-promotions-welcome-bonus__faq-cta-button {
  margin-top: 20px;
}

/* Final CTA Section */
.page-promotions-welcome-bonus__cta-final-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #1A2E47, #3a506b);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-promotions-welcome-bonus__cta-final-content {
  flex: 1;
  min-width: 300px;
  max-width: 700px;
  margin-right: 40px;
}

.page-promotions-welcome-bonus__cta-final-content .page-promotions-welcome-bonus__section-title {
  color: #FFD700;
}

.page-promotions-welcome-bonus__cta-final-content .page-promotions-welcome-bonus__intro-text {
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-promotions-welcome-bonus__final-cta-image {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsible Gaming Section */
.page-promotions-welcome-bonus__responsible-gaming {
  padding: 80px 0;
  background-color: #f8f8f8;
  text-align: center;
}

.page-promotions-welcome-bonus__responsible-gaming-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .page-promotions-welcome-bonus__hero-section,
  .page-promotions-welcome-bonus__cta-final-section {
    flex-direction: column;
    padding: 60px 20px;
  }

  .page-promotions-welcome-bonus__hero-content,
  .page-promotions-welcome-bonus__cta-final-content {
    margin-right: 0;
    margin-bottom: 40px;
  }

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

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

@media (max-width: 768px) {
  .page-promotions-welcome-bonus__hero-title {
    font-size: 2.2em;
  }

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

  .page-promotions-welcome-bonus__hero-cta-button,
  .page-promotions-welcome-bonus__step-cta-button,
  .page-promotions-welcome-bonus__terms-cta-button,
  .page-promotions-welcome-bonus__view-all-games-button,
  .page-promotions-welcome-bonus__faq-cta-button,
  .page-promotions-welcome-bonus__final-cta-button,
  .page-promotions-welcome-bonus__responsible-gaming-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-promotions-welcome-bonus__features-grid,
  .page-promotions-welcome-bonus__steps-grid,
  .page-promotions-welcome-bonus__games-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-promotions-welcome-bonus__hero-section,
  .page-promotions-welcome-bonus__why-sa88-section,
  .page-promotions-welcome-bonus__how-to-claim-section,
  .page-promotions-welcome-bonus__terms-section,
  .page-promotions-welcome-bonus__games-section,
  .page-promotions-welcome-bonus__faq-section,
  .page-promotions-welcome-bonus__cta-final-section,
  .page-promotions-welcome-bonus__responsible-gaming {
    padding: 40px 15px;
  }

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

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

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

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

  .page-promotions-welcome-bonus__step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
}