.page-promotions-welcome-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

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

.page-promotions-welcome-bonus__hero-section {
  position: relative;
  background-color: #017439; /* Primary brand color for hero */
  color: #ffffff;
  padding: 80px 0 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-promotions-welcome-bonus__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-promotions-welcome-bonus__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  line-height: 1.8;
}

.page-promotions-welcome-bonus__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.page-promotions-welcome-bonus__btn-primary,
.page-promotions-welcome-bonus__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1.1em;
}

.page-promotions-welcome-bonus__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #ffffff; /* Changed from #FFFF00 for contrast */
}

.page-promotions-welcome-bonus__btn-primary:hover {
  background-color: #e02020;
  color: #ffffff;
}

.page-promotions-welcome-bonus__btn-secondary {
  background-color: #ffffff;
  color: #017439;
  border-color: #017439;
}

.page-promotions-welcome-bonus__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #017439;
  border-color: #005f2e;
}

.page-promotions-welcome-bonus__large-btn {
  padding: 18px 40px;
  font-size: 1.25em;
}

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

.page-promotions-welcome-bonus__hero-image-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  margin-top: 20px;
}

.page-promotions-welcome-bonus__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-welcome-bonus__introduction-section,
.page-promotions-welcome-bonus__terms-section,
.page-promotions-welcome-bonus__faq-section {
  padding: 60px 0;
  background-color: #0a0a0a; /* Dark background */
  color: #ffffff; /* Light text */
}

.page-promotions-welcome-bonus__how-to-claim-section,
.page-promotions-welcome-bonus__why-choose-section,
.page-promotions-welcome-bonus__final-cta-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background */
  color: #ffffff;
}

.page-promotions-welcome-bonus__section-title {
  font-size: 2.5em;
  color: #017439; /* Primary brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions-welcome-bonus__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions-welcome-bonus__feature-card,
.page-promotions-welcome-bonus__step-card,
.page-promotions-welcome-bonus__advantage-card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark bg */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-welcome-bonus__feature-icon,
.page-promotions-welcome-bonus__advantage-icon {
  width: 100%;
  max-width: 250px; /* Reduced max-width for smaller card images */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions-welcome-bonus__feature-title,
.page-promotions-welcome-bonus__advantage-title {
  font-size: 1.5em;
  color: #017439; /* Primary brand color */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-welcome-bonus__feature-description,
.page-promotions-welcome-bonus__advantage-description {
  font-size: 1em;
  line-height: 1.7;
}

.page-promotions-welcome-bonus__step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: #C30808; /* Register/Login color */
  color: #ffffff;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus__step-title {
  font-size: 1.6em;
  color: #017439;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-welcome-bonus__step-description {
  font-size: 1em;
  line-height: 1.7;
}

.page-promotions-welcome-bonus__cta-center {
  text-align: center;
  margin-top: 40px;
}

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

.page-promotions-welcome-bonus__terms-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter on dark bg */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 1.05em;
  border-left: 4px solid #017439;
  color: #ffffff;
}

.page-promotions-welcome-bonus__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-welcome-bonus__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark bg */
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-promotions-welcome-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  background-color: #017439; /* Primary brand color for FAQ summary */
  border-radius: 10px;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-promotions-welcome-bonus__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions-welcome-bonus__faq-question:hover {
  background-color: #005f2e;
}

.page-promotions-welcome-bonus__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-promotions-welcome-bonus__faq-item[open] .page-promotions-welcome-bonus__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions-welcome-bonus__faq-answer {
  padding: 20px 25px;
  font-size: 1.1em;
  line-height: 1.7;
  color: #e0e0e0;
  background-color: rgba(255, 255, 255, 0.05); /* Lighter background for answer */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .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-section {
    padding: 60px 0 30px;
  }

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

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

  .page-promotions-welcome-bonus__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px;
  }

  .page-promotions-welcome-bonus__btn-primary,
  .page-promotions-welcome-bonus__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-promotions-welcome-bonus__text-block {
    font-size: 1em;
    padding: 0 15px;
  }

  .page-promotions-welcome-bonus__feature-grid,
  .page-promotions-welcome-bonus__steps-grid,
  .page-promotions-welcome-bonus__advantage-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .page-promotions-welcome-bonus__feature-card,
  .page-promotions-welcome-bonus__step-card,
  .page-promotions-welcome-bonus__advantage-card {
    padding: 20px;
  }

  .page-promotions-welcome-bonus__feature-title,
  .page-promotions-welcome-bonus__advantage-title {
    font-size: 1.3em;
  }

  .page-promotions-welcome-bonus__step-title {
    font-size: 1.4em;
  }

  .page-promotions-welcome-bonus__terms-list {
    padding: 0 15px;
  }

  .page-promotions-welcome-bonus__terms-item {
    font-size: 0.95em;
  }

  .page-promotions-welcome-bonus__faq-list {
    padding: 0 15px;
  }

  .page-promotions-welcome-bonus__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-promotions-welcome-bonus__faq-answer {
    font-size: 1em;
    padding: 15px 20px;
  }

  /* Ensure all images are responsive */
  .page-promotions-welcome-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions-welcome-bonus__hero-image-wrapper,
  .page-promotions-welcome-bonus__feature-card,
  .page-promotions-welcome-bonus__advantage-card,
  .page-promotions-welcome-bonus__step-card,
  .page-promotions-welcome-bonus__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-promotions-welcome-bonus__hero-section {
      padding-top: var(--header-offset, 120px) !important; /* Ensure header offset is applied */
  }
}