/* 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: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure body background is respected */
}

.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;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions-new-user-bonus__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0; /* Light text for dark background */
  text-align: justify;
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 80px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 600px;
}

.page-promotions-new-user-bonus__hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions-new-user-bonus__hero-content {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.page-promotions-new-user-bonus__hero-title {
  font-size: 3.5em;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-promotions-new-user-bonus__hero-description {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 30px;
}

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

.page-promotions-new-user-bonus__hero-image-wrapper {
  flex: 1;
  min-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions-new-user-bonus__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-promotions-new-user-bonus__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

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

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

.page-promotions-new-user-bonus__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-promotions-new-user-bonus__btn-link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.page-promotions-new-user-bonus__btn-link:hover {
  color: #1e87b7;
  text-decoration: underline;
}

/* Introduction Section */
.page-promotions-new-user-bonus__intro-section {
  padding: 60px 0;
  background-color: #0a0a0a;
  color: #ffffff;
}

/* Bonus Details Section */
.page-promotions-new-user-bonus__bonus-details-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Darker background for contrast */
  color: #ffffff;
}

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

.page-promotions-new-user-bonus__card {
  background-color: #2a2a2a; /* Card background for dark theme */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
  color: #ffffff; /* Light text for card background */
}

.page-promotions-new-user-bonus__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__card-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__card-description {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

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

.page-promotions-new-user-bonus__step-item {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.page-promotions-new-user-bonus__step-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions-new-user-bonus__step-icon img {
  
  height: auto;
}

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

.page-promotions-new-user-bonus__step-description {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

/* Terms Section */
.page-promotions-new-user-bonus__terms-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-promotions-new-user-bonus__terms-list {
  list-style: disc;
  margin-left: 20px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-promotions-new-user-bonus__terms-list li {
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__terms-list strong {
  color: #26A9E0;
}

.page-promotions-new-user-bonus__link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-promotions-new-user-bonus__link:hover {
  color: #1e87b7;
}

/* Why Choose Section */
.page-promotions-new-user-bonus__why-choose-section {
  padding: 80px 0;
  background-color: #0a0a0a;
  color: #ffffff;
}

.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-item {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.page-promotions-new-user-bonus__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__feature-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

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

/* FAQ Section */
.page-promotions-new-user-bonus__faq-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

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

.page-promotions-new-user-bonus__faq-item {
  background-color: #2a2a2a;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

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

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

.page-promotions-new-user-bonus__faq-title {
  margin: 0;
  color: #ffffff;
  font-size: 1.2em;
}

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

.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;
  background-color: #3a3a3a;
  color: #f0f0f0;
}

.page-promotions-new-user-bonus__faq-answer p {
  margin: 15px 0;
  color: #f0f0f0;
}

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

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

/* CTA Section */
.page-promotions-new-user-bonus__cta-section {
  padding: 80px 0;
  background-color: #26A9E0; /* Brand primary color for strong CTA */
  color: #ffffff;
  text-align: center;
}

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

/* Specific color overrides */
.page-promotions-new-user-bonus__dark-bg {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-promotions-new-user-bonus__light-bg {
  background-color: #2a2a2a;
  color: #ffffff;
}

.page-promotions-new-user-bonus__dark-section {
  background-color: #26A9E0;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-new-user-bonus__hero-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  .page-promotions-new-user-bonus__hero-image-wrapper {
    min-width: unset;
  }
  .page-promotions-new-user-bonus__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 1.1em;
  }
  .page-promotions-new-user-bonus__hero-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-promotions-new-user-bonus__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-new-user-bonus__text-block {
    font-size: 1em;
  }
  .page-promotions-new-user-bonus__card-title,
  .page-promotions-new-user-bonus__step-title,
  .page-promotions-new-user-bonus__feature-title {
    font-size: 1.4em;
  }
  .page-promotions-new-user-bonus__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions-new-user-bonus__faq-answer {
    padding: 0 20px;
  }
  .page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
    padding: 15px 20px;
  }

  /* Mobile responsive images */
  .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__hero-container,
  .page-promotions-new-user-bonus__bonus-grid,
  .page-promotions-new-user-bonus__steps-grid,
  .page-promotions-new-user-bonus__features-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 !important; /* Prevent horizontal scroll */
  }

  /* Mobile responsive buttons */
  .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__hero-cta-buttons,
  .page-promotions-new-user-bonus__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-new-user-bonus__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-new-user-bonus__hero-image-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}