.page-promo-new-user-bonus {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

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

.page-promo-new-user-bonus__hero-section {
  background: linear-gradient(135deg, #000080, #0a0a90);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-promo-new-user-bonus__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-promo-new-user-bonus__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-promo-new-user-bonus__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #f0f0f0;
}

.page-promo-new-user-bonus__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000080;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-promo-new-user-bonus__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-promo-new-user-bonus__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background effect */
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-promo-new-user-bonus__section-title {
  font-size: 2.5em;
  color: #000080;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promo-new-user-bonus__features-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-promo-new-user-bonus__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promo-new-user-bonus__step-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-promo-new-user-bonus__step-card:hover {
  transform: translateY(-5px);
}

.page-promo-new-user-bonus__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo-new-user-bonus__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo-new-user-bonus__step-button {
  display: inline-block;
  background-color: #000080;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-promo-new-user-bonus__step-button:hover {
  background-color: #000060;
}

.page-promo-new-user-bonus__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
  object-fit: cover;
}

.page-promo-new-user-bonus__why-choose-us {
  padding: 60px 0;
  background-color: #e6e6fa; /* Light lavender for variety */
}

.page-promo-new-user-bonus__advantage-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-promo-new-user-bonus__advantage-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333333;
  border-left: 5px solid #FFD700;
}

.page-promo-new-user-bonus__advantage-item strong {
  color: #000080;
}

.page-promo-new-user-bonus__games-showcase {
  padding: 60px 0;
  background-color: #f8f8f8;
  text-align: center;
}

.page-promo-new-user-bonus__games-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

.page-promo-new-user-bonus__game-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-promo-new-user-bonus__category-link {
  display: inline-block;
  background-color: #FFD700;
  color: #000080;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo-new-user-bonus__category-link:hover {
  background-color: #e0b800;
  transform: translateY(-2px);
}

.page-promo-new-user-bonus__cta-section--bottom {
  background: linear-gradient(45deg, #000080, #1a1a9a);
  padding: 80px 20px;
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-promo-new-user-bonus__cta-content {
  z-index: 1;
}

.page-promo-new-user-bonus__cta-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-promo-new-user-bonus__cta-button--large {
  padding: 18px 40px;
  font-size: 1.4em;
  border-radius: 50px;
}

.page-promo-new-user-bonus__cta-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-promo-new-user-bonus__cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle background effect */
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-promo-new-user-bonus__terms-conditions {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-promo-new-user-bonus__terms-intro {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 30px;
}

.page-promo-new-user-bonus__terms-list {
  list-style: disc inside;
  padding-left: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.page-promo-new-user-bonus__terms-item {
  margin-bottom: 10px;
  color: #333333;
  font-size: 1em;
}

.page-promo-new-user-bonus__terms-item a {
  color: #000080;
  text-decoration: underline;
}

.page-promo-new-user-bonus__terms-item a:hover {
  color: #FFD700;
}

.page-promo-new-user-bonus__terms-outro {
  font-size: 0.95em;
  color: #777777;
  text-align: center;
  margin-top: 30px;
}

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

  .page-promo-new-user-bonus__hero-description,
  .page-promo-new-user-bonus__cta-text {
    font-size: 1.2em;
  }

  .page-promo-new-user-bonus__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promo-new-user-bonus__hero-section {
    padding: 60px 15px;
  }

  .page-promo-new-user-bonus__hero-title {
    font-size: 2.2em;
  }

  .page-promo-new-user-bonus__hero-description,
  .page-promo-new-user-bonus__cta-text {
    font-size: 1em;
  }

  .page-promo-new-user-bonus__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }

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

  .page-promo-new-user-bonus__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-promo-new-user-bonus__advantage-list {
    grid-template-columns: 1fr;
  }

  .page-promo-new-user-bonus__game-categories {
    flex-direction: column;
  }

  .page-promo-new-user-bonus__category-link {
    width: 100%;
    max-width: 300px;
  }

  .page-promo-new-user-bonus__cta-button--large {
    padding: 15px 30px;
    font-size: 1.2em;
  }

  /* Mobile image overflow prevention */
  .page-promo-new-user-bonus__hero-image img,
  .page-promo-new-user-bonus__step-image,
  .page-promo-new-user-bonus__cta-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small even on mobile */
    min-height: 200px;
  }
  
  .page-promo-new-user-bonus__cta-section--bottom {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .page-promo-new-user-bonus__hero-title {
    font-size: 1.8em;
  }

  .page-promo-new-user-bonus__section-title {
    font-size: 1.6em;
  }
}