.page-promotions-new-user-bonus {
  color: #ffffff; /* Dark body background #0a0a0a, so use light text */
  background-color: #0a0a0a;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-promotions-new-user-bonus__hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  box-sizing: border-box;
}

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

.page-promotions-new-user-bonus__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
  z-index: 2;
}

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

.page-promotions-new-user-bonus__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold brand color */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-bonus__hero-description {
  font-size: 1.4em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-promotions-new-user-bonus__cta-button {
  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;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-new-user-bonus__cta-button--primary {
  background-color: #FFD700; /* Gold brand color */
  color: #0a0a0a; /* Dark text for contrast */
  border: 2px solid #FFD700;
}

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

.page-promotions-new-user-bonus__cta-button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold brand color */
  border: 2px solid #FFD700;
}

.page-promotions-new-user-bonus__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0a0a0a;
  transform: translateY(-3px);
}

.page-promotions-new-user-bonus__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-promotions-new-user-bonus__section {
  padding: 80px 20px;
  text-align: center;
  background-color: #0a0a0a;
  color: #ffffff;
  box-sizing: border-box;
}

.page-promotions-new-user-bonus__section--benefits {
  background-color: #1a1a1a;
}

.page-promotions-new-user-bonus__section--terms {
  background-color: #1a1a1a;
}

.page-promotions-new-user-bonus__section--faq {
  background-color: #0a0a0a;
}

.page-promotions-new-user-bonus__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 40px;
}

.page-promotions-new-user-bonus__section-intro {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 60px auto;
  color: #f0f0f0;
}

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

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

.page-promotions-new-user-bonus__benefit-item {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid #8B0000;
}

.page-promotions-new-user-bonus__benefit-icon {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
}

.page-promotions-new-user-bonus__benefit-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__benefit-text {
  color: #e0e0e0;
}

.page-promotions-new-user-bonus__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 60px;
}

.page-promotions-new-user-bonus__step-item {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid #8B0000;
}

.page-promotions-new-user-bonus__step-number {
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #0a0a0a;
  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-heading {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__step-text {
  color: #e0e0e0;
}

.page-promotions-new-user-bonus__guide-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 60px;
  display: block;
}

.page-promotions-new-user-bonus__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-promotions-new-user-bonus__terms-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-new-user-bonus__term-item {
  background-color: #2a2a2a;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  border-left: 5px solid #FFD700;
}

.page-promotions-new-user-bonus__term-heading {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__term-text {
  color: #e0e0e0;
}

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

.page-promotions-new-user-bonus__promo-card {
  background-color: #1a1a1a;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #8B0000;
}

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

.page-promotions-new-user-bonus__promo-heading {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__promo-text {
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions-new-user-bonus__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  margin-top: 50px;
}

.page-promotions-new-user-bonus__faq-item {
  background-color: #1a1a1a;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #8B0000;
}

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #2a2a2a;
  color: #FFD700;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus__faq-question:hover {
  background-color: #3a3a3a;
}

.page-promotions-new-user-bonus__faq-heading {
  font-size: 1.2em;
  margin: 0;
  color: inherit;
}

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions-new-user-bonus__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #e0e0e0;
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to accommodate content */
  padding: 20px 25px;
}

.page-promotions-new-user-bonus__faq-text {
  margin-bottom: 0;
}

.page-promotions-new-user-bonus__conclusion-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 40px;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 1.2em;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promotions-new-user-bonus__hero-section {
    height: 70vh;
    padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header offset */
  }
  .page-promotions-new-user-bonus__hero-title {
    font-size: 2em;
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 1em;
  }
  .page-promotions-new-user-bonus__section {
    padding: 60px 15px;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user-bonus__section-intro {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-promotions-new-user-bonus__benefits-grid,
  .page-promotions-new-user-bonus__guide-steps,
  .page-promotions-new-user-bonus__promos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions-new-user-bonus__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-new-user-bonus__cta-button,
  .page-promotions-new-user-bonus__cta-button--primary,
  .page-promotions-new-user-bonus__cta-button--secondary,
  .page-promotions-new-user-bonus a[class*="button"],
  .page-promotions-new-user-bonus a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-new-user-bonus__cta-buttons,
  .page-promotions-new-user-bonus__button-group,
  .page-promotions-new-user-bonus__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-promotions-new-user-bonus__cta-group {
    display: flex;
    flex-direction: column;
  }
  .page-promotions-new-user-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions-new-user-bonus__section,
  .page-promotions-new-user-bonus__card,
  .page-promotions-new-user-bonus__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-new-user-bonus__promo-image {
    height: 180px;
  }
  .page-promotions-new-user-bonus__benefit-icon {
    max-height: 200px;
  }
  .page-promotions-new-user-bonus__guide-image {
    max-height: 300px;
  }
  .page-promotions-new-user-bonus__conclusion-image {
    max-height: 400px;
  }
}