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

/* Base Styles */
.page-promotions-new-user-bonus {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  line-height: 1.6;
  background-color: #000;
}

.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.8em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD700; /* Primary brand color for titles */
  line-height: 1.2;
}

.page-promotions-new-user-bonus__text-block {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-promotions-new-user-bonus__image-content {
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Color Scheme Specifics */
.page-promotions-new-user-bonus__dark-bg {
  background-color: #000080; /* Auxiliary color for dark sections */
  color: #ffffff;
  padding: 80px 0;
}

.page-promotions-new-user-bonus__light-bg {
  background-color: #0a0a0a; /* Slightly lighter dark background for contrast */
  color: #f0f0f0;
  padding: 80px 0;
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px; /* Adjusted padding-top to account for header */
  padding-top: var(--header-offset, 120px);
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(0,0,128,0.8), rgba(0,0,128,0.8)), url('[GALLERY:bg:1920x1080:abstract,geometric,dark_blue_gold,background]');
  background-size: cover;
  background-position: center;
}

.page-promotions-new-user-bonus__hero-content {
  z-index: 1;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-promotions-new-user-bonus__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-bonus__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
}

.page-promotions-new-user-bonus__btn-primary {
  background-color: #FFD700;
  color: #000080;
  border: 2px solid #FFD700;
}

.page-promotions-new-user-bonus__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: #000;
}

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

.page-promotions-new-user-bonus__btn-secondary:hover {
  background-color: #FFD700;
  color: #000080;
}

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

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

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

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

.page-promotions-new-user-bonus__feature-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
}

.page-promotions-new-user-bonus__list-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions-new-user-bonus__list-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__list-item p {
  font-size: 1em;
  color: #f0f0f0;
  text-align: left;
}

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

.page-promotions-new-user-bonus__terms-list {
  list-style: decimal;
  padding-left: 20px;
  margin: 0 auto 50px;
  max-width: 900px;
  color: #f0f0f0;
}

.page-promotions-new-user-bonus__terms-list .page-promotions-new-user-bonus__list-item {
  background-color: transparent;
  box-shadow: none;
  border: none;
  padding: 10px 0;
  text-align: left;
}

.page-promotions-new-user-bonus__terms-list .page-promotions-new-user-bonus__list-title {
  color: #FFD700;
  font-size: 1.3em;
}

.page-promotions-new-user-bonus__disclaimer {
  font-style: italic;
  font-size: 0.9em;
  color: #aaaaaa;
  margin-top: 40px;
}

/* How to Claim Section */
.page-promotions-new-user-bonus__how-to-claim-section {
  padding: 80px 0;
}

.page-promotions-new-user-bonus__steps-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 50px;
  max-width: 900px;
  counter-reset: step-counter;
}

.page-promotions-new-user-bonus__steps-list .page-promotions-new-user-bonus__list-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 30px;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 30px 30px 30px 70px;
}

.page-promotions-new-user-bonus__steps-list .page-promotions-new-user-bonus__list-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 30px;
  background-color: #FFD700;
  color: #000080;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-promotions-new-user-bonus__steps-list .page-promotions-new-user-bonus__list-title {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 0;
}

.page-promotions-new-user-bonus__cta-buttons--centered {
  text-align: center;
  margin-top: 40px;
}

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

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

.page-promotions-new-user-bonus__benefit-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions-new-user-bonus__card-image {
  width: 100%;
  max-width: 400px;
  height: 250px; /* Consistent height for card images */
  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.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__benefit-card p {
  font-size: 1em;
  color: #f0f0f0;
}

/* 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: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  background-color: #000080;
  transition: background-color 0.3s ease;
}

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

.page-promotions-new-user-bonus__faq-question h3 {
  margin: 0;
  color: inherit;
  font-size: 1.2em;
}

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-promotions-new-user-bonus__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
  background-color: rgba(255, 255, 255, 0.03);
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 20px 25px;
}

.page-promotions-new-user-bonus__faq-answer p {
  margin: 0;
  text-align: left;
  font-size: 1em;
}

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

.page-promotions-new-user-bonus__cta-final-content {
  max-width: 800px;
}

.page-promotions-new-user-bonus__btn-primary--large {
  padding: 18px 40px;
  font-size: 1.3em;
  margin-top: 30px;
}

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

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__hero-section {
    padding: 80px 15px 40px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-promotions-new-user-bonus__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 1.1em;
  }
  .page-promotions-new-user-bonus__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px;
  }
  .page-promotions-new-user-bonus__btn-primary,
  .page-promotions-new-user-bonus__btn-secondary {
    width: 100% !important;
    max-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__section-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user-bonus__text-block {
    font-size: 1em;
  }
  .page-promotions-new-user-bonus__container,
  .page-promotions-new-user-bonus__cta-final-content {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-promotions-new-user-bonus__section,
  .page-promotions-new-user-bonus__card,
  .page-promotions-new-user-bonus__container,
  .page-promotions-new-user-bonus__benefits-grid,
  .page-promotions-new-user-bonus__faq-list,
  .page-promotions-new-user-bonus__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  
  .page-promotions-new-user-bonus__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-new-user-bonus__steps-list .page-promotions-new-user-bonus__list-item {
    padding-left: 60px;
    padding-right: 15px;
  }

  .page-promotions-new-user-bonus__steps-list .page-promotions-new-user-bonus__list-item::before {
    left: 15px;
    top: 20px;
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }

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

  .page-promotions-new-user-bonus__btn-primary--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 0.95em;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 1.5em;
  }
  .page-promotions-new-user-bonus__btn-primary,
  .page-promotions-new-user-bonus__btn-secondary {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-promotions-new-user-bonus__list-title {
    font-size: 1.3em;
  }
  .page-promotions-new-user-bonus__card-title {
    font-size: 1.4em;
  }
}