.page-promotions-new-player-welcome-bonus {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #ffffff; /* Assuming body background is white */
}

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

.page-promotions-new-player-welcome-bonus__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-promotions-new-player-welcome-bonus__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-promotions-new-player-welcome-bonus__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  padding-top: 0; /* Assuming shared.css handles body padding-top */
}

.page-promotions-new-player-welcome-bonus__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-promotions-new-player-welcome-bonus__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-promotions-new-player-welcome-bonus__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-promotions-new-player-welcome-bonus__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-promotions-new-player-welcome-bonus__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-promotions-new-player-welcome-bonus__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions-new-player-welcome-bonus__btn-primary,
.page-promotions-new-player-welcome-bonus__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-promotions-new-player-welcome-bonus__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-promotions-new-player-welcome-bonus__btn-primary:hover {
  background-color: #d16b06;
  border-color: #d16b06;
}

.page-promotions-new-player-welcome-bonus__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-promotions-new-player-welcome-bonus__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-promotions-new-player-welcome-bonus__btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-promotions-new-player-welcome-bonus__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: inherit; /* Inherits from parent section */
  line-height: 1.3;
}

.page-promotions-new-player-welcome-bonus__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: inherit;
}

.page-promotions-new-player-welcome-bonus__introduction-section,
.page-promotions-new-player-welcome-bonus__how-to-claim-section,
.page-promotions-new-player-welcome-bonus__terms-section,
.page-promotions-new-player-welcome-bonus__final-cta-section {
  padding: 80px 0;
}

.page-promotions-new-player-welcome-bonus__details-section,
.page-promotions-new-player-welcome-bonus__games-section,
.page-promotions-new-player-welcome-bonus__faq-section {
  padding: 80px 0;
}

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

.page-promotions-new-player-welcome-bonus__bonus-card,
.page-promotions-new-player-welcome-bonus__game-item {
  background-color: #ffffff; /* Ensure white background for light-bg cards */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  color: #333333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-new-player-welcome-bonus__card-title,
.page-promotions-new-player-welcome-bonus__game-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-promotions-new-player-welcome-bonus__card-title a,
.page-promotions-new-player-welcome-bonus__game-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-promotions-new-player-welcome-bonus__card-title a:hover,
.page-promotions-new-player-welcome-bonus__game-title a:hover {
  text-decoration: underline;
}

.page-promotions-new-player-welcome-bonus__card-image,
.page-promotions-new-player-welcome-bonus__game-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-promotions-new-player-welcome-bonus__bonus-card p,
.page-promotions-new-player-welcome-bonus__game-item p {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions-new-player-welcome-bonus__card-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.page-promotions-new-player-welcome-bonus__card-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-promotions-new-player-welcome-bonus__card-features li::before {
  content: '✔';
  color: #26A9E0;
  position: absolute;
  left: 0;
}

.page-promotions-new-player-welcome-bonus__card-link {
  color: #26A9E0;
  text-decoration: none;
}

.page-promotions-new-player-welcome-bonus__card-link:hover {
  text-decoration: underline;
}

.page-promotions-new-player-welcome-bonus__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  max-width: 800px;
  margin: 50px auto 0 auto;
}

.page-promotions-new-player-welcome-bonus__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
  padding-left: 70px;
}

.page-promotions-new-player-welcome-bonus__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #26A9E0;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
}

.page-promotions-new-player-welcome-bonus__step-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-top: 0;
  margin-bottom: 10px;
  flex-basis: 200px;
  flex-shrink: 0;
}

.page-promotions-new-player-welcome-bonus__step-item p {
  margin-top: 0;
  margin-bottom: 0;
  flex-grow: 1;
}

.page-promotions-new-player-welcome-bonus__claim-cta {
  text-align: center;
  margin-top: 50px;
}

.page-promotions-new-player-welcome-bonus__terms-list {
  list-style: disc;
  max-width: 900px;
  margin: 50px auto 30px auto;
  padding-left: 40px;
  color: inherit;
}

.page-promotions-new-player-welcome-bonus__terms-list li {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-promotions-new-player-welcome-bonus__terms-list li a {
  color: #ffffff; /* For dark-bg section */
  text-decoration: underline;
}

.page-promotions-new-player-welcome-bonus__terms-list li a:hover {
  color: #f0f0f0;
}

.page-promotions-new-player-welcome-bonus__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-promotions-new-player-welcome-bonus__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-promotions-new-player-welcome-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #f5f5f5;
  color: #333333;
  transition: background-color 0.3s ease;
}

.page-promotions-new-player-welcome-bonus__faq-question:hover {
  background-color: #e0e0e0;
}

.page-promotions-new-player-welcome-bonus__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-promotions-new-player-welcome-bonus__faq-item.active .page-promotions-new-player-welcome-bonus__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions-new-player-welcome-bonus__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-promotions-new-player-welcome-bonus__faq-item.active .page-promotions-new-player-welcome-bonus__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 15px 30px;
}

.page-promotions-new-player-welcome-bonus__faq-answer p {
  margin-bottom: 10px;
  color: #555555;
}

.page-promotions-new-player-welcome-bonus__final-cta-section {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-new-player-welcome-bonus__hero-title {
    font-size: 3em;
  }

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

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

@media (max-width: 768px) {
  .page-promotions-new-player-welcome-bonus__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset on mobile */
  }

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

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

  .page-promotions-new-player-welcome-bonus__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-new-player-welcome-bonus__btn-primary,
  .page-promotions-new-player-welcome-bonus__btn-secondary,
  .page-promotions-new-player-welcome-bonus a[class*="button"],
  .page-promotions-new-player-welcome-bonus a[class*="btn"] {
    max-width: 100% !important;
    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-new-player-welcome-bonus__hero-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-promotions-new-player-welcome-bonus__section-description {
    font-size: 0.95em;
  }

  .page-promotions-new-player-welcome-bonus__introduction-section,
  .page-promotions-new-player-welcome-bonus__how-to-claim-section,
  .page-promotions-new-player-welcome-bonus__terms-section,
  .page-promotions-new-player-welcome-bonus__final-cta-section,
  .page-promotions-new-player-welcome-bonus__details-section,
  .page-promotions-new-player-welcome-bonus__games-section,
  .page-promotions-new-player-welcome-bonus__faq-section {
    padding: 50px 0;
  }

  .page-promotions-new-player-welcome-bonus__container {
    padding: 0 15px;
  }

  .page-promotions-new-player-welcome-bonus__bonus-grid,
  .page-promotions-new-player-welcome-bonus__game-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-new-player-welcome-bonus__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 0;
  }

  .page-promotions-new-player-welcome-bonus__step-item::before {
    position: static;
    margin-bottom: 15px;
  }

  .page-promotions-new-player-welcome-bonus__step-title {
    flex-basis: auto;
    margin-bottom: 10px;
  }

  .page-promotions-new-player-welcome-bonus__step-item p {
    margin-top: 0;
    margin-bottom: 0;
    flex-grow: 1;
  }

  .page-promotions-new-player-welcome-bonus__terms-list,
  .page-promotions-new-player-welcome-bonus__faq-list {
    padding-left: 20px;
  }
  
  /* Mobile image responsiveness */
  .page-promotions-new-player-welcome-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
 }}