/* style/promotions-new-user-bonus.css */
.page-promotions-new-user-bonus {
  font-family: Arial, sans-serif;
  color: #f0f0f0; /* Light text for dark body background */
  line-height: 1.6;
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-promotions-new-user-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #1a1a1a; /* Dark background for hero */
  color: #ffffff;
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-promotions-new-user-bonus__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-promotions-new-user-bonus__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-bonus__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-promotions-new-user-bonus__btn-primary {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1a1a1a; /* Dark text for gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
}

.page-promotions-new-user-bonus__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promotions-new-user-bonus__btn-primary--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-promotions-new-user-bonus__btn-primary--full-width {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.page-promotions-new-user-bonus__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary button */
  border: 2px solid #FFD700;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promotions-new-user-bonus__btn-secondary:hover {
  background-color: #FFD700;
  color: #1a1a1a; /* Dark text on hover */
}

.page-promotions-new-user-bonus__section {
  padding: 60px 20px;
  background-color: #1a1a1a;
  color: #f0f0f0;
}

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

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

.page-promotions-new-user-bonus__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions-new-user-bonus__feature-grid, 
.page-promotions-new-user-bonus__info-grid {
  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: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  color: #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.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-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__card-text {
  font-size: 1em;
  line-height: 1.7;
}

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

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

.page-promotions-new-user-bonus__steps-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 30px;
}

.page-promotions-new-user-bonus__step-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-promotions-new-user-bonus__step-item {
  counter-increment: step-counter;
  margin-bottom: 25px;
  padding-left: 50px;
  position: relative;
  font-size: 1.1em;
  text-align: left;
}

.page-promotions-new-user-bonus__step-item::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #8B0000; /* Dark red for step numbers */
  color: #ffffff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-promotions-new-user-bonus__image-block {
  margin: 40px 0;
  text-align: center;
}

.page-promotions-new-user-bonus__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: block; /* Ensure it behaves as a block element */
  margin: 0 auto;
}

.page-promotions-new-user-bonus__list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-promotions-new-user-bonus__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-promotions-new-user-bonus__list-item::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #FFD700;
}

.page-promotions-new-user-bonus__content-grid {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.page-promotions-new-user-bonus__text-content {
  flex: 2;
}

.page-promotions-new-user-bonus__image-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

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

.page-promotions-new-user-bonus__faq-section {
  background-color: #1a1a1a;
  padding-bottom: 80px;
}

.page-promotions-new-user-bonus__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__faq-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent for FAQ items */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.page-promotions-new-user-bonus__faq-title {
  font-size: 1.2em;
  color: #FFD700;
  margin: 0;
}

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-promotions-new-user-bonus__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 25px 25px;
}

.page-promotions-new-user-bonus__faq-answer p {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1em;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 1.2em;
  }
  .page-promotions-new-user-bonus__content-grid {
    flex-direction: column;
  }
  .page-promotions-new-user-bonus__image-block {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promotions-new-user-bonus__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure space for fixed header */
  }
  .page-promotions-new-user-bonus__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 1em;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-new-user-bonus__sub-title {
    font-size: 1.5em;
  }
  .page-promotions-new-user-bonus__text-block {
    font-size: 1em;
  }
  .page-promotions-new-user-bonus__section {
    padding: 40px 15px;
  }
  .page-promotions-new-user-bonus__feature-grid, 
  .page-promotions-new-user-bonus__info-grid {
    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__step-item {
    padding-left: 45px;
    font-size: 1em;
  }
  .page-promotions-new-user-bonus__step-item::before {
    width: 30px;
    height: 30px;
    font-size: 1em;
  }
  .page-promotions-new-user-bonus__list-item {
    font-size: 1em;
  }
  .page-promotions-new-user-bonus__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions-new-user-bonus__image-block,
  .page-promotions-new-user-bonus__container,
  .page-promotions-new-user-bonus__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-new-user-bonus__btn-primary,
  .page-promotions-new-user-bonus__btn-secondary,
  .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;
    margin-bottom: 10px; /* Add some space between stacked buttons */
  }
  .page-promotions-new-user-bonus__cta-buttons,
  .page-promotions-new-user-bonus__button-group,
  .page-promotions-new-user-bonus__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important;
    gap: 10px;
  }
  .page-promotions-new-user-bonus__faq-question {
    padding: 15px 20px;
  }
  .page-promotions-new-user-bonus__faq-title {
    font-size: 1.1em;
  }
  .page-promotions-new-user-bonus__faq-answer {
    padding: 0 20px;
  }
  .page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
    padding: 10px 20px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user-bonus__btn-primary {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promotions-new-user-bonus__btn-primary--large {
    padding: 15px 25px;
    font-size: 1.1em;
  }
}