.page-promotions-new-user-bonus {
  background-color: #08160F; /* Background color */
  color: #F2FFF6; /* Main text color */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions-new-user-bonus__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  margin-bottom: 40px;
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.page-promotions-new-user-bonus__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-promotions-new-user-bonus__hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  background: linear-gradient(0deg, rgba(8, 22, 15, 0.9) 0%, rgba(8, 22, 15, 0) 100%);
  z-index: 2;
  color: #F2FFF6;
}

.page-promotions-new-user-bonus__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold */
}

.page-promotions-new-user-bonus__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #A7D9B8;
}

.page-promotions-new-user-bonus__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-promotions-new-user-bonus__section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #08160F;
}

.page-promotions-new-user-bonus__section:nth-of-type(even) {
  background-color: #11271B; /* Card BG */
}

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

.page-promotions-new-user-bonus__container--center {
  text-align: center;
}

.page-promotions-new-user-bonus__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: #57E38D; /* Glow */
  position: relative;
  padding-bottom: 10px;
}

.page-promotions-new-user-bonus__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #F2C14E; /* Gold */
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-promotions-new-user-bonus__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-promotions-new-user-bonus__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__list-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #F2FFF6;
  display: flex;
  align-items: flex-start;
}

.page-promotions-new-user-bonus__list-item::before {
  content: '✓';
  color: #2AD16F;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
  line-height: 1;
}

.page-promotions-new-user-bonus__list-item strong {
  color: #F2C14E;
}

.page-promotions-new-user-bonus__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border: 2px solid #2E7A4E;
}

.page-promotions-new-user-bonus__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
  max-width: 45%;
}

.page-promotions-new-user-bonus__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
  max-width: 45%;
}

.page-promotions-new-user-bonus__how-to-claim .page-promotions-new-user-bonus__text-block {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions-new-user-bonus__step-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: center;
}

.page-promotions-new-user-bonus__step-item::before {
  content: attr(data-step);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #2AD16F;
  color: #08160F;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  border: 3px solid #08160F;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__step-item:nth-child(1)::before { content: '1'; }
.page-promotions-new-user-bonus__step-item:nth-child(2)::before { content: '2'; }
.page-promotions-new-user-bonus__step-item:nth-child(3)::before { content: '3'; }
.page-promotions-new-user-bonus__step-item:nth-child(4)::before { content: '4'; }
.page-promotions-new-user-bonus__step-item:nth-child(5)::before { content: '5'; }
.page-promotions-new-user-bonus__step-item:nth-child(6)::before { content: '6'; }

.page-promotions-new-user-bonus__step-title {
  font-size: 1.4rem;
  color: #F2C14E;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__step-description {
  font-size: 0.95rem;
  color: #A7D9B8;
}

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

.page-promotions-new-user-bonus__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #1E3A2A; /* Divider */
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-promotions-new-user-bonus__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D;
}

.page-promotions-new-user-bonus__faq-item[open] .page-promotions-new-user-bonus__faq-toggle {
  content: '−';
}

.page-promotions-new-user-bonus__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: #A7D9B8;
  border-top: 1px solid #2E7A4E;
}

.page-promotions-new-user-bonus__faq-answer p {
  margin-top: 15px;
}

.page-promotions-new-user-bonus__cta-final {
  background-color: #0A4B2C; /* Deep Green */
  padding: 80px 0;
  text-align: center;
}

.page-promotions-new-user-bonus__cta-final .page-promotions-new-user-bonus__section-title {
  color: #F2C14E;
}

.page-promotions-new-user-bonus__cta-final .page-promotions-new-user-bonus__description {
  font-size: 1.2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* Clearfix for floating images */
.page-promotions-new-user-bonus__container::after {
  content: '';
  display: table;
  clear: both;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__hero-content {
    padding: 15px;
  }

  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

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

  .page-promotions-new-user-bonus__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-promotions-new-user-bonus__section {
    padding: 40px 0;
  }

  .page-promotions-new-user-bonus__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  }

  .page-promotions-new-user-bonus__image--left,
  .page-promotions-new-user-bonus__image--right {
    float: none;
    margin: 30px auto;
    max-width: 80%;
  }

  .page-promotions-new-user-bonus__steps-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !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 !important;
    padding-right: 15px !important;
    overflow: hidden !important;
  }

  .page-promotions-new-user-bonus__hero-content {
    position: static;
    background: #08160F;
    padding: 20px 15px;
  }

  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-promotions-new-user-bonus__description {
    font-size: 0.95rem;
  }

  .page-promotions-new-user-bonus__cta-button,
  .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 !important;
    padding-right: 15px !important;
  }

  .page-promotions-new-user-bonus__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

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

@media (max-width: 480px) {
  .page-promotions-new-user-bonus__hero-content {
    padding: 15px;
  }

  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .page-promotions-new-user-bonus__cta-button {
    font-size: 0.9rem;
    padding: 12px 20px;
  }

  .page-promotions-new-user-bonus__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .page-promotions-new-user-bonus__list-item {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

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

  .page-promotions-new-user-bonus__step-title {
    font-size: 1.2rem;
  }
}