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

/* Base styles for the page content, ensuring contrast with body background */
.page-promotions-new-user-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.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, 48px);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-promotions-new-user-bonus__text-block {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
}

.page-promotions-new-user-bonus__card {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-new-user-bonus__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px #57E38D; /* Glow */
}

/* Buttons */
.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-promotions-new-user-bonus__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button custom color */
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-promotions-new-user-bonus__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

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

.page-promotions-new-user-bonus__btn-secondary:hover {
  background-color: #2AD16F;
  color: #F2FFF6; /* Text Main */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-promotions-new-user-bonus__btn-small {
  padding: 10px 20px;
  font-size: 16px;
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
  background-color: #08160F; /* Background */
}

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

.page-promotions-new-user-bonus__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

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

.page-promotions-new-user-bonus__main-title {
  font-size: clamp(38px, 5vw, 64px);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}

.page-promotions-new-user-bonus__description {
  font-size: 20px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
  line-height: 1.8;
}

.page-promotions-new-user-bonus__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

/* Intro Section */
.page-promotions-new-user-bonus__intro-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
  text-align: center;
}

.page-promotions-new-user-bonus__intro-section .page-promotions-new-user-bonus__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* How to Claim Section */
.page-promotions-new-user-bonus__how-to-claim-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

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

.page-promotions-new-user-bonus__step-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-promotions-new-user-bonus__step-image {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 1px solid #2E7A4E;
}

.page-promotions-new-user-bonus__step-title {
  font-size: 24px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__step-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Terms Section */
.page-promotions-new-user-bonus__terms-section {
  padding: 80px 0;
  background-color: #11271B; /* Card BG */
  text-align: center;
}

.page-promotions-new-user-bonus__terms-section .page-promotions-new-user-bonus__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  text-align: left;
}

.page-promotions-new-user-bonus__terms-item {
  background-color: #08160F;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  padding: 25px;
}

.page-promotions-new-user-bonus__terms-heading {
  font-size: 20px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__terms-item p {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

.page-promotions-new-user-bonus__terms-section .page-promotions-new-user-bonus__btn-secondary {
  margin-top: 40px;
}

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

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

.page-promotions-new-user-bonus__benefit-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-promotions-new-user-bonus__benefit-icon {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #2E7A4E;
}

.page-promotions-new-user-bonus__benefit-title {
  font-size: 22px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__benefit-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  flex-grow: 1;
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-section {
  padding: 80px 0;
  background-color: #11271B; /* Card BG */
}

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

.page-promotions-new-user-bonus__faq-item {
  background-color: #08160F; /* Background */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  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: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #1E3A2A; /* Divider */
  transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus__faq-question:hover {
  background-color: #13994A;
}

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E; /* Gold */
}

.page-promotions-new-user-bonus__faq-item[open] > .page-promotions-new-user-bonus__faq-question .page-promotions-new-user-bonus__faq-toggle {
  content: '−';
}

.page-promotions-new-user-bonus__faq-item summary {
  list-style: none;
}

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

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

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

.page-promotions-new-user-bonus__cta-final-section .page-promotions-new-user-bonus__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(32px, 4.5vw, 56px);
  }
  .page-promotions-new-user-bonus__description {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__hero-section {
    padding-bottom: 40px;
  }

  .page-promotions-new-user-bonus__hero-image-wrapper {
    margin-bottom: 30px;
  }

  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(28px, 6vw, 48px);
    margin-bottom: 15px;
  }

  .page-promotions-new-user-bonus__description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-promotions-new-user-bonus__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

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

  .page-promotions-new-user-bonus__section-title {
    font-size: clamp(24px, 5vw, 36px);
    margin-bottom: 30px;
  }

  .page-promotions-new-user-bonus__intro-section,
  .page-promotions-new-user-bonus__how-to-claim-section,
  .page-promotions-new-user-bonus__terms-section,
  .page-promotions-new-user-bonus__benefits-section,
  .page-promotions-new-user-bonus__faq-section,
  .page-promotions-new-user-bonus__cta-final-section {
    padding: 50px 0;
  }

  .page-promotions-new-user-bonus__text-block {
    font-size: 16px;
    padding: 0 15px;
  }

  .page-promotions-new-user-bonus__steps-grid,
  .page-promotions-new-user-bonus__benefits-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-promotions-new-user-bonus__terms-list {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .page-promotions-new-user-bonus__faq-list {
    padding: 0 15px;
  }

  .page-promotions-new-user-bonus__faq-question {
    font-size: 16px;
    padding: 15px 20px;
  }

  .page-promotions-new-user-bonus__faq-answer {
    font-size: 15px;
    padding: 15px 20px;
  }

  /* Ensure all images are responsive */
  .page-promotions-new-user-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-promotions-new-user-bonus__hero-image-wrapper,
  .page-promotions-new-user-bonus__step-card,
  .page-promotions-new-user-bonus__benefit-card,
  .page-promotions-new-user-bonus__container,
  .page-promotions-new-user-bonus__intro-section,
  .page-promotions-new-user-bonus__how-to-claim-section,
  .page-promotions-new-user-bonus__terms-section,
  .page-promotions-new-user-bonus__benefits-section,
  .page-promotions-new-user-bonus__faq-section,
  .page-promotions-new-user-bonus__cta-final-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent content overflow */
  }

  .page-promotions-new-user-bonus__hero-content,
  .page-promotions-new-user-bonus__intro-section .page-promotions-new-user-bonus__container,
  .page-promotions-new-user-bonus__how-to-claim-section .page-promotions-new-user-bonus__container,
  .page-promotions-new-user-bonus__terms-section .page-promotions-new-user-bonus__container,
  .page-promotions-new-user-bonus__benefits-section .page-promotions-new-user-bonus__container,
  .page-promotions-new-user-bonus__faq-section .page-promotions-new-user-bonus__container,
  .page-promotions-new-user-bonus__cta-final-section .page-promotions-new-user-bonus__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}