.page-promo-welcome-bonus-details {
  color: #333333; /* Dark text for light body background */
}

.page-promo-welcome-bonus-details__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #000000; /* Main background color for hero */
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}

.page-promo-welcome-bonus-details__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
}

.page-promo-welcome-bonus-details__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-promo-welcome-bonus-details__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-promo-welcome-bonus-details__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo-welcome-bonus-details__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-promo-welcome-bonus-details__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promo-welcome-bonus-details__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 180px;
  text-align: center;
}

.page-promo-welcome-bonus-details__button--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-promo-welcome-bonus-details__button--register:hover {
  background-color: #f0f0f0;
  color: #000000;
}

.page-promo-welcome-bonus-details__button--login,
.page-promo-welcome-bonus-details__button--claim,
.page-promo-welcome-bonus-details__button--final-cta {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promo-welcome-bonus-details__button--login:hover,
.page-promo-welcome-bonus-details__button--claim:hover,
.page-promo-welcome-bonus-details__button--final-cta:hover {
  background-color: #e0a53b;
  color: #000000;
}

.page-promo-welcome-bonus-details__introduction-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  text-align: center;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promo-welcome-bonus-details__introduction-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #000000;
}

.page-promo-welcome-bonus-details__introduction-text {
  font-size: 1.1em;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #333333;
}

.page-promo-welcome-bonus-details__quick-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.page-promo-welcome-bonus-details__quick-link-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  background-color: #000000; /* Main color for secondary buttons */
  color: #FFFFFF;
  border: 2px solid #000000;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promo-welcome-bonus-details__quick-link-button:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-promo-welcome-bonus-details__bonus-breakdown {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: #f8f8f8;
  border-radius: 10px;
}

.page-promo-welcome-bonus-details__bonus-breakdown-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
}

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

.page-promo-welcome-bonus-details__bonus-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promo-welcome-bonus-details__bonus-card:hover {
  transform: translateY(-5px);
}

.page-promo-welcome-bonus-details__bonus-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
  object-fit: cover;
}

.page-promo-welcome-bonus-details__bonus-card-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #000000;
}

.page-promo-welcome-bonus-details__bonus-card-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-promo-welcome-bonus-details__claim-steps {
  max-width: 1000px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promo-welcome-bonus-details__claim-steps-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
}

.page-promo-welcome-bonus-details__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-promo-welcome-bonus-details__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.page-promo-welcome-bonus-details__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  font-size: 2em;
  font-weight: bold;
  color: #FCBC45;
  margin-right: 20px;
  min-width: 40px;
  text-align: center;
}

.page-promo-welcome-bonus-details__step-title {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: #000000;
}

.page-promo-welcome-bonus-details__step-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-promo-welcome-bonus-details__step-text a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-promo-welcome-bonus-details__step-text a:hover {
  text-decoration: underline;
}

.page-promo-welcome-bonus-details__button--claim {
  margin-top: 30px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-promo-welcome-bonus-details__terms-conditions {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: #f8f8f8;
  border-radius: 10px;
}

.page-promo-welcome-bonus-details__terms-conditions-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #000000;
}

.page-promo-welcome-bonus-details__terms-conditions-intro {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #333333;
}

.page-promo-welcome-bonus-details__terms-list {
  list-style: none;
  padding: 0;
}

.page-promo-welcome-bonus-details__terms-item {
  background-color: #FFFFFF;
  border-left: 5px solid #FCBC45;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promo-welcome-bonus-details__terms-item-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #000000;
}

.page-promo-welcome-bonus-details__terms-item-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-promo-welcome-bonus-details__button--read-terms {
  margin-top: 30px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000;
}

.page-promo-welcome-bonus-details__button--read-terms:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-promo-welcome-bonus-details__faq-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promo-welcome-bonus-details__faq-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
}

.page-promo-welcome-bonus-details__faq-item {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.page-promo-welcome-bonus-details__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-promo-welcome-bonus-details__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-promo-welcome-bonus-details__button--support {
  margin-top: 30px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000;
}

.page-promo-welcome-bonus-details__button--support:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-promo-welcome-bonus-details__cta-section {
  background-color: #000000; /* Main color for CTA background */
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  overflow: hidden;
}

.page-promo-welcome-bonus-details__cta-content {
  max-width: 600px;
  flex-shrink: 0;
}

.page-promo-welcome-bonus-details__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45;
}

.page-promo-welcome-bonus-details__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-promo-welcome-bonus-details__cta-image img {
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo-welcome-bonus-details__hero-title {
    font-size: 3em;
  }
  .page-promo-welcome-bonus-details__introduction-title,
  .page-promo-welcome-bonus-details__bonus-breakdown-title,
  .page-promo-welcome-bonus-details__claim-steps-title,
  .page-promo-welcome-bonus-details__terms-conditions-title,
  .page-promo-welcome-bonus-details__faq-title,
  .page-promo-welcome-bonus-details__cta-title {
    font-size: 2em;
  }
  .page-promo-welcome-bonus-details__cta-section {
    flex-direction: column;
    text-align: center;
  }
  .page-promo-welcome-bonus-details__cta-image {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-promo-welcome-bonus-details__hero-title {
    font-size: 2.5em;
  }
  .page-promo-welcome-bonus-details__hero-description {
    font-size: 1em;
  }
  .page-promo-welcome-bonus-details__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo-welcome-bonus-details__button {
    width: 100%;
    max-width: 280px;
  }
  .page-promo-welcome-bonus-details__introduction-title,
  .page-promo-welcome-bonus-details__bonus-breakdown-title,
  .page-promo-welcome-bonus-details__claim-steps-title,
  .page-promo-welcome-bonus-details__terms-conditions-title,
  .page-promo-welcome-bonus-details__faq-title,
  .page-promo-welcome-bonus-details__cta-title {
    font-size: 1.8em;
  }
  .page-promo-welcome-bonus-details__introduction-text,
  .page-promo-welcome-bonus-details__bonus-card-text,
  .page-promo-welcome-bonus-details__step-text,
  .page-promo-welcome-bonus-details__terms-conditions-intro,
  .page-promo-welcome-bonus-details__terms-item-text,
  .page-promo-welcome-bonus-details__faq-answer,
  .page-promo-welcome-bonus-details__cta-description {
    font-size: 0.95em;
  }
  .page-promo-welcome-bonus-details__bonus-grid {
    grid-template-columns: 1fr;
  }
  .page-promo-welcome-bonus-details__step-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-promo-welcome-bonus-details__step-item::before {
    margin-bottom: 10px;
  }
  .page-promo-welcome-bonus-details__quick-links {
    flex-direction: column;
    gap: 10px;
  }
  .page-promo-welcome-bonus-details__quick-link-button {
    width: 100%;
    max-width: 280px;
  }
  /* Mobile content image constraint */
  .page-promo-welcome-bonus-details img {
    max-width: 100%;
    height: auto;
  }
  .page-promo-welcome-bonus-details__cta-image img {
    max-width: 100%;
    height: auto;
  }
}