/* style/promotions-new-user-bonus.css */

/* Base styles for the page content, considering body background #0a0a0a (dark) */
.page-promotions-new-user-bonus {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.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;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background-color: #0a0a0a; /* Ensure consistency with body background */
  color: #ffffff;
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

.page-promotions-new-user-bonus__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Ensure min size */
}

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

.page-promotions-new-user-bonus__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
  /* Using clamp for responsive font size, avoiding fixed large values */
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

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

.page-promotions-new-user-bonus__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  min-width: 200px; /* Ensure min button width */
  max-width: 100%;
}

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

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

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

.page-promotions-new-user-bonus__btn-secondary:hover {
  background: #26A9E0;
  color: #ffffff;
}

.page-promotions-new-user-bonus__cta-buttons--centered {
  justify-content: center;
}

.page-promotions-new-user-bonus__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-promotions-new-user-bonus__intro-section,
.page-promotions-new-user-bonus__registration-guide,
.page-promotions-new-user-bonus__faq-section,
.page-promotions-new-user-bonus__cta-section {
  background-color: #0a0a0a; /* Dark background sections */
  color: #ffffff;
  padding: 60px 0;
}

.page-promotions-new-user-bonus__offer-details,
.page-promotions-new-user-bonus__terms-conditions {
  background-color: #ffffff; /* Light background sections */
  color: #333333;
  padding: 60px 0;
}

.page-promotions-new-user-bonus__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: inherit; /* Inherit color from parent section */
}

.page-promotions-new-user-bonus__text-link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-promotions-new-user-bonus__text-link:hover {
  color: #1e87b7;
}

.page-promotions-new-user-bonus__highlight {
  color: #EA7C07; /* Login color for highlights */
  font-weight: bold;
}

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

.page-promotions-new-user-bonus__card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark background sections */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: inherit; /* Inherit text color */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-new-user-bonus__offer-details .page-promotions-new-user-bonus__card {
  background: #f8f8f8; /* Light background for cards in light sections */
  color: #333333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus__card-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Recommended size for card images */
  border-radius: 8px;
  margin-bottom: 20px;
  min-height: 200px;
  object-fit: cover;
}

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

.page-promotions-new-user-bonus__card-text {
  font-size: 1rem;
  color: inherit;
}

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

.page-promotions-new-user-bonus__step-item {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.page-promotions-new-user-bonus__step-description {
  font-size: 0.95rem;
  color: #f0f0f0;
}

.page-promotions-new-user-bonus__guide-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  margin: 40px auto;
  display: block;
  border-radius: 10px;
  min-height: 200px;
  object-fit: cover;
}

.page-promotions-new-user-bonus__sub-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  color: #ffffff;
}

.page-promotions-new-user-bonus__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: inherit;
}

.page-promotions-new-user-bonus__list li {
  margin-bottom: 10px;
  color: inherit;
}

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

.page-promotions-new-user-bonus__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  cursor: pointer;
  background-color: #26A9E0; /* Brand color for FAQ questions */
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none; /* For details/summary */
}

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

.page-promotions-new-user-bonus__faq-qtext {
  flex-grow: 1;
  /* pointer-events: none; - Removed as per clarification to allow click on summary */
}

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 1.8rem;
  margin-left: 15px;
  /* pointer-events: none; - Removed as per clarification to allow click on summary */
}

.page-promotions-new-user-bonus__faq-answer {
  padding: 15px 25px;
  font-size: 1rem;
  color: #f0f0f0;
  background-color: rgba(255, 255, 255, 0.05);
}

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

.page-promotions-new-user-bonus__cta-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  margin: 40px auto 0 auto;
  display: block;
  border-radius: 10px;
  min-height: 200px;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__hero-section {
    padding-bottom: 40px;
  }
  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }
  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 1rem;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }
  .page-promotions-new-user-bonus__cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .page-promotions-new-user-bonus__btn-primary,
  .page-promotions-new-user-bonus__btn-secondary {
    width: 100% !important; /* Force full width on mobile */
    max-width: 300px !important; /* Cap max width for buttons */
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions-new-user-bonus__container,
  .page-promotions-new-user-bonus__intro-section,
  .page-promotions-new-user-bonus__offer-details,
  .page-promotions-new-user-bonus__registration-guide,
  .page-promotions-new-user-bonus__terms-conditions,
  .page-promotions-new-user-bonus__faq-section,
  .page-promotions-new-user-bonus__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important;
  }

  .page-promotions-new-user-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-new-user-bonus__card-image,
  .page-promotions-new-user-bonus__guide-image,
  .page-promotions-new-user-bonus__cta-image {
    min-height: 150px; /* Adjust min height for mobile to prevent tiny images */
  }

  .page-promotions-new-user-bonus__grid-container,
  .page-promotions-new-user-bonus__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-new-user-bonus__text-block,
  .page-promotions-new-user-bonus__list,
  .page-promotions-new-user-bonus__faq-answer p {
    font-size: 0.95rem;
  }
  .page-promotions-new-user-bonus__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-promotions-new-user-bonus__faq-toggle {
    font-size: 1.5rem;
  }
  .page-promotions-new-user-bonus__sub-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 0.9rem;
  }
  .page-promotions-new-user-bonus__card-title {
    font-size: 1.3rem;
  }
}