.page-promotions-welcome-bonus-details {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body */
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

.page-promotions-welcome-bonus-details__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions-welcome-bonus-details__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px; /* Ensure sufficient height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  margin-bottom: 40px;
}

.page-promotions-welcome-bonus-details__hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-promotions-welcome-bonus-details__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus-details__main-heading {
  font-size: 3em;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions-welcome-bonus-details__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-promotions-welcome-bonus-details__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* For mobile responsiveness */
}

.page-promotions-welcome-bonus-details__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100%; /* For mobile responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  font-size: 1.1em;
}

.page-promotions-welcome-bonus-details__btn-primary {
  background-color: #C30808; /* Register/Login button color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
  box-shadow: 0 4px 10px rgba(195, 8, 8, 0.4);
}

.page-promotions-welcome-bonus-details__btn-primary:hover {
  background-color: #a00606;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(195, 8, 8, 0.6);
}

.page-promotions-welcome-bonus-details__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #017439;
  box-shadow: 0 4px 10px rgba(1, 116, 57, 0.2);
}

.page-promotions-welcome-bonus-details__btn-secondary:hover {
  background-color: #017439;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(1, 116, 57, 0.4);
}

.page-promotions-welcome-bonus-details__section {
  padding: 60px 0;
  margin-bottom: 40px;
  background-color: rgba(255, 255, 255, 0.07); /* Slightly lighter background for sections */
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-welcome-bonus-details__section-title {
  font-size: 2.5em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-promotions-welcome-bonus-details__content-block {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}