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

/* Base styles for the page content, assuming dark body background */
.page-promotions-new-user-bonus {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* 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: 2.5rem;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-promotions-new-user-bonus__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions-new-user-bonus__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

/* CTA Button Styles */
.page-promotions-new-user-bonus__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-new-user-bonus__cta-button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main */
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

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

.page-promotions-new-user-bonus__cta-button--secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F; /* Main color from gradient */
  border: 2px solid #2E7A4E; /* Border */
}

.page-promotions-new-user-bonus__cta-button--secondary:hover {
  background: #1E3A2A; /* Divider */
  color: #F2FFF6; /* Text Main */
}

.page-promotions-new-user-bonus__cta-button--inline {
  padding: 8px 15px;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}

.page-promotions-new-user-bonus__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

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

.page-promotions-new-user-bonus__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-promotions-new-user-bonus__hero-description {
  font-size: 1.2rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Introduction Section */
.page-promotions-new-user-bonus__introduction-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}

.page-promotions-new-user-bonus__introduction-section .page-promotions-new-user-bonus__text-block {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px auto;
}

/* Details Section */
.page-promotions-new-user-bonus__details-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

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

.page-promotions-new-user-bonus__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6; /* Text Main */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-new-user-bonus__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__card-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__card-title {
  font-size: 1.5rem;
  color: #2AD16F; /* Main color from gradient */
  margin-bottom: 15px;
  font-weight: 700;
}

.page-promotions-new-user-bonus__card-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

/* How-To-Claim Section */
.page-promotions-new-user-bonus__how-to-claim-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}

.page-promotions-new-user-bonus__step-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  counter-reset: step-counter;
}

.page-promotions-new-user-bonus__step-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

.page-promotions-new-user-bonus__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main */
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 2px 10px rgba(42, 209, 111, 0.5);
}

.page-promotions-new-user-bonus__step-title {
  font-size: 1.3rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions-new-user-bonus__step-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

/* Terms and Conditions Section */
.page-promotions-new-user-bonus__terms-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-promotions-new-user-bonus__terms-section ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions-new-user-bonus__terms-section li {
  background-color: #11271B; /* Card BG */
  border-left: 5px solid #2AD16F; /* Main color from gradient */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

.page-promotions-new-user-bonus__terms-section li strong {
  color: #F2FFF6; /* Text Main */
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}

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

.page-promotions-new-user-bonus__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.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: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-promotions-new-user-bonus__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: #2AD16F; /* Main color from gradient */
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-promotions-new-user-bonus__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

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

/* Call to Action Section */
.page-promotions-new-user-bonus__cta-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
  text-align: center;
}

.page-promotions-new-user-bonus__cta-section .page-promotions-new-user-bonus__text-block {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__hero-title {
    font-size: clamp(2.2rem, 6vw, 3rem);
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 2rem;
  }
}

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

  .page-promotions-new-user-bonus__container {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-promotions-new-user-bonus__hero-image-wrapper,
  .page-promotions-new-user-bonus__card,
  .page-promotions-new-user-bonus__step-item,
  .page-promotions-new-user-bonus__faq-item,
  .page-promotions-new-user-bonus__cta-section .page-promotions-new-user-bonus__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Videos (if any) */
  .page-promotions-new-user-bonus video,
  .page-promotions-new-user-bonus__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .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;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-promotions-new-user-bonus__video-section {
    padding-top: 10px !important;
  }

  /* Buttons */
  .page-promotions-new-user-bonus__cta-button,
  .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;
  }
  .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-wrap: wrap !important;
    gap: 10px;
  }
  .page-promotions-new-user-bonus__cta-section .page-promotions-new-user-bonus__cta-button {
    margin-top: 20px;
  }

  .page-promotions-new-user-bonus__hero-section {
    padding-bottom: 40px;
  }
  .page-promotions-new-user-bonus__hero-title {
    font-size: 2rem;
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 1rem;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 1.8rem;
  }
  .page-promotions-new-user-bonus__grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-new-user-bonus__card {
    padding: 20px;
  }
  .page-promotions-new-user-bonus__step-list {
    grid-template-columns: 1fr;
  }
  .page-promotions-new-user-bonus__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-promotions-new-user-bonus__faq-answer {
    padding: 10px 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-bonus__hero-title {
    font-size: 1.8rem;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 1.5rem;
  }
  .page-promotions-new-user-bonus__cta-button {
    font-size: 1rem;
    padding: 12px 25px;
  }
  .page-promotions-new-user-bonus__card-title {
    font-size: 1.3rem;
  }
  .page-promotions-new-user-bonus__step-title {
    font-size: 1.1rem;
  }
}