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

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

/* Hero Section */
.page-promo-welcome-bonus__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  position: relative;
  text-align: center;
  background-color: #007BFF; /* Main brand color */
  color: #ffffff;
  overflow: hidden;
}

.page-promo-welcome-bonus__hero-image {
  position: relative;
  z-index: 0;
  margin-top: -60px; /* Overlap with content for visual flow */
}

.page-promo-welcome-bonus__hero-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  /* HTML width/height are 1200x675, CSS should not contradict */
}

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

.page-promo-welcome-bonus__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFC107; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-promo-welcome-bonus__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-promo-welcome-bonus__hero-cta-button {
  display: inline-block;
  background-color: #FFC107; /* Auxiliary color for CTA */
  color: #007BFF; /* Main color for text */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promo-welcome-bonus__hero-cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

/* General Section Styling */
.page-promo-welcome-bonus__introduction,
.page-promo-welcome-bonus__bonus-details,
.page-promo-welcome-bonus__how-to-claim,
.page-promo-welcome-bonus__wagering-requirements,
.page-promo-welcome-bonus__eligible-games,
.page-promo-welcome-bonus__faq,
.page-promo-welcome-bonus__responsible-gaming-reminder,
.page-promo-welcome-bonus__cta-section {
  padding: 60px 0;
  text-align: center;
}

.page-promo-welcome-bonus__section-title {
  font-size: 2.5em;
  color: #007BFF; /* Main brand color */
  margin-bottom: 30px;
}

.page-promo-welcome-bonus__section-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555555;
}

.page-promo-welcome-bonus__section-text a {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

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

.page-promo-welcome-bonus__cta-button {
  display: inline-block;
  background-color: #007BFF; /* Main brand color for CTAs */
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: 10px;
}

.page-promo-welcome-bonus__cta-button:hover {
  background-color: #0056b3;
}

.page-promo-welcome-bonus__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  background-color: #FFC107;
  color: #007BFF;
}

.page-promo-welcome-bonus__cta-button--large:hover {
  background-color: #e0a800;
  color: #0056b3;
}

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

.page-promo-welcome-bonus__detail-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

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

.page-promo-welcome-bonus__detail-card img {
  width: 100%;
  height: 200px; /* Ensure images are not too small */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  /* HTML width/height are 400x300, CSS should not contradict */
}

.page-promo-welcome-bonus__card-title {
  font-size: 1.8em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-promo-welcome-bonus__card-text {
  font-size: 1em;
  color: #666666;
}

/* How to Claim Steps */
.page-promo-welcome-bonus__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo-welcome-bonus__step-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  position: relative;
  border: 1px solid #ddd;
}

.page-promo-welcome-bonus__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FFC107;
  color: #007BFF;
  font-size: 1.8em;
  font-weight: bold;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promo-welcome-bonus__step-button {
  display: inline-block;
  background-color: #007BFF;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-promo-welcome-bonus__step-button:hover {
  background-color: #0056b3;
}

.page-promo-welcome-bonus__note {
  margin-top: 40px;
  font-style: italic;
  color: #777777;
}

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

.page-promo-welcome-bonus__category-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  border: 1px solid #eee;
}

.page-promo-welcome-bonus__category-item img {
  width: 100%;
   /* Ensure images are not too small */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  /* HTML width/height are 300x200, CSS should not contradict */
}

.page-promo-welcome-bonus__category-title {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 10px;
}

.page-promo-welcome-bonus__category-title a {
  color: #007BFF;
  text-decoration: none;
}

.page-promo-welcome-bonus__category-title a:hover {
  text-decoration: underline;
}

.page-promo-welcome-bonus__category-description {
  font-size: 0.95em;
  color: #666666;
}

/* FAQ Section */
.page-promo-welcome-bonus__faq {
  background-color: #f0f5fa; /* Light background for FAQ */
}

.page-promo-welcome-bonus__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-promo-welcome-bonus__faq-question {
  font-size: 1.4em;
  color: #007BFF;
  margin-bottom: 10px;
}

.page-promo-welcome-bonus__faq-answer {
  font-size: 1em;
  color: #555555;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promo-welcome-bonus__hero-title {
    font-size: 2.8em;
  }
  .page-promo-welcome-bonus__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promo-welcome-bonus__hero-title {
    font-size: 2.2em;
  }
  .page-promo-welcome-bonus__hero-description {
    font-size: 1.1em;
  }
  .page-promo-welcome-bonus__hero-cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-promo-welcome-bonus__introduction,
  .page-promo-welcome-bonus__bonus-details,
  .page-promo-welcome-bonus__how-to-claim,
  .page-promo-welcome-bonus__wagering-requirements,
  .page-promo-welcome-bonus__eligible-games,
  .page-promo-welcome-bonus__faq,
  .page-promo-welcome-bonus__responsible-gaming-reminder,
  .page-promo-welcome-bonus__cta-section {
    padding: 40px 0;
  }

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

  .page-promo-welcome-bonus__detail-card img,
  .page-promo-welcome-bonus__category-item img {
    max-width: 100%;
    height: auto;
  }
  
  /* IMPORTANT: Mobile content area images must be responsive and not cause overflow */
  .page-promo-welcome-bonus img {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-promo-welcome-bonus__hero-section {
    padding-top: var(--header-offset-mobile, 80px); /* Adjust for mobile header offset if needed */
  }
  
  .page-promo-welcome-bonus__hero-content {
    padding: 40px 15px 20px;
  }

  .page-promo-welcome-bonus__details-grid,
  .page-promo-welcome-bonus__steps-grid,
  .page-promo-welcome-bonus__game-categories {
    grid-template-columns: 1fr;
  }

  .page-promo-welcome-bonus__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-promo-welcome-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promo-welcome-bonus__hero-description {
    font-size: 1em;
  }
  .page-promo-welcome-bonus__section-title {
    font-size: 1.5em;
  }
  .page-promo-welcome-bonus__hero-image {
    margin-top: -30px;
  }
}