/* style/promotions-new-user-bonuses.css */
.page-promotions-new-user-bonuses {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #FFFFFF; /* Ensures main content area background */
}

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

.page-promotions-new-user-bonuses__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions-new-user-bonuses__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

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

.page-promotions-new-user-bonuses__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-promotions-new-user-bonuses__hero-content {
  position: relative;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Overlap slightly for visual flow, but content itself is below image */
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.page-promotions-new-user-bonuses__main-title {
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions-new-user-bonuses__description {
  font-size: 1.15em;
  margin-bottom: 30px;
  color: #333333;
}

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

.page-promotions-new-user-bonuses__btn-primary,
.page-promotions-new-user-bonuses__btn-secondary,
.page-promotions-new-user-bonuses__btn-outline {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-new-user-bonuses__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-promotions-new-user-bonuses__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-promotions-new-user-bonuses__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-promotions-new-user-bonuses__btn-secondary:hover {
  background-color: #e0f2f7;
  color: #1e87b7;
}

.page-promotions-new-user-bonuses__btn-outline {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  padding: 10px 20px;
  font-size: 1em;
}

.page-promotions-new-user-bonuses__btn-outline:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-promotions-new-user-bonuses__benefits-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

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

.page-promotions-new-user-bonuses__benefit-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promotions-new-user-bonuses__benefit-card:hover {
  transform: translateY(-10px);
}

.page-promotions-new-user-bonuses__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonuses__card-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonuses__card-text {
  color: #555555;
  font-size: 1em;
}

.page-promotions-new-user-bonuses__promo-types-section {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-promotions-new-user-bonuses__promo-types-section .page-promotions-new-user-bonuses__section-title,
.page-promotions-new-user-bonuses__promo-types-section .page-promotions-new-user-bonuses__section-intro {
  color: #FFFFFF;
}

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

.page-promotions-new-user-bonuses__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

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

.page-promotions-new-user-bonuses__promo-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  color: #FFFFFF;
}

.page-promotions-new-user-bonuses__promo-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-promotions-new-user-bonuses__promo-text {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions-new-user-bonuses__registration-guide-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-promotions-new-user-bonuses__guide-step {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-new-user-bonuses__step-icon {
  width: 60px;
  height: 60px;
  background-color: #26A9E0;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: 700;
  margin: 0 auto 20px auto;
}

.page-promotions-new-user-bonuses__step-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonuses__step-text {
  color: #555555;
  font-size: 1em;
}

.page-promotions-new-user-bonuses__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonuses__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-promotions-new-user-bonuses__terms-section {
  padding: 80px 0;
  background-color: #333333;
  color: #FFFFFF;
}

.page-promotions-new-user-bonuses__terms-section .page-promotions-new-user-bonuses__section-title,
.page-promotions-new-user-bonuses__terms-section .page-promotions-new-user-bonuses__section-intro {
  color: #FFFFFF;
}

.page-promotions-new-user-bonuses__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonuses__terms-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  color: #FFFFFF;
}

.page-promotions-new-user-bonuses__terms-item::before {
  content: '✓';
  color: #26A9E0;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-promotions-new-user-bonuses__faq-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.page-promotions-new-user-bonuses__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-promotions-new-user-bonuses__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-new-user-bonuses__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  background-color: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
}

.page-promotions-new-user-bonuses__faq-item[open] .page-promotions-new-user-bonuses__faq-question {
  border-bottom: 1px solid transparent;
}

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

.page-promotions-new-user-bonuses__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
  margin-left: 15px;
}

.page-promotions-new-user-bonuses__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1em;
  color: #555555;
  background-color: #ffffff;
}

.page-promotions-new-user-bonuses__faq-answer p {
  margin: 0;
}

.page-promotions-new-user-bonuses__why-choose-us-section {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-promotions-new-user-bonuses__why-choose-us-section .page-promotions-new-user-bonuses__section-title,
.page-promotions-new-user-bonuses__why-choose-us-section .page-promotions-new-user-bonuses__section-intro {
  color: #FFFFFF;
}

.page-promotions-new-user-bonuses__why-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.page-promotions-new-user-bonuses__why-item {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 18px 25px;
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 1.1em;
  display: flex;
  align-items: center;
}

.page-promotions-new-user-bonuses__why-item::before {
  content: '★';
  color: #FFFFFF;
  font-weight: bold;
  margin-right: 12px;
  font-size: 1.2em;
}

.page-promotions-new-user-bonuses__cta-final {
  text-align: center;
  margin-top: 60px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonuses__hero-content {
    margin-top: -50px;
    padding: 30px;
  }

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

  .page-promotions-new-user-bonuses__main-title {
    font-size: 2.5em;
  }
}

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

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

  .page-promotions-new-user-bonuses__hero-section {
    padding-bottom: 40px;
    padding-top: 10px !important; /* body handles --header-offset, small top padding here */
  }

  .page-promotions-new-user-bonuses__hero-content {
    margin-top: -30px;
    padding: 25px;
    border-radius: 8px;
  }

  .page-promotions-new-user-bonuses__main-title {
    font-size: clamp(1.8em, 6vw, 2.2em); /* Clamp for responsive H1 */
    margin-bottom: 15px;
  }

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

  .page-promotions-new-user-bonuses__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-promotions-new-user-bonuses__btn-primary,
  .page-promotions-new-user-bonuses__btn-secondary,
  .page-promotions-new-user-bonuses__btn-outline {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    border-radius: 6px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-promotions-new-user-bonuses__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-promotions-new-user-bonuses__benefits-section,
  .page-promotions-new-user-bonuses__promo-types-section,
  .page-promotions-new-user-bonuses__registration-guide-section,
  .page-promotions-new-user-bonuses__terms-section,
  .page-promotions-new-user-bonuses__faq-section,
  .page-promotions-new-user-bonuses__why-choose-us-section {
    padding: 40px 0;
  }

  .page-promotions-new-user-bonuses__benefit-grid,
  .page-promotions-new-user-bonuses__promo-card-wrapper,
  .page-promotions-new-user-bonuses__guide-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-promotions-new-user-bonuses__card-title,
  .page-promotions-new-user-bonuses__promo-title,
  .page-promotions-new-user-bonuses__step-title {
    font-size: 1.4em;
  }

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

  .page-promotions-new-user-bonuses__faq-question {
    font-size: 1.05em;
    padding: 15px 20px;
  }

  .page-promotions-new-user-bonuses__faq-answer {
    padding: 12px 20px 15px 20px;
  }

  .page-promotions-new-user-bonuses__terms-item,
  .page-promotions-new-user-bonuses__why-item {
    font-size: 0.95em;
    padding: 15px;
  }

  /* Image responsiveness */
  .page-promotions-new-user-bonuses img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Video responsiveness */
  .page-promotions-new-user-bonuses video,
  .page-promotions-new-user-bonuses__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-new-user-bonuses__video-section,
  .page-promotions-new-user-bonuses__video-container,
  .page-promotions-new-user-bonuses__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

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

  .page-promotions-new-user-bonuses__main-title {
    font-size: clamp(1.5em, 7vw, 2em); /* Further clamp for smaller screens */
  }

  .page-promotions-new-user-bonuses__section-title {
    font-size: 1.6em;
  }

  .page-promotions-new-user-bonuses__cta-buttons {
    gap: 10px;
  }
}