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

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

.page-promotions-new-user__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px; /* Base padding, will be adjusted by body padding-top for header offset */
  padding-bottom: 60px;
  text-align: center;
  background-color: #17191F;
}

.page-promotions-new-user__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-width: 1920px;
  margin-bottom: 30px; /* Space between image and content */
}

.page-promotions-new-user__hero-content {
  max-width: 900px;
  z-index: 1;
  padding: 0 20px;
}

.page-promotions-new-user__main-title {
  color: #FFB04D;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-promotions-new-user__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF3E6;
}

.page-promotions-new-user__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-promotions-new-user__btn-primary,
.page-promotions-new-user__btn-secondary,
.page-promotions-new-user__btn-small {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-promotions-new-user__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-promotions-new-user__btn-primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  box-shadow: 0 0 15px rgba(255, 165, 58, 0.6);
}

.page-promotions-new-user__btn-secondary {
  background: #17191F;
  color: #FFA53A;
  border: 2px solid #FFA53A;
}

.page-promotions-new-user__btn-secondary:hover {
  background: #FFA53A;
  color: #17191F;
}

.page-promotions-new-user__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  border: none;
}

.page-promotions-new-user__btn-small:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
}

.page-promotions-new-user__section {
  padding: 60px 0;
  background-color: #0D0E12;
}

.page-promotions-new-user__section:nth-of-type(even) {
  background-color: #17191F;
}

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

.page-promotions-new-user__introduction p,
.page-promotions-new-user__how-to-claim p,
.page-promotions-new-user__why-choose p,
.page-promotions-new-user__faq-answer p,
.page-promotions-new-user__cta-final p {
  color: #FFF3E6;
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-new-user__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  max-width: 800px;
}

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

.page-promotions-new-user__card {
  background-color: #17191F;
  border: 1px solid #A84F0C;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-new-user__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

.page-promotions-new-user__steps-list li {
  background-color: #17191F;
  border: 1px solid #A84F0C;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user__step-title {
  color: #FFA53A;
  font-size: 1.8em;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-new-user__steps-list li .page-promotions-new-user__btn-primary {
    margin-top: 20px;
}

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

.page-promotions-new-user__features-list li {
  background-color: #17191F;
  border: 1px solid #A84F0C;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-new-user__feature-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin: 15px 0;
}

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

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

.page-promotions-new-user__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: #FFA53A;
  font-size: 1.2em;
  font-weight: bold;
  list-style: none;
  background-color: #17191F;
}

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

.page-promotions-new-user__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-promotions-new-user__faq-answer {
  padding: 0 25px 20px;
  color: #FFF3E6;
  font-size: 1em;
}

.page-promotions-new-user__cta-final {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-new-user__hero-section {
    padding: 40px 20px;
  }
  .page-promotions-new-user__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-promotions-new-user__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, this is for decorative top padding */
    padding-bottom: 40px;
  }
  .page-promotions-new-user__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .page-promotions-new-user__description {
    font-size: 1em;
  }
  .page-promotions-new-user__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-new-user__btn-primary,
  .page-promotions-new-user__btn-secondary,
  .page-promotions-new-user a[class*="button"],
  .page-promotions-new-user 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__cta-buttons,
  .page-promotions-new-user__button-group,
  .page-promotions-new-user__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-promotions-new-user img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-new-user__section,
  .page-promotions-new-user__card,
  .page-promotions-new-user__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-new-user__hero-image {
    margin-bottom: 20px;
  }
  .page-promotions-new-user__card-image {
    height: 180px;
  }
  .page-promotions-new-user__section-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user__step-title,
  .page-promotions-new-user__feature-title {
    font-size: 1.3em;
  }
  .page-promotions-new-user__faq-question {
    font-size: 1.1em;
  }
  .page-promotions-new-user__faq-answer {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }
  .page-promotions-new-user__main-title {
    font-size: clamp(1.5rem, 9vw, 2rem);
  }
  .page-promotions-new-user__section-title {
    font-size: 1.5em;
  }
  .page-promotions-new-user__card-title {
    font-size: 1.2em;
  }
}