.page-promo-welcome-bonus-details {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promo-welcome-bonus-details__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-promo-welcome-bonus-details__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #FFFFFF;
  background-color: #000000; /* Dark background for hero text contrast */
}

.page-promo-welcome-bonus-details__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6; /* Slightly dim image for text readability */
}

.page-promo-welcome-bonus-details__hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
  max-width: 900px;
}

.page-promo-welcome-bonus-details__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
  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;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

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

.page-promo-welcome-bonus-details__button {
  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, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

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

.page-promo-welcome-bonus-details__button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-promo-welcome-bonus-details__button--claim {
  background-color: #FCBC45;
  color: #000000;
}

.page-promo-welcome-bonus-details__button--claim:hover {
  background-color: #e0a030;
  transform: translateY(-2px);
}

/* General Section Styling */
.page-promo-welcome-bonus-details__overview-section,
.page-promo-welcome-bonus-details__how-to-claim-section,
.page-promo-welcome-bonus-details__terms-section,
.page-promo-welcome-bonus-details__eligible-games-section,
.page-promo-welcome-bonus-details__faq-section,
.page-promo-welcome-bonus-details__final-cta-section {
  padding: 80px 0;
}

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

.page-promo-welcome-bonus-details__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0;
}

.page-promo-welcome-bonus-details__section-text {
  font-size: 1.1em;
  color: #333333;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

/* Feature Grid */
.page-promo-welcome-bonus-details__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-promo-welcome-bonus-details__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-promo-welcome-bonus-details__feature-icon {
  width: 200px; /* Minimum 200px */
  height: 200px; /* Minimum 200px */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

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

.page-promo-welcome-bonus-details__feature-description {
  color: #555555;
  font-size: 1em;
}

/* How-To-Claim Steps */
.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: 40px;
  gap: 20px;
}

.page-promo-welcome-bonus-details__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  font-size: 2.5em;
  font-weight: bold;
  color: #FCBC45;
  background-color: #000000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promo-welcome-bonus-details__step-description {
  font-size: 1.1em;
  color: #555555;
}

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

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

.page-promo-welcome-bonus-details__cta-container {
  text-align: center;
  margin-top: 60px;
}

.page-promo-welcome-bonus-details__button--learn-more,
.page-promo-welcome-bonus-details__button--final {
  background-color: #FCBC45;
  color: #000000;
}

.page-promo-welcome-bonus-details__button--learn-more:hover,
.page-promo-welcome-bonus-details__button--final:hover {
  background-color: #e0a030;
  transform: translateY(-2px);
}

/* Terms and Conditions */
.page-promo-welcome-bonus-details__terms-list {
  list-style: none;
  padding: 0;
}

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

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

.page-promo-welcome-bonus-details__term-description {
  color: #555555;
  font-size: 1em;
}

/* Eligible Games */
.page-promo-welcome-bonus-details__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo-welcome-bonus-details__game-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-promo-welcome-bonus-details__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-promo-welcome-bonus-details__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #e0e0e0;
}

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

.page-promo-welcome-bonus-details__game-description {
  color: #555555;
  padding: 0 20px 20px;
  font-size: 1em;
}

.page-promo-welcome-bonus-details__game-link {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

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

/* FAQ Section */
.page-promo-welcome-bonus-details__accordion {
  margin-top: 40px;
}

.page-promo-welcome-bonus-details__accordion-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promo-welcome-bonus-details__accordion-header {
  background-color: #000000;
  color: #FFFFFF;
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.3em;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promo-welcome-bonus-details__accordion-header:hover {
  background-color: #333333;
}

.page-promo-welcome-bonus-details__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promo-welcome-bonus-details__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promo-welcome-bonus-details__accordion-content {
  padding: 0 25px;
  background-color: #f9f9f9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promo-welcome-bonus-details__accordion-content p {
  padding: 15px 0;
  margin: 0;
  color: #555555;
}

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

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

/* Final CTA */
.page-promo-welcome-bonus-details__final-cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 100px 0;
}

.page-promo-welcome-bonus-details__final-cta-content .page-promo-welcome-bonus-details__section-title,
.page-promo-welcome-bonus-details__final-cta-content .page-promo-welcome-bonus-details__section-text {
  color: #FFFFFF;
}

.page-promo-welcome-bonus-details__final-cta-content .page-promo-welcome-bonus-details__section-title::after {
  background-color: #FCBC45;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo-welcome-bonus-details__hero-title {
    font-size: 2.8em;
  }

  .page-promo-welcome-bonus-details__hero-description {
    font-size: 1.2em;
  }

  .page-promo-welcome-bonus-details__section-title {
    font-size: 2em;
  }

  .page-promo-welcome-bonus-details__overview-section,
  .page-promo-welcome-bonus-details__how-to-claim-section,
  .page-promo-welcome-bonus-details__terms-section,
  .page-promo-welcome-bonus-details__eligible-games-section,
  .page-promo-welcome-bonus-details__faq-section,
  .page-promo-welcome-bonus-details__final-cta-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .page-promo-welcome-bonus-details__hero-section {
    padding-top: var(--header-offset, 100px);
    padding-bottom: 60px;
  }

  .page-promo-welcome-bonus-details__hero-title {
    font-size: 2.2em;
  }

  .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: 300px;
    padding: 12px 25px;
  }

  .page-promo-welcome-bonus-details__section-title {
    font-size: 1.8em;
  }

  .page-promo-welcome-bonus-details__section-text {
    font-size: 0.95em;
  }

  .page-promo-welcome-bonus-details__feature-grid,
  .page-promo-welcome-bonus-details__game-categories {
    grid-template-columns: 1fr;
  }

  .page-promo-welcome-bonus-details__feature-icon,
  .page-promo-welcome-bonus-details__game-image {
    width: 100%;
    height: auto;
    max-width: 100%; /* Ensure images don't overflow */
    min-width: 200px; /* Enforce min width */
    min-height: 200px; /* Enforce min height */
    object-fit: cover;
  }

  .page-promo-welcome-bonus-details__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-promo-welcome-bonus-details__step-item::before {
    margin-bottom: 15px;
  }

  .page-promo-welcome-bonus-details__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  /* Ensure all content area images are responsive and not too small */
  .page-promo-welcome-bonus-details img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover; /* Adjust as needed */
  }
}

@media (max-width: 480px) {
  .page-promo-welcome-bonus-details__hero-title {
    font-size: 1.8em;
  }

  .page-promo-welcome-bonus-details__hero-description {
    font-size: 0.9em;
  }

  .page-promo-welcome-bonus-details__section-title {
    font-size: 1.5em;
  }

  .page-promo-welcome-bonus-details__section-text {
    font-size: 0.9em;
  }

  .page-promo-welcome-bonus-details__button {
    font-size: 1em;
    padding: 10px 20px;
  }
}