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

/* Base styles for the page content */
.page-promotions-new-user-bonus {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main, #F2FFF6); /* Default light text for dark background */
  background-color: var(--background, #08160F); /* Page 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__dark-bg {
  background-color: var(--background, #08160F);
  color: var(--text-main, #F2FFF6);
}

.page-promotions-new-user-bonus__light-bg {
  background-color: var(--card-bg, #11271B);
  color: var(--text-main, #F2FFF6);
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
  position: relative;
  padding: 80px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

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

.page-promotions-new-user-bonus__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__hero-content {
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions-new-user-bonus__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold, #F2C14E);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.page-promotions-new-user-bonus__hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: var(--button-gradient, linear-gradient(180deg, #2AD16F 0%, #13994A 100%));
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-new-user-bonus__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

/* General Section Styling */
.page-promotions-new-user-bonus__registration-guide,
.page-promotions-new-user-bonus__bonus-details,
.page-promotions-new-user-bonus__benefits,
.page-promotions-new-user-bonus__terms-conditions,
.page-promotions-new-user-bonus__faq-section,
.page-promotions-new-user-bonus__cta-final {
  padding: 60px 0;
}

.page-promotions-new-user-bonus__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-main, #F2FFF6);
  line-height: 1.3;
}

.page-promotions-new-user-bonus__text-block {
  font-size: 1.05rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: var(--text-secondary, #A7D9B8);
}

/* Registration Guide Section */
.page-promotions-new-user-bonus__steps-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-promotions-new-user-bonus__step-card {
  background-color: var(--card-bg, #11271B);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid var(--border, #2E7A4E);
  color: var(--text-main, #F2FFF6);
}

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

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

.page-promotions-new-user-bonus__step-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gold, #F2C14E);
}

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

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

.page-promotions-new-user-bonus__bonus-card {
  background-color: var(--card-bg, #11271B);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid var(--border, #2E7A4E);
  color: var(--text-main, #F2FFF6);
}

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

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

.page-promotions-new-user-bonus__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gold, #F2C14E);
}

.page-promotions-new-user-bonus__card-description {
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
}

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

.page-promotions-new-user-bonus__feature-card {
  background-color: var(--card-bg, #11271B);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid var(--border, #2E7A4E);
  color: var(--text-main, #F2FFF6);
}

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

.page-promotions-new-user-bonus__feature-icon {
  width: 100%;
  height: auto;
  max-width: 300px;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Terms and Conditions Section */
.page-promotions-new-user-bonus__terms-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 900px;
}

.page-promotions-new-user-bonus__term-item {
  background-color: var(--card-bg, #11271B);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--border, #2E7A4E);
  font-size: 1.05rem;
  color: var(--text-secondary, #A7D9B8);
}

.page-promotions-new-user-bonus__term-item strong {
  color: var(--text-main, #F2FFF6);
}

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

.page-promotions-new-user-bonus__faq-item {
  background-color: var(--card-bg, #11271B);
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border, #2E7A4E);
  overflow: hidden;
  color: var(--text-main, #F2FFF6);
}

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-main, #F2FFF6);
  background-color: var(--card-bg, #11271B);
  transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus__faq-question:hover {
  background-color: var(--deep-green, #0A4B2C);
}

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

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

.page-promotions-new-user-bonus__faq-qtext {
  flex-grow: 1;
}

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 15px;
  color: var(--gold, #F2C14E);
}

.page-promotions-new-user-bonus__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__hero-section {
    padding: 60px 20px 30px;
  }
  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__hero-section {
    padding: 10px 15px 20px;
  }
  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 1rem;
  }
  .page-promotions-new-user-bonus__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions-new-user-bonus__registration-guide,
  .page-promotions-new-user-bonus__bonus-details,
  .page-promotions-new-user-bonus__benefits,
  .page-promotions-new-user-bonus__terms-conditions,
  .page-promotions-new-user-bonus__faq-section,
  .page-promotions-new-user-bonus__cta-final {
    padding: 40px 0;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }
  .page-promotions-new-user-bonus__text-block {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .page-promotions-new-user-bonus__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions-new-user-bonus__step-card, 
  .page-promotions-new-user-bonus__bonus-card, 
  .page-promotions-new-user-bonus__feature-card {
    padding: 20px;
  }
  .page-promotions-new-user-bonus__step-title,
  .page-promotions-new-user-bonus__card-title {
    font-size: 1.3rem;
  }
  .page-promotions-new-user-bonus__faq-question {
    font-size: 1rem;
    padding: 15px;
  }
  .page-promotions-new-user-bonus__faq-answer {
    padding: 0 15px 15px;
  }
  /* Mobile image responsiveness */
  .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__step-card,
  .page-promotions-new-user-bonus__bonus-card,
  .page-promotions-new-user-bonus__feature-card,
  .page-promotions-new-user-bonus__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  /* No video on this page, but keeping the rule for completeness */
  .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;
  }
}

/* Ensure content area images are not too small */
.page-promotions-new-user-bonus__registration-guide img,
.page-promotions-new-user-bonus__bonus-details img,
.page-promotions-new-user-bonus__benefits img {
  min-width: 200px;
  min-height: 200px;
}