.page-promotions-new-user-bonus-details {
  --main-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-color: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;

  font-family: Arial, sans-serif;
  color: var(--text-main); /* Body background is dark, so main text is light */
  background-color: var(--background-color);
}

.page-promotions-new-user-bonus-details__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, larger bottom */
  box-sizing: border-box;
  overflow: hidden;
}

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

.page-promotions-new-user-bonus-details__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-promotions-new-user-bonus-details__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(8, 22, 15, 0.7); /* Use background-color with opacity */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-bonus-details__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--gold-color);
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus-details__description {
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 30px;
}

.page-promotions-new-user-bonus-details__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
  box-sizing: border-box;
  max-width: 100%;
}

.page-promotions-new-user-bonus-details__btn-primary {
  background: var(--button-gradient);
  color: #ffffff; /* Button text always white for contrast */
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions-new-user-bonus-details__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-promotions-new-user-bonus-details__btn-secondary {
  background: var(--card-bg);
  color: var(--main-color); /* Use brand color for contrast */
  border: 2px solid var(--main-color);
}

.page-promotions-new-user-bonus-details__btn-secondary:hover {
  background: var(--main-color);
  color: #ffffff;
}

.page-promotions-new-user-bonus-details__video-section {
  width: 100%;
  padding: 10px 20px 60px; /* Small top padding, larger bottom */
  background-color: var(--deep-green-color);
  text-align: center;
  box-sizing: border-box;
}

.page-promotions-new-user-bonus-details__video-container {
  width: 100%; /* Desktop must have width: 100% */
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-promotions-new-user-bonus-details__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #000;
  border-radius: 10px;
  width: 100%; /* Ensure wrapper takes full width */
  max-width: 100%; /* Ensure wrapper does not overflow */
  box-sizing: border-box;
}

.page-promotions-new-user-bonus-details__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block;
  cursor: pointer;
}

.page-promotions-new-user-bonus-details__video-description {
  color: var(--text-secondary);
  font-size: 1em;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
}

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

.page-promotions-new-user-bonus-details__section-title {
  font-size: 2.5em;
  color: var(--gold-color);
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
}

.page-promotions-new-user-bonus-details__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-promotions-new-user-bonus-details__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
}

.page-promotions-new-user-bonus-details__steps-list,
.page-promotions-new-user-bonus-details__terms-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.page-promotions-new-user-bonus-details__step-item,
.page-promotions-new-user-bonus-details__terms-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus-details__step-title,
.page-promotions-new-user-bonus-details__terms-title {
  font-size: 1.5em;
  color: var(--main-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-bonus-details__step-item p,
.page-promotions-new-user-bonus-details__terms-item p {
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-secondary);
}

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

.page-promotions-new-user-bonus-details__promotion-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus-details__promotion-card:hover {
  transform: translateY(-5px);
}

.page-promotions-new-user-bonus-details__card-title {
  font-size: 1.6em;
  color: var(--main-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-bonus-details__card-description {
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus-details__card-link {
  display: inline-block;
  color: var(--gold-color);
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid var(--gold-color);
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-promotions-new-user-bonus-details__card-link:hover {
  color: #ffffff;
  border-color: #ffffff;
}

.page-promotions-new-user-bonus-details__button-group {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 20px;
}

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

.page-promotions-new-user-bonus-details__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions-new-user-bonus-details__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  color: var(--text-main);
  font-weight: bold;
  list-style: none; /* For details summary */
}

.page-promotions-new-user-bonus-details__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

.page-promotions-new-user-bonus-details__faq-item summary {
  list-style: none; /* Hide default marker for Firefox */
}

.page-promotions-new-user-bonus-details__faq-toggle {
  font-size: 1.5em;
  font-weight: normal;
  color: var(--main-color);
  transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus-details__faq-item[open] .page-promotions-new-user-bonus-details__faq-toggle {
  transform: rotate(45deg); /* Rotate + to become x or - */
}

.page-promotions-new-user-bonus-details__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-secondary);
  opacity: 0.9;
}

.page-promotions-new-user-bonus-details__final-cta-section {
  text-align: center;
  background-color: var(--deep-green-color); /* Use a custom background for this section */
  padding: 80px 20px;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus-details__final-cta-section .page-promotions-new-user-bonus-details__section-title {
  color: var(--gold-color);
}

.page-promotions-new-user-bonus-details__final-cta-section .page-promotions-new-user-bonus-details__text-secondary {
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-main);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus-details__main-title {
    font-size: 2.5em;
  }
  .page-promotions-new-user-bonus-details__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus-details__hero-content {
    padding: 20px;
  }
  .page-promotions-new-user-bonus-details__main-title {
    font-size: clamp(1.8em, 5vw, 2.2em) !important; /* Use clamp for H1 */
  }
  .page-promotions-new-user-bonus-details__description {
    font-size: 1em;
  }
  .page-promotions-new-user-bonus-details__section-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user-bonus-details__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em;
  }
  .page-promotions-new-user-bonus-details__button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-new-user-bonus-details__content-area,
  .page-promotions-new-user-bonus-details__video-section {
    padding: 30px 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-promotions-new-user-bonus-details__video-container,
  .page-promotions-new-user-bonus-details__video-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-promotions-new-user-bonus-details__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-new-user-bonus-details img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important; /* Enforce min size even on mobile */
    min-height: 200px !important;
  }
  .page-promotions-new-user-bonus-details__promotion-card {
    padding: 20px;
  }
  .page-promotions-new-user-bonus-details__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions-new-user-bonus-details__faq-answer {
    padding: 0 20px 15px;
  }
  .page-promotions-new-user-bonus-details__hero-section {
    padding: 10px 15px 40px;
  }
  .page-promotions-new-user-bonus-details__final-cta-section {
    padding: 50px 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-bonus-details__main-title {
    font-size: clamp(1.5em, 6vw, 2em) !important;
  }
  .page-promotions-new-user-bonus-details__section-title {
    font-size: 1.5em;
  }
  .page-promotions-new-user-bonus-details__step-title,
  .page-promotions-new-user-bonus-details__terms-title {
    font-size: 1.3em;
  }
  .page-promotions-new-user-bonus-details__promotion-card {
    padding: 15px;
  }
}