.page-promo-welcome-bonus {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-promo-welcome-bonus__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-promo-welcome-bonus__hero-content {
  max-width: 900px;
  z-index: 1;
  margin-bottom: 40px;
}

.page-promo-welcome-bonus__hero-title {
  font-size: 3.5em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promo-welcome-bonus__hero-description {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 30px;
}

.page-promo-welcome-bonus__hero-image {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
}

.page-promo-welcome-bonus__hero-image img {
  width: 1200px; /* HTML width attribute matches display width */
  height: 675px; /* HTML height attribute matches display height */
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-promo-welcome-bonus__hero-button {
  display: inline-block;
  padding: 15px 30px;
  margin: 0 10px 20px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 200px;
}

.page-promo-welcome-bonus__hero-button--primary {
  background-color: #FCBC45; /* Login color for primary action */
  color: #000000;
}

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

.page-promo-welcome-bonus__hero-button--secondary {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #FCBC45;
}

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

.page-promo-welcome-bonus__features-section,
.page-promo-welcome-bonus__how-to-claim-section,
.page-promo-welcome-bonus__bonus-details-section,
.page-promo-welcome-bonus__game-showcase-section,
.page-promo-welcome-bonus__security-section,
.page-promo-welcome-bonus__cta-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.page-promo-welcome-bonus__section-title {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promo-welcome-bonus__section-subtitle {
  font-size: 1.3em;
  color: #666666;
  margin-bottom: 40px;
}

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

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

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

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

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

.page-promo-welcome-bonus__claim-steps-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-promo-welcome-bonus__claim-step {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
}

.page-promo-welcome-bonus__step-number {
  font-size: 2.5em;
  color: #FCBC45;
  font-weight: bold;
  margin-bottom: 15px;
}

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

.page-promo-welcome-bonus__step-description {
  color: #555555;
}

.page-promo-welcome-bonus__claim-image {
  margin: 60px auto 40px;
  max-width: 800px;
}

.page-promo-welcome-bonus__claim-image img {
  width: 800px; /* HTML width attribute matches display width */
  height: 600px; /* HTML height attribute matches display height */
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-promo-welcome-bonus__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 1.3em;
  font-weight: bold;
  text-decoration: none;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-promo-welcome-bonus__details-content {
  background-color: #f9f9f9;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  margin-top: 40px;
}

.page-promo-welcome-bonus__details-paragraph {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-promo-welcome-bonus__details-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promo-welcome-bonus__list-item {
  font-size: 1em;
  color: #333333;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-promo-welcome-bonus__list-item::before {
  content: '✔';
  color: #FCBC45;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promo-welcome-bonus__read-more-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-promo-welcome-bonus__read-more-link:hover {
  color: #e0a53b;
  text-decoration: underline;
}

.page-promo-welcome-bonus__game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-promo-welcome-bonus__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.page-promo-welcome-bonus__game-card img {
  width: 600px; /* HTML width attribute matches display width */
  height: 400px; /* HTML height attribute matches display height */
  max-width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #eee;
}

.page-promo-welcome-bonus__game-title {
  font-size: 1.4em;
  color: #000000;
  padding: 20px;
}

.page-promo-welcome-bonus__all-games-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  margin-top: 40px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo-welcome-bonus__all-games-button:hover {
  background-color: #333333;
  transform: translateY(-3px);
}

.page-promo-welcome-bonus__security-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-promo-welcome-bonus__security-image {
  width: 800px; /* HTML width attribute matches display width */
  height: 600px; /* HTML height attribute matches display height */
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promo-welcome-bonus__security-text {
  max-width: 700px;
}

.page-promo-welcome-bonus__security-paragraph {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 20px;
}

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

.page-promo-welcome-bonus__learn-more-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
  margin-top: 20px;
  display: inline-block;
}

.page-promo-welcome-bonus__learn-more-link:hover {
  color: #e0a53b;
  text-decoration: underline;
}

.page-promo-welcome-bonus__final-cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 20px 50px;
  border-radius: 10px;
  font-size: 1.4em;
  font-weight: bold;
  text-decoration: none;
  margin-top: 40px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 15px rgba(252, 188, 69, 0.4);
}

.page-promo-welcome-bonus__final-cta-button:hover {
  background-color: #e0a53b;
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(252, 188, 69, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo-welcome-bonus__hero-title {
    font-size: 3em;
  }
  .page-promo-welcome-bonus__hero-description {
    font-size: 1.1em;
  }
  .page-promo-welcome-bonus__section-title {
    font-size: 2.5em;
  }
  .page-promo-welcome-bonus__hero-image img,
  .page-promo-welcome-bonus__claim-image img,
  .page-promo-welcome-bonus__game-card img,
  .page-promo-welcome-bonus__security-image img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-promo-welcome-bonus__hero-section {
    padding: 40px 15px;
  }
  .page-promo-welcome-bonus__hero-title {
    font-size: 2.5em;
  }
  .page-promo-welcome-bonus__hero-description {
    font-size: 1em;
  }
  .page-promo-welcome-bonus__hero-button {
    width: 100%;
    margin: 10px 0;
  }
  .page-promo-welcome-bonus__features-grid,
  .page-promo-welcome-bonus__claim-steps-container,
  .page-promo-welcome-bonus__game-cards-grid {
    grid-template-columns: 1fr;
  }
  .page-promo-welcome-bonus__section-title {
    font-size: 2em;
  }
  .page-promo-welcome-bonus__section-subtitle {
    font-size: 1.1em;
  }
  .page-promo-welcome-bonus__security-content {
    flex-direction: column;
  }
  /* Ensure all images within .page-promo-welcome-bonus are responsive and do not overflow */
  .page-promo-welcome-bonus img {
    max-width: 100%;
    height: auto;
  }
  .page-promo-welcome-bonus {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-promo-welcome-bonus__hero-title {
    font-size: 2em;
  }
  .page-promo-welcome-bonus__section-title {
    font-size: 1.8em;
  }
  .page-promo-welcome-bonus__cta-button,
  .page-promo-welcome-bonus__final-cta-button {
    font-size: 1.1em;
    padding: 15px 25px;
  }
}