.page-promotions-new-user-bonus {
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --bg-color: #08160F;
  --card-bg-color: #11271B;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;

  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Body is dark, so text is light */
  background-color: var(--bg-color);
}

.page-promotions-new-user-bonus__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  box-sizing: border-box;
}

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

.page-promotions-new-user-bonus__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions-new-user-bonus__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em); /* Responsive font size for H1 */
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions-new-user-bonus__description {
  font-size: 1.1em;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
}

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

.page-promotions-new-user-bonus__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-promotions-new-user-bonus__section-title {
  font-size: 2.2em;
  color: var(--text-main-color);
  text-align: center;
  margin-bottom: 30px;
  margin-top: 50px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__text-block {
  font-size: 1em;
  color: var(--text-secondary-color);
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-new-user-bonus__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--button-gradient);
  color: #ffffff; /* White text on green button for contrast */
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-new-user-bonus__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-new-user-bonus__card {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: var(--text-main-color);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-promotions-new-user-bonus__card-title {
  font-size: 1.5em;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__list,
.page-promotions-new-user-bonus__ordered-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__list-item {
  color: var(--text-secondary-color);
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-promotions-new-user-bonus__list-item::before {
  content: '✔';
  color: var(--glow-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions-new-user-bonus__ordered-list .page-promotions-new-user-bonus__list-item::before {
  content: counter(list-item) '.';
  counter-increment: list-item;
  color: var(--glow-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions-new-user-bonus__list-item a,
.page-promotions-new-user-bonus__text-block a {
  color: var(--glow-color);
  text-decoration: underline;
}

.page-promotions-new-user-bonus__list-item a:hover,
.page-promotions-new-user-bonus__text-block a:hover {
  color: var(--gold-color);
}

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

.page-promotions-new-user-bonus__feature-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: var(--text-main-color);
}

.page-promotions-new-user-bonus__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__feature-title {
  font-size: 1.4em;
  color: var(--gold-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__feature-description {
  font-size: 0.95em;
  color: var(--text-secondary-color);
}

.page-promotions-new-user-bonus__registration-guide {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
  align-items: center;
}

.page-promotions-new-user-bonus__registration-image {
  flex: 1 1 400px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-promotions-new-user-bonus__registration-guide .page-promotions-new-user-bonus__ordered-list {
  flex: 1 1 400px;
}

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

.page-promotions-new-user-bonus__faq-list {
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-promotions-new-user-bonus__faq-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main-color);
}

.page-promotions-new-user-bonus__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--gold-color);
  background-color: var(--deep-green-color);
  border-bottom: 1px solid var(--divider-color);
}

.page-promotions-new-user-bonus__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-promotions-new-user-bonus__faq-qtext {
  flex-grow: 1;
}

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: var(--glow-color);
}

.page-promotions-new-user-bonus__faq-answer {
  padding: 20px;
  background-color: var(--card-bg-color);
  color: var(--text-secondary-color);
  font-size: 0.95em;
  border-top: 1px solid var(--divider-color);
}

.page-promotions-new-user-bonus__faq-answer p {
  margin-bottom: 0;
  color: var(--text-secondary-color);
}

.page-promotions-new-user-bonus__final-cta {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
}

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

/* Responsive styles */
@media (max-width: 768px) {
  .page-promotions-new-user-bonus {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions-new-user-bonus__hero-section {
    padding: 10px 15px 40px;
  }

  .page-promotions-new-user-bonus__hero-image {
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions-new-user-bonus__hero-content {
    padding: 0 15px;
  }

  .page-promotions-new-user-bonus__main-title {
    font-size: 2em;
  }

  .page-promotions-new-user-bonus__description {
    font-size: 1em;
  }

  .page-promotions-new-user-bonus__content-area {
    padding: 30px 15px;
  }

  .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__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-promotions-new-user-bonus__text-block {
    font-size: 0.95em;
  }

  .page-promotions-new-user-bonus__cta-button {
    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__card-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-new-user-bonus__card {
    padding: 20px;
  }

  .page-promotions-new-user-bonus__card-title {
    font-size: 1.3em;
  }

  .page-promotions-new-user-bonus__list-item {
    font-size: 0.9em;
  }

  .page-promotions-new-user-bonus__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-new-user-bonus__feature-item {
    padding: 25px;
  }

  .page-promotions-new-user-bonus__feature-icon {
    width: 80px;
    height: 80px;
  }

  .page-promotions-new-user-bonus__feature-title {
    font-size: 1.2em;
  }

  .page-promotions-new-user-bonus__registration-guide {
    flex-direction: column;
    gap: 20px;
  }

  .page-promotions-new-user-bonus__registration-image {
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions-new-user-bonus__faq-item summary {
    font-size: 1em;
    padding: 15px;
  }

  .page-promotions-new-user-bonus__faq-answer {
    padding: 15px;
  }

  .page-promotions-new-user-bonus__cta-image {
    width: 100% !important;
    height: auto !important;
  }
}