/* style/promotions-new-user-bonus.css */
.page-promotions-new-user-bonus {
  color: #ffffff; /* Default text color 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__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: inherit;
  line-height: 1.2;
}

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

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

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

.page-promotions-new-user-bonus__hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken video for text contrast, not color change */
}

.page-promotions-new-user-bonus__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
}

.page-promotions-new-user-bonus__hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-bonus__hero-description {
  font-size: clamp(18px, 2.5vw, 24px);
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

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

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

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

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

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

/* Section Backgrounds & Text Colors */
.page-promotions-new-user-bonus__dark-bg {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 0;
}

.page-promotions-new-user-bonus__light-bg {
  background-color: #f5f5f5;
  color: #333333;
  padding: 60px 0;
}

/* Intro Section */
.page-promotions-new-user-bonus__intro-section .page-promotions-new-user-bonus__section-title {
  color: #26A9E0;
}

/* How to Claim Section */
.page-promotions-new-user-bonus__how-to-claim .page-promotions-new-user-bonus__section-title {
  color: #ffffff;
}

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

.page-promotions-new-user-bonus__step-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

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

.page-promotions-new-user-bonus__step-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-promotions-new-user-bonus__step-description {
  font-size: 16px;
}

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

/* Bonus Types Section */
.page-promotions-new-user-bonus__bonus-types .page-promotions-new-user-bonus__section-title {
  color: #26A9E0;
}

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

.page-promotions-new-user-bonus__bonus-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
  text-align: center;
}

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

.page-promotions-new-user-bonus__bonus-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-promotions-new-user-bonus__bonus-card-description {
  font-size: 16px;
}

/* Terms & Conditions Section */
.page-promotions-new-user-bonus__terms-conditions .page-promotions-new-user-bonus__section-title {
  color: #ffffff;
}

.page-promotions-new-user-bonus__terms-list {
  list-style-type: disc;
  margin-left: 25px;
  font-size: 17px;
  color: #e0e0e0;
}

.page-promotions-new-user-bonus__terms-list li {
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__terms-list strong {
  color: #26A9E0;
}

/* Why Choose Section */
.page-promotions-new-user-bonus__why-choose .page-promotions-new-user-bonus__section-title {
  color: #26A9E0;
}

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

.page-promotions-new-user-bonus__advantage-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
  text-align: center;
}

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

.page-promotions-new-user-bonus__advantage-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-promotions-new-user-bonus__advantage-description {
  font-size: 16px;
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-section .page-promotions-new-user-bonus__section-title {
  color: #ffffff;
}

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

.page-promotions-new-user-bonus__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  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: 18px;
  font-weight: 600;
  cursor: pointer;
  background-color: #26A9E0; /* Brand color for question background */
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  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;
  text-align: left;
}

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  margin-left: 15px;
  width: 20px;
  text-align: center;
}

.page-promotions-new-user-bonus__faq-answer {
  padding: 15px 25px;
  font-size: 16px;
  line-height: 1.6;
  background-color: rgba(255, 255, 255, 0.05);
  color: #e0e0e0;
}

/* Final CTA Section */
.page-promotions-new-user-bonus__cta-final {
  text-align: center;
  padding: 60px 20px;
}

.page-promotions-new-user-bonus__cta-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 20px;
  color: #26A9E0;
}

.page-promotions-new-user-bonus__cta-description {
  font-size: 18px;
  margin-bottom: 40px;
  color: #333333;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__hero-title {
    font-size: clamp(28px, 4.5vw, 48px);
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: clamp(16px, 2.2vw, 20px);
  }
  .page-promotions-new-user-bonus__btn-primary,
  .page-promotions-new-user-bonus__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__section-title,
  .page-promotions-new-user-bonus__cta-title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 20px;
  }
  .page-promotions-new-user-bonus__text-block,
  .page-promotions-new-user-bonus__hero-description,
  .page-promotions-new-user-bonus__step-description,
  .page-promotions-new-user-bonus__bonus-card-description,
  .page-promotions-new-user-bonus__advantage-description,
  .page-promotions-new-user-bonus__terms-list,
  .page-promotions-new-user-bonus__faq-answer p,
  .page-promotions-new-user-bonus__cta-description {
    font-size: 16px !important;
  }

  /* Images responsiveness */
  .page-promotions-new-user-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important; /* Ensure padding/border don't cause overflow */
  }
  .page-promotions-new-user-bonus__hero-video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Video containers responsiveness */
  .page-promotions-new-user-bonus__hero-video-wrapper,
  .page-promotions-new-user-bonus__video-section,
  .page-promotions-new-user-bonus__video-container,
  .page-promotions-new-user-bonus__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-promotions-new-user-bonus__hero-section {
    padding-top: 10px !important;
    padding-left: 0;
    padding-right: 0;
  }

  /* Button responsiveness */
  .page-promotions-new-user-bonus__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    padding: 0 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: 12px 15px !important;
    font-size: 16px !important;
  }

  /* General container padding for mobile */
  .page-promotions-new-user-bonus__container {
    padding: 0 15px !important;
  }
  .page-promotions-new-user-bonus__dark-bg, .page-promotions-new-user-bonus__light-bg {
    padding: 40px 0;
  }
  .page-promotions-new-user-bonus__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }
  .page-promotions-new-user-bonus__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-bonus__hero-section {
    min-height: 400px;
  }
  .page-promotions-new-user-bonus__hero-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: clamp(14px, 3.5vw, 18px);
  }
  .page-promotions-new-user-bonus__steps-grid,
  .page-promotions-new-user-bonus__bonus-grid,
  .page-promotions-new-user-bonus__advantages-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-new-user-bonus__step-card,
  .page-promotions-new-user-bonus__bonus-card,
  .page-promotions-new-user-bonus__advantage-card {
    padding: 20px;
  }
  .page-promotions-new-user-bonus__step-title,
  .page-promotions-new-user-bonus__bonus-card-title,
  .page-promotions-new-user-bonus__advantage-title {
    font-size: 20px;
  }
}