.page-promo-new-user-bonus {
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

@media (max-width: 768px) {
  .page-promo-new-user-bonus {
    overflow-x: hidden;
  }
}

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

.page-promo-new-user-bonus__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 768px) {
  .page-promo-new-user-bonus__container--flex {
    flex-direction: column;
    text-align: center;
  }
}

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

.page-promo-new-user-bonus__section:nth-of-type(odd) {
  background-color: #f8f8f8;
}

.page-promo-new-user-bonus__section-title {
  font-size: 2.8em;
  color: #0A0A0A; /* Primary color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .page-promo-new-user-bonus__section-title {
    font-size: 2em;
  }
}

.page-promo-new-user-bonus__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-promo-new-user-bonus__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.page-promo-new-user-bonus__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px; /* Max width for the entire hero content area */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promo-new-user-bonus__hero-image {
  width: 100%;
  height: auto; /* Responsive height */
  display: block;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability, not changing color */
}

.page-promo-new-user-bonus__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 10;
  padding: 20px;
  max-width: 90%;
}

.page-promo-new-user-bonus__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent for hero title */
  line-height: 1.2;
}

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

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

.page-promo-new-user-bonus__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .page-promo-new-user-bonus__hero-description {
    font-size: 1em;
  }
}

.page-promo-new-user-bonus__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .page-promo-new-user-bonus__hero-cta-group {
    flex-direction: column;
  }
}

.page-promo-new-user-bonus__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  white-space: nowrap; /* Prevent button text from wrapping */
}

.page-promo-new-user-bonus__button--primary {
  background-color: #FFD700; /* Gold */
  color: #0A0A0A; /* Dark text on gold */
  border: 2px solid #FFD700;
}

.page-promo-new-user-bonus__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-promo-new-user-bonus__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-promo-new-user-bonus__button--secondary:hover {
  background-color: #FFD700;
  color: #0A0A0A;
  transform: translateY(-2px);
}

.page-promo-new-user-bonus__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-promo-new-user-bonus__button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-promo-new-user-bonus__button--link {
  color: #FFD700;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  font-size: 1em;
}

.page-promo-new-user-bonus__button--link:hover {
  color: #e6c200;
  text-decoration: none;
  transform: none;
}

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

.page-promo-new-user-bonus__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-promo-new-user-bonus__feature-icon {
  width: 250px; /* Min width 200px */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-promo-new-user-bonus__feature-title {
  font-size: 1.5em;
  color: #0A0A0A;
  margin-bottom: 15px;
}

.page-promo-new-user-bonus__feature-description {
  font-size: 0.95em;
  color: #666666;
}

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

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

.page-promo-new-user-bonus__bonus-card:hover {
  transform: translateY(-5px);
  background-color: #1a1a1a;
}

.page-promo-new-user-bonus__bonus-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promo-new-user-bonus__bonus-description {
  font-size: 0.95em;
  color: #f0f0f0;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.page-promo-new-user-bonus__step-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promo-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: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-promo-new-user-bonus__step-title {
  font-size: 1.4em;
  color: #0A0A0A;
  margin-bottom: 10px;
}

.page-promo-new-user-bonus__step-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
}

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

.page-promo-new-user-bonus__tip-card {
  background-color: #0A0A0A;
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-promo-new-user-bonus__tip-card:hover {
  transform: translateY(-5px);
  background-color: #1a1a1a;
}

.page-promo-new-user-bonus__tip-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promo-new-user-bonus__tip-description {
  font-size: 0.95em;
  color: #f0f0f0;
}

.page-promo-new-user-bonus__mobile-content {
  flex: 1;
  padding-right: 20px;
}

@media (max-width: 768px) {
  .page-promo-new-user-bonus__mobile-content {
    padding-right: 0;
  }
}

.page-promo-new-user-bonus__mobile-subtitle {
  font-size: 1.8em;
  color: #0A0A0A;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-promo-new-user-bonus__mobile-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 30px;
}

.page-promo-new-user-bonus__mobile-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promo-new-user-bonus__mobile-image {
  width: 600px; /* HTML width 600, height 450 */
  height: 450px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  object-fit: contain;
}

@media (max-width: 768px) {
  .page-promo-new-user-bonus__mobile-image {
    max-width: 100%;
    height: auto;
    width: auto; /* Allow auto width to scale with max-width */
  }
}

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

.page-promo-new-user-bonus__security-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-promo-new-user-bonus__security-icon {
  width: 250px; /* Min width 200px */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-promo-new-user-bonus__security-title {
  font-size: 1.5em;
  color: #0A0A0A;
  margin-bottom: 15px;
}

.page-promo-new-user-bonus__security-description {
  font-size: 0.95em;
  color: #666666;
}

.page-promo-new-user-bonus__faq-accordion {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo-new-user-bonus__faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promo-new-user-bonus__faq-question {
  background-color: #f0f0f0;
  color: #0A0A0A;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  font-size: 1.1em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
}

.page-promo-new-user-bonus__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promo-new-user-bonus__faq-question.active {
  background-color: #FFD700;
  color: #0A0A0A;
}

.page-promo-new-user-bonus__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promo-new-user-bonus__faq-answer {
  padding: 0 25px;
  background-color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-promo-new-user-bonus__faq-answer p {
  padding: 15px 0;
  margin: 0;
  color: #555555;
}

.page-promo-new-user-bonus__cta-support {
  text-align: center;
  margin-top: 50px;
}

.page-promo-new-user-bonus__support-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-promo-new-user-bonus__section--final-cta {
  background-color: #0A0A0A;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-promo-new-user-bonus__section--final-cta .page-promo-new-user-bonus__section-title {
  color: #FFD700;
}

.page-promo-new-user-bonus__section--final-cta .page-promo-new-user-bonus__section-intro {
  color: #f0f0f0;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .page-promo-new-user-bonus__button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}