.page-promotions-new-user-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Inherited from shared.css, explicitly set for clarity */
}

.page-promotions-new-user-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions-new-user-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #017439; /* Brand primary color for hero */
  color: #ffffff;
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-promotions-new-user-bonus__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-promotions-new-user-bonus__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #ffffff;
}

.page-promotions-new-user-bonus__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary,
.page-promotions-new-user-bonus__btn-step {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow long words to break */
  box-sizing: border-box;
  text-align: center;
  max-width: 100%;
}

.page-promotions-new-user-bonus__btn-primary {
  background-color: #C30808; /* Custom color for Register/Login */
  color: #FFFF00; /* Custom font color for Register/Login */
  border: 2px solid #C30808;
}

.page-promotions-new-user-bonus__btn-primary:hover {
  background-color: #e02a2a;
  color: #ffffff;
}

.page-promotions-new-user-bonus__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-promotions-new-user-bonus__btn-secondary:hover {
  background-color: #ffffff;
  color: #017439;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-promotions-new-user-bonus__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background image */
}

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

.page-promotions-new-user-bonus__overview-section {
  padding: 60px 0;
  background-color: #ffffff; /* Light background for contrast */
  color: #333333; /* Dark text for light background */
}

.page-promotions-new-user-bonus__overview-section .page-promotions-new-user-bonus__section-title {
  color: #017439; /* Brand color for title on light background */
}

.page-promotions-new-user-bonus__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-new-user-bonus__details-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background */
  color: #ffffff;
}

.page-promotions-new-user-bonus__details-section .page-promotions-new-user-bonus__section-title {
  color: #FFFF00; /* Yellow title on dark background */
}

.page-promotions-new-user-bonus__cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-promotions-new-user-bonus__card {
  background-color: #2a2a2a; /* Darker card background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

.page-promotions-new-user-bonus__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__card-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFFF00; /* Yellow title on dark card */
}

.page-promotions-new-user-bonus__card-text {
  font-size: 1em;
  line-height: 1.7;
  text-align: justify;
}

.page-promotions-new-user-bonus__cta-section {
  text-align: center;
  margin-top: 40px;
}

.page-promotions-new-user-bonus__guide-section {
  padding: 60px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-promotions-new-user-bonus__guide-section .page-promotions-new-user-bonus__section-title {
  color: #017439;
}

.page-promotions-new-user-bonus__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-promotions-new-user-bonus__step-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333333;
}

.page-promotions-new-user-bonus__step-icon {
  background-color: #017439;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__step-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #017439;
}

.page-promotions-new-user-bonus__step-text {
  font-size: 1em;
  line-height: 1.7;
  text-align: justify;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__btn-step {
  background-color: #C30808;
  color: #FFFF00;
  border: 2px solid #C30808;
  padding: 10px 20px;
  font-size: 0.9em;
  width: 100%;
  max-width: 250px; /* Constrain button width */
}

.page-promotions-new-user-bonus__btn-step:hover {
  background-color: #e02a2a;
  color: #ffffff;
}

.page-promotions-new-user-bonus__note-block {
  background-color: #fffbe6; /* Light yellow background for notes */
  border-left: 5px solid #ffcc00;
  padding: 25px;
  border-radius: 8px;
  margin-top: 40px;
  color: #333333;
}

.page-promotions-new-user-bonus__note-title {
  font-size: 1.5em;
  color: #cc9900;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__note-list {
  list-style: disc inside;
  padding-left: 20px;
}

.page-promotions-new-user-bonus__note-list li {
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__terms-section {
  padding: 60px 0;
  background-color: #017439;
  color: #ffffff;
}

.page-promotions-new-user-bonus__terms-section .page-promotions-new-user-bonus__section-title {
  color: #ffffff;
}

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

.page-promotions-new-user-bonus__term-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}