.page-promotions-welcome-bonus {
  color: #333333; /* Default text color for light body background */
}

.page-promotions-welcome-bonus__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #000000; /* Dark background for hero */
  color: #ffffff;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-promotions-welcome-bonus__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-promotions-welcome-bonus__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Highlight with secondary color */
  line-height: 1.2;
  font-weight: 700;
}

.page-promotions-welcome-bonus__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-promotions-welcome-bonus__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-promotions-welcome-bonus__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-promotions-welcome-bonus__btn--primary {
  background-color: #FCBC45; /* Login button color for primary action */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promotions-welcome-bonus__btn--primary:hover {
  background-color: #e6a73c;
  transform: translateY(-3px);
}

.page-promotions-welcome-bonus__btn--secondary {
  background-color: transparent;
  color: #FFFFFF; /* Register button color */
  border: 2px solid #FFFFFF;
}

.page-promotions-welcome-bonus__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.page-promotions-welcome-bonus__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-promotions-welcome-bonus__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.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: #000000;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}

.page-promotions-welcome-bonus__intro-text {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-promotions-welcome-bonus__benefits-section {
  background-color: #f8f8f8;
  padding: 80px 0;
}

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

.page-promotions-welcome-bonus__benefit-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-welcome-bonus__benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-promotions-welcome-bonus__benefit-icon {
  width: 250px; /* Minimum 200px */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions-welcome-bonus__benefit-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-welcome-bonus__benefit-description {
  font-size: 1em;
  line-height: 1.7;
  color: #666666;
}

.page-promotions-welcome-bonus__how-to-claim-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-promotions-welcome-bonus__step-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
}

.page-promotions-welcome-bonus__step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 50%;
  font-size: 2em;
  font-weight: 700;
  margin: -60px auto 20px auto;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.page-promotions-welcome-bonus__step-description {
  font-size: 1em;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 25px;
}

.page-promotions-welcome-bonus__btn--register,
.page-promotions-welcome-bonus__btn--deposit,
.page-promotions-welcome-bonus__btn--play {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 12px 25px;
  font-size: 1em;
}

.page-promotions-welcome-bonus__btn--register:hover,
.page-promotions-welcome-bonus__btn--deposit:hover,
.page-promotions-welcome-bonus__btn--play:hover {
  background-color: #e6a73c;
  transform: translateY(-2px);
}

.page-promotions-welcome-bonus__terms-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.page-promotions-welcome-bonus__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions-welcome-bonus__term-item {
  background-color: #ffffff;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  font-size: 1.05em;
  line-height: 1.8;
  color: #444444;
}

.page-promotions-welcome-bonus__term-item strong {
  color: #000000;
}

.page-promotions-welcome-bonus__link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-promotions-welcome-bonus__link:hover {
  color: #e6a73c;
  text-decoration: underline;
}

.page-promotions-welcome-bonus__games-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-promotions-welcome-bonus__game-card {
  display: block;
  background-color: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-welcome-bonus__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-welcome-bonus__game-image {
  width: 100%;
  height: 250px; /* Minimum 200px */
  object-fit: cover;
  display: block;
}

.page-promotions-welcome-bonus__game-title {
  font-size: 1.4em;
  color: #000000;
  padding: 15px 20px 5px;
  font-weight: 600;
}

.page-promotions-welcome-bonus__game-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #666666;
  padding: 0 20px 20px;
}

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

.page-promotions-welcome-bonus__faq-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-promotions-welcome-bonus__faq-items {
  margin-top: 40px;
}

.page-promotions-welcome-bonus__faq-item {
  background-color: #ffffff;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.page-promotions-welcome-bonus__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions-welcome-bonus__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

.page-promotions-welcome-bonus__cta-final-section {
  padding: 80px 0;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
}

.page-promotions-welcome-bonus__cta-final-section .page-promotions-welcome-bonus__section-title {
  color: #FCBC45;
}

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

.page-promotions-welcome-bonus__final-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

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

  .page-promotions-welcome-bonus__section-title {
    font-size: 2.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-actions,
  .page-promotions-welcome-bonus__final-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-welcome-bonus__btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

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

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

  .page-promotions-welcome-bonus__benefits-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 {
    padding: 50px 0;
  }

  .page-promotions-welcome-bonus__benefit-icon,
  .page-promotions-welcome-bonus__game-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-promotions-welcome-bonus__step-number {
    margin-top: -50px;
  }
}

@media (max-width: 480px) {
  .page-promotions-welcome-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-welcome-bonus__section-title {
    font-size: 1.5em;
  }
  .page-promotions-welcome-bonus__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-welcome-bonus__benefit-icon,
  .page-promotions-welcome-bonus__game-image {
    min-width: 200px;
    min-height: 200px;
    width: 100%;
    height: auto;
  }
}