.page-promotions-welcome-bonus {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Light grey for general text on dark background */
  background-color: #001f3f; /* Main dark blue background */
}

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

.page-promotions-welcome-bonus__hero-section {
  background: linear-gradient(135deg, #001f3f 0%, #0a3a66 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 450px;
  position: relative;
  overflow: hidden;
}

.page-promotions-welcome-bonus__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract_pattern,dark_blue,gold_accents]'); /* Abstract pattern for hero bg */
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions-welcome-bonus__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions-welcome-bonus__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffcc00; /* Gold accent for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-welcome-bonus__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-promotions-welcome-bonus__cta-button {
  display: inline-block;
  background-color: #ffcc00; /* Gold accent for CTA button */
  color: #001f3f; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-welcome-bonus__cta-button:hover {
  background-color: #e6b800; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-promotions-welcome-bonus__hero-image-wrapper {
  display: none; /* Hidden on smaller screens */
}

@media (min-width: 768px) {
  .page-promotions-welcome-bonus__hero-section {
    text-align: left;
    padding: 100px 0;
  }

  .page-promotions-welcome-bonus__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .page-promotions-welcome-bonus__hero-content {
    flex: 1;
    margin: 0;
  }

  .page-promotions-welcome-bonus__hero-image-wrapper {
    display: block;
    flex: 1;
    text-align: right;
  }

  .page-promotions-welcome-bonus__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
}

.page-promotions-welcome-bonus__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-welcome-bonus__section:last-of-type {
  border-bottom: none;
}

.page-promotions-welcome-bonus__section-title {
  font-size: 2.5em;
  color: #ffcc00; /* Gold accent for section titles */
  margin-bottom: 30px;
  text-align: center;
}

.page-promotions-welcome-bonus__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
  text-align: justify;
}

.page-promotions-welcome-bonus__image-inline {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-welcome-bonus__step-list li {
  background-color: #0d365f; /* Slightly lighter dark blue for list items */
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 80px;
}

.page-promotions-welcome-bonus__step-list li h3 {
  color: #ffcc00;
  font-size: 1.8em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus__step-list li p {
  color: #c0c0c0;
  font-size: 1em;
}

.page-promotions-welcome-bonus__step-list li::before {
  content: attr(data-step);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffcc00;
  color: #001f3f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5em;
}

.page-promotions-welcome-bonus__step-list li:nth-child(1)::before { content: '1'; }
.page-promotions-welcome-bonus__step-list li:nth-child(2)::before { content: '2'; }
.page-promotions-welcome-bonus__step-list li:nth-child(3)::before { content: '3'; }

.page-promotions-welcome-bonus__secondary-button {
  display: inline-block;
  background-color: transparent;
  color: #ffcc00;
  border: 2px solid #ffcc00;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promotions-welcome-bonus__secondary-button:hover {
  background-color: #ffcc00;
  color: #001f3f;
}

.page-promotions-welcome-bonus__terms-list {
  list-style: disc;
  margin-left: 20px;
  color: #e0e0e0;
  font-size: 1.1em;
}

.page-promotions-welcome-bonus__terms-list li {
  margin-bottom: 15px;
  padding-left: 10px;
}

.page-promotions-welcome-bonus__terms-list li strong {
  color: #ffcc00;
}

.page-promotions-welcome-bonus__advantages-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.page-promotions-welcome-bonus__advantages-list li {
  background-color: #0d365f;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  color: #c0c0c0;
  font-size: 1.05em;
}

.page-promotions-welcome-bonus__advantages-list li::before {
  content: '✓';
  color: #ffcc00;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-promotions-welcome-bonus__final-cta {
  text-align: center;
  padding: 80px 0;
  background-color: #0d365f;
}

.page-promotions-welcome-bonus__final-cta .page-promotions-welcome-bonus__section-title {
  color: #ffcc00;
}

.page-promotions-welcome-bonus__login-link {
  color: #ffcc00;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions-welcome-bonus__login-link:hover {
  color: #e6b800;
  text-decoration: underline;
}

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

  .page-promotions-welcome-bonus__hero-description {
    font-size: 1em;
  }

  .page-promotions-welcome-bonus__section-title {
    font-size: 2em;
  }

  .page-promotions-welcome-bonus__step-list li {
    padding: 20px;
    padding-left: 60px;
  }

  .page-promotions-welcome-bonus__step-list li::before {
    width: 30px;
    height: 30px;
    font-size: 1.2em;
    left: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-welcome-bonus__main-title {
    font-size: 2em;
  }

  .page-promotions-welcome-bonus__hero-description {
    font-size: 0.9em;
  }

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

  .page-promotions-welcome-bonus__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions-welcome-bonus__step-list li h3 {
    font-size: 1.5em;
  }
}