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

.page-promotions-new-user-bonus__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  background-color: #08160F;
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  z-index: 1;
}

.page-promotions-new-user-bonus__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: bold;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions-new-user-bonus__hero-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-promotions-new-user-bonus__btn-primary {
  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.1em;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

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

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

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

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

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

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

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

.page-promotions-new-user-bonus__card-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: rgba(34, 199, 104, 0.1);
  padding: 15px;
}

.page-promotions-new-user-bonus__card-title {
  font-size: 1.5em;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__card-description {
  font-size: 0.95em;
  color: #A7D9B8;
  text-align: center;
  flex-grow: 1;
}

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

.page-promotions-new-user-bonus__step-item {
  background-color: #11271B;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: left;
}

.page-promotions-new-user-bonus__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #57E38D; /* Glow */
  position: absolute;
  top: -15px;
  left: 15px;
  background-color: #0A4B2C;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #2E7A4E;
}

.page-promotions-new-user-bonus__step-title {
  font-size: 1.3em;
  color: #F2FFF6;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-promotions-new-user-bonus__guide-illustration {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__cta-bottom {
  margin-top: 30px;
  display: block;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__terms-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.page-promotions-new-user-bonus__terms-list li {
  background-color: #11271B;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions-new-user-bonus__terms-item-title {
  font-size: 1.2em;
  color: #F2FFF6;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__terms-item-description {
  font-size: 0.95em;
  color: #A7D9B8;
}

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

.page-promotions-new-user-bonus__faq-item {
  background-color: #11271B;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
  font-weight: bold;
  font-size: 1.1em;
  user-select: none;
  position: relative;
}

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

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

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 1.5em;
  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: 15px 20px;
  background-color: #11271B;
  color: #A7D9B8;
  font-size: 0.95em;
}

.page-promotions-new-user-bonus__faq-answer p {
  margin: 0;
  color: #A7D9B8;
}

.page-promotions-new-user-bonus__faq-illustration {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__link {
  color: #57E38D;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions-new-user-bonus__link:hover {
  color: #2AD16F;
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }

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

@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 0 40px 0;
  }

  .page-promotions-new-user-bonus__hero-image {
    max-height: 300px;
  }

  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-promotions-new-user-bonus__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-promotions-new-user-bonus__btn-primary {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-promotions-new-user-bonus__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions-new-user-bonus__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

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

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

  .page-promotions-new-user-bonus__card-icon {
    width: 100px;
    height: 100px;
  }

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

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

  .page-promotions-new-user-bonus__step-number {
    font-size: 2em;
    width: 40px;
    height: 40px;
    top: -10px;
    left: 10px;
  }

  .page-promotions-new-user-bonus__step-title {
    font-size: 1.1em;
    margin-top: 15px;
  }

  .page-promotions-new-user-bonus__terms-list li {
    padding: 15px;
  }

  .page-promotions-new-user-bonus__terms-item-title {
    font-size: 1.1em;
  }

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

  .page-promotions-new-user-bonus__faq-toggle {
    font-size: 1.2em;
  }

  /* Mobile responsive for images */
  .page-promotions-new-user-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Mobile responsive for buttons */
  .page-promotions-new-user-bonus__btn-primary,
  .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-bottom {
    width: 100% !important;
  }

  .page-promotions-new-user-bonus__benefits-grid,
  .page-promotions-new-user-bonus__bonus-grid,
  .page-promotions-new-user-bonus__guide-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(1.2em, 8vw, 2em);
  }

  .page-promotions-new-user-bonus__section-title {
    font-size: 1.5em;
  }

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