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

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

.page-promotions-new-user-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}

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

.page-promotions-new-user-bonus__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  color: #FFF3E6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-bonus__hero-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #FFF3E6;
  font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive H1 font size */
}

.page-promotions-new-user-bonus__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-promotions-new-user-bonus__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFA53A; /* Auxiliary color for titles */
}

.page-promotions-new-user-bonus__content-section {
  padding: 60px 0;
}

.page-promotions-new-user-bonus__dark-bg {
  background-color: #0D0E12;
  color: #FFF3E6;
}

.page-promotions-new-user-bonus__light-bg {
  background-color: #17191F; /* Card BG, but used as light for contrast */
  color: #FFF3E6;
}

.page-promotions-new-user-bonus__text-block {
  font-size: 1.1rem;
  margin-bottom: 30px;
  text-align: justify;
}

.page-promotions-new-user-bonus__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-new-user-bonus__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff; /* White text for primary button */
  border: 2px solid transparent;
}

.page-promotions-new-user-bonus__btn-primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 140, 26, 0.4);
}

.page-promotions-new-user-bonus__btn-secondary {
  background: #17191F;
  color: #FF8C1A; /* Brand color for secondary button text */
  border: 2px solid #FF8C1A;
  margin-top: 20px;
}

.page-promotions-new-user-bonus__btn-secondary:hover {
  background: #FF8C1A;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 140, 26, 0.4);
}

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

.page-promotions-new-user-bonus__card {
  background-color: #17191F; /* Card BG */
  color: #FFF3E6; /* Text Main */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #A84F0C; /* Border */
}

.page-promotions-new-user-bonus__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFA53A;
}

.page-promotions-new-user-bonus__card-description {
  font-size: 1rem;
  text-align: justify;
}

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

.page-promotions-new-user-bonus__step-item {
  background-color: #17191F;
  color: #FFF3E6;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
}

.page-promotions-new-user-bonus__step-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFA53A;
}

.page-promotions-new-user-bonus__step-description {
  font-size: 1rem;
  text-align: justify;
}

.page-promotions-new-user-bonus__terms-list,
.page-promotions-new-user-bonus__benefits-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.page-promotions-new-user-bonus__terms-item,
.page-promotions-new-user-bonus__benefit-item {
  background-color: #17191F;
  color: #FFF3E6;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
}

.page-promotions-new-user-bonus__terms-title,
.page-promotions-new-user-bonus__benefit-item strong {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FF8C1A;
}

.page-promotions-new-user-bonus__terms-description {
  font-size: 1rem;
  text-align: justify;
}

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

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

.page-promotions-new-user-bonus__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2rem;
  color: #FFA53A;
  transition: background-color 0.3s ease;
}

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

.page-promotions-new-user-bonus__faq-item summary:hover {
  background-color: rgba(255, 140, 26, 0.1);
}

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

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

.page-promotions-new-user-bonus__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: #FFF3E6;
  border-top: 1px solid rgba(168, 79, 12, 0.5);
}

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

  .page-promotions-new-user-bonus__container {
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

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

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

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

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

  .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: 12px 20px;
    font-size: 1rem;
  }

  .page-promotions-new-user-bonus__card-grid,
  .page-promotions-new-user-bonus__steps-grid,
  .page-promotions-new-user-bonus__terms-list,
  .page-promotions-new-user-bonus__benefits-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-new-user-bonus__card,
  .page-promotions-new-user-bonus__step-item,
  .page-promotions-new-user-bonus__terms-item,
  .page-promotions-new-user-bonus__benefit-item {
    padding: 20px;
  }

  .page-promotions-new-user-bonus__card-image {
    height: 180px;
  }

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

  .page-promotions-new-user-bonus__step-title,
  .page-promotions-new-user-bonus__terms-title,
  .page-promotions-new-user-bonus__benefit-item strong {
    font-size: 1.2rem;
  }

  .page-promotions-new-user-bonus__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

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

  .page-promotions-new-user-bonus__hero-content {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    padding: 20px 15px;
    margin-top: -200px; /* Adjust to bring content up over the image */
    background: linear-gradient(0deg, #0D0E12 0%, rgba(13, 14, 18, 0.8) 50%, transparent 100%);
  }

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