/* style/promotions-new-user-bonus.css */
.page-promotions-new-user-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: var(--background-color, #FFFFFF);
}

.page-promotions-new-user-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions-new-user-bonus__hero-section {
  position: relative;
  padding: 120px 0 60px; /* Adjust top padding for fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #FFFFFF;
  background-color: #26A9E0; /* Primary brand color */
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-promotions-new-user-bonus__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3; /* Slightly transparent to allow text to be visible */
}

.page-promotions-new-user-bonus__hero-section .page-promotions-new-user-bonus__container {
  position: relative;
  z-index: 1;
}

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

.page-promotions-new-user-bonus__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  color: #FFFFFF;
}

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

.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;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-promotions-new-user-bonus__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

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

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

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

.page-promotions-new-user-bonus__content-section {
  padding: 60px 0;
}

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

.page-promotions-new-user-bonus__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-promotions-new-user-bonus__dark-bg .page-promotions-new-user-bonus__section-title,
.page-promotions-new-user-bonus__dark-bg .page-promotions-new-user-bonus__text-block,
.page-promotions-new-user-bonus__dark-bg .page-promotions-new-user-bonus__numbered-list li,
.page-promotions-new-user-bonus__dark-bg .page-promotions-new-user-bonus__bullet-list li {
  color: #FFFFFF;
}

.page-promotions-new-user-bonus__dark-bg a {
  color: #ffffff;
  text-decoration: underline;
}

.page-promotions-new-user-bonus__dark-bg a:hover {
  color: #f0f0f0;
}

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

.page-promotions-new-user-bonus__light-bg a:hover {
  color: #1a7fb3;
}

.page-promotions-new-user-bonus__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-promotions-new-user-bonus__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-new-user-bonus__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus__numbered-list,
.page-promotions-new-user-bonus__bullet-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promotions-new-user-bonus__numbered-list li,
.page-promotions-new-user-bonus__bullet-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 1.1em;
}

.page-promotions-new-user-bonus__numbered-list li::before {
  content: counter(list-item) ".";
  counter-increment: list-item;
  position: absolute;
  left: 0;
  font-weight: bold;
  color: #EA7C07;
}

.page-promotions-new-user-bonus__bullet-list li::before {
  content: "\2022"; /* Unicode for a bullet point */
  position: absolute;
  left: 0;
  font-weight: bold;
  color: #EA7C07;
  font-size: 1.2em;
  line-height: 1;
}

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

.page-promotions-new-user-bonus__card {
  background-color: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
}

.page-promotions-new-user-bonus__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-new-user-bonus__card-image {
  max-width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  width: 100%; /* Ensure image fills card width */
}

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

.page-promotions-new-user-bonus__card-text {
  font-size: 1em;
  margin-bottom: 20px;
  text-align: justify;
  flex-grow: 1;
}

.page-promotions-new-user-bonus__card .page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__card .page-promotions-new-user-bonus__btn-secondary {
  width: auto;
  padding: 10px 20px;
  font-size: 0.95em;
  margin-top: auto; /* Push buttons to the bottom */
}

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

.page-promotions-new-user-bonus__faq-item {
  background-color: #f0f8ff; /* Light blue background for FAQ item */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-toggle {
  transform: rotate(0deg); /* No rotation for minus sign */
}

.page-promotions-new-user-bonus__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 1.1em;
  color: #555555;
  text-align: justify;
}

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

.page-promotions-new-user-bonus__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
}

.page-promotions-new-user-bonus__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-promotions-new-user-bonus__cta-section .page-promotions-new-user-bonus__section-title {
  color: #FFFFFF;
}

.page-promotions-new-user-bonus__cta-section .page-promotions-new-user-bonus__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  color: #FFFFFF;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__hero-section {
    padding: 80px 0 40px; /* Adjust for mobile */
    padding-top: var(--header-offset, 120px) !important; /* Ensure space for fixed header */
  }
  .page-promotions-new-user-bonus__hero-title {
    font-size: 2em;
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promotions-new-user-bonus__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-new-user-bonus__btn-primary,
  .page-promotions-new-user-bonus__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-new-user-bonus__content-section {
    padding: 40px 0;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user-bonus__text-block,
  .page-promotions-new-user-bonus__numbered-list li,
  .page-promotions-new-user-bonus__bullet-list li,
  .page-promotions-new-user-bonus__faq-answer {
    font-size: 1em;
  }
  .page-promotions-new-user-bonus__card-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-new-user-bonus__card {
    padding: 20px;
  }
  .page-promotions-new-user-bonus__card-image {
    height: 200px;
  }
  .page-promotions-new-user-bonus__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-promotions-new-user-bonus__faq-answer {
    padding: 15px;
  }
  .page-promotions-new-user-bonus__cta-section {
    padding: 60px 0;
  }

  /* Mobile image responsiveness */
  .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__cta-buttons {
    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: var(--header-offset, 120px) !important;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 1.6em;
  }
  .page-promotions-new-user-bonus__btn-primary,
  .page-promotions-new-user-bonus__btn-secondary {
    font-size: 0.9em;
    padding: 12px 20px;
  }
}