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

.page-promotions-new-user-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color for the page */
  background-color: var(--background-dark); /* Page body 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: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-main);
  line-height: 1.2;
}

.page-promotions-new-user-bonus__text-block {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: var(--text-secondary);
}

.page-promotions-new-user-bonus__text-main {
  color: var(--text-main);
}

.page-promotions-new-user-bonus__text-secondary {
  color: var(--text-secondary);
}

/* Background Colors */
.page-promotions-new-user-bonus__dark-bg {
  background-color: var(--background-dark);
  color: var(--text-main);
}

.page-promotions-new-user-bonus__light-bg {
  background-color: #f8f9fa; /* Light background for contrast */
  color: #333333; /* Dark text for light background */
}

.page-promotions-new-user-bonus__dark-section {
  background-color: var(--deep-green-color);
  color: var(--text-main);
}

.page-promotions-new-user-bonus__card {
  background-color: var(--card-bg);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-new-user-bonus__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
}

.page-promotions-new-user-bonus__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-promotions-new-user-bonus__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-new-user-bonus__cta-center {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions-new-user-bonus__mt-40 {
  margin-top: 40px;
}

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

.page-promotions-new-user-bonus__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit hero image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-promotions-new-user-bonus__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  margin-top: -150px; /* Adjust to bring content over image slightly for visual flow */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-bonus__hero-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--gold-color);
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.7);
}

.page-promotions-new-user-bonus__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-main);
}

/* Intro Section */
.page-promotions-new-user-bonus__intro-section {
  padding: 80px 0;
}

/* How to Claim Section */
.page-promotions-new-user-bonus__how-to-claim {
  padding: 80px 0;
  background-color: var(--deep-green-color);
}

.page-promotions-new-user-bonus__steps-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.page-promotions-new-user-bonus__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
}

.page-promotions-new-user-bonus__step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background-color: var(--gold-color);
  color: var(--background-dark);
  font-size: 1.8em;
  font-weight: bold;
}

.page-promotions-new-user-bonus__step-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--text-main);
}

.page-promotions-new-user-bonus__step-description {
  font-size: 1em;
  color: var(--text-secondary);
}

/* Terms & Conditions Section */
.page-promotions-new-user-bonus__terms-conditions {
  padding: 80px 0;
}

.page-promotions-new-user-bonus__terms-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.page-promotions-new-user-bonus__terms-item {
  background-color: #ffffff;
  color: #333333;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-new-user-bonus__terms-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-promotions-new-user-bonus__terms-description {
  font-size: 1em;
  color: #555555;
}

/* Why Choose Section */
.page-promotions-new-user-bonus__why-choose {
  padding: 80px 0;
  background-color: var(--background-dark);
}

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

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

.page-promotions-new-user-bonus__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%; /* Make icons circular if applicable */
  border: 2px solid var(--glow-color);
  padding: 10px;
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.5);
}

.page-promotions-new-user-bonus__feature-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-main);
}

.page-promotions-new-user-bonus__feature-description {
  font-size: 1em;
  color: var(--text-secondary);
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-section {
  padding: 80px 0;
}

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

.page-promotions-new-user-bonus__faq-item {
  background-color: #ffffff;
  color: #333333;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
  color: #333333;
  list-style: none; /* For details/summary */
}

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

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

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

.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: 20px 25px;
  font-size: 1em;
  color: #555555;
  background-color: #ffffff;
}

/* Conclusion Section */
.page-promotions-new-user-bonus__conclusion-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--deep-green-color);
  color: var(--text-main);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__hero-content {
    margin-top: -100px;
    padding: 30px 20px;
  }

  .page-promotions-new-user-bonus__section-title {
    font-size: 2em;
  }

  .page-promotions-new-user-bonus__hero-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
}

@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;
  }

  .page-promotions-new-user-bonus__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-promotions-new-user-bonus__hero-content {
    margin-top: -80px; /* Adjust for smaller screens */
    padding: 20px 15px;
  }

  .page-promotions-new-user-bonus__hero-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }

  .page-promotions-new-user-bonus__hero-description {
    font-size: 1em;
  }

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

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

  .page-promotions-new-user-bonus__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-promotions-new-user-bonus__text-block {
    font-size: 0.95em;
  }

  .page-promotions-new-user-bonus__steps-list {
    max-width: 100%;
  }

  .page-promotions-new-user-bonus__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .page-promotions-new-user-bonus__step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1.5em;
  }

  .page-promotions-new-user-bonus__step-title {
    font-size: 1.3em;
  }

  .page-promotions-new-user-bonus__terms-item {
    padding: 20px;
  }

  .page-promotions-new-user-bonus__terms-title {
    font-size: 1.2em;
  }

  .page-promotions-new-user-bonus__features-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-new-user-bonus__feature-card {
    padding: 20px;
  }

  .page-promotions-new-user-bonus__feature-icon {
    width: 60px;
    height: 60px;
  }

  .page-promotions-new-user-bonus__feature-title {
    font-size: 1.2em;
  }

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

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

  /* Mobile image responsiveness */
  .page-promotions-new-user-bonus img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions-new-user-bonus__hero-image-wrapper,
  .page-promotions-new-user-bonus__container,
  .page-promotions-new-user-bonus__section,
  .page-promotions-new-user-bonus__card,
  .page-promotions-new-user-bonus__features-grid,
  .page-promotions-new-user-bonus__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }

  /* Adjust padding for sections to avoid overflow */
  .page-promotions-new-user-bonus__intro-section,
  .page-promotions-new-user-bonus__how-to-claim,
  .page-promotions-new-user-bonus__terms-conditions,
  .page-promotions-new-user-bonus__why-choose,
  .page-promotions-new-user-bonus__faq-section,
  .page-promotions-new-user-bonus__conclusion-section {
    padding: 40px 0 !important; /* Adjust section padding */
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-bonus__hero-content {
    margin-top: -60px;
    padding: 15px 10px;
  }

  .page-promotions-new-user-bonus__hero-title {
    font-size: clamp(1.2em, 7vw, 2em);
  }

  .page-promotions-new-user-bonus__btn-primary,
  .page-promotions-new-user-bonus__btn-secondary {
    font-size: 0.95em;
    padding: 10px 15px;
  }

  .page-promotions-new-user-bonus__section-title {
    font-size: 1.5em;
  }
}