.page-promo-deposit-bonus {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

.page-promo-deposit-bonus__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 0;
  text-align: center;
}

.page-promo-deposit-bonus__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px; /* Limit hero container width */
  margin: 0 auto;
}

.page-promo-deposit-bonus__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-promo-deposit-bonus__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
}

.page-promo-deposit-bonus__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  color: #FFFFFF;
}

.page-promo-deposit-bonus__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promo-deposit-bonus__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-promo-deposit-bonus__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-promo-deposit-bonus__button--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for contrast */
}

.page-promo-deposit-bonus__button--primary:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

.page-promo-deposit-bonus__button--secondary {
  background-color: #FFFFFF; /* Register color */
  color: #000000; /* Dark text for contrast */
  border: 2px solid #FCBC45;
}

.page-promo-deposit-bonus__button--secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-promo-deposit-bonus__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.page-promo-deposit-bonus__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-promo-deposit-bonus__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-promo-deposit-bonus__sub-title {
  font-size: 2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-promo-deposit-bonus__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-promo-deposit-bonus__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-promo-deposit-bonus__card {
  background-color: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo-deposit-bonus__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promo-deposit-bonus__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-promo-deposit-bonus__card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

.page-promo-deposit-bonus__card-text {
  font-size: 1em;
  color: #555555;
}

.page-promo-deposit-bonus__step-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promo-deposit-bonus__step-item {
  background-color: #f8f8f8;
  border-left: 5px solid #FCBC45;
  padding: 20px 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-promo-deposit-bonus__step-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
}

.page-promo-deposit-bonus__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 15px;
}

.page-promo-deposit-bonus__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px 0;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promo-deposit-bonus__faq-container {
  margin-top: 30px;
}

.page-promo-deposit-bonus__faq-item {
  background-color: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promo-deposit-bonus__faq-question {
  font-size: 1.3em;
  color: #000000;
  padding: 18px 25px;
  margin: 0;
  cursor: pointer;
  background-color: #ededed;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promo-deposit-bonus__faq-answer {
  font-size: 1em;
  color: #555555;
  padding: 0 25px 15px;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promo-deposit-bonus__faq-item.active .page-promo-deposit-bonus__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px;
}

.page-promo-deposit-bonus__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promo-deposit-bonus__faq-item.active .page-promo-deposit-bonus__faq-question::after {
  content: '-';
  transform: rotate(0deg); /* No rotation for - */
}

.page-promo-deposit-bonus__section-title--cta {
  margin-top: 60px;
  margin-bottom: 20px;
}

.page-promo-deposit-bonus__paragraph--cta {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-promo-deposit-bonus__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-promo-deposit-bonus__card a,
.page-promo-deposit-bonus__step-item a,
.page-promo-deposit-bonus__faq-item a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-promo-deposit-bonus__card a:hover,
.page-promo-deposit-bonus__step-item a:hover,
.page-promo-deposit-bonus__faq-item a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo-deposit-bonus__hero-title {
    font-size: 3em;
  }
  .page-promo-deposit-bonus__hero-description {
    font-size: 1.1em;
  }
  .page-promo-deposit-bonus__section-title {
    font-size: 2em;
  }
  .page-promo-deposit-bonus__sub-title {
    font-size: 1.7em;
  }
}

@media (max-width: 768px) {
  .page-promo-deposit-bonus__hero-title {
    font-size: 2.5em;
  }
  .page-promo-deposit-bonus__hero-description {
    font-size: 1em;
  }
  .page-promo-deposit-bonus__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo-deposit-bonus__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-promo-deposit-bonus__content-area {
    padding: 30px 15px;
  }
  .page-promo-deposit-bonus__card-grid {
    grid-template-columns: 1fr;
  }
  .page-promo-deposit-bonus__section-title {
    font-size: 1.8em;
  }
  .page-promo-deposit-bonus__sub-title {
    font-size: 1.5em;
  }
  .page-promo-deposit-bonus__step-title {
    font-size: 1.4em;
  }
  .page-promo-deposit-bonus__faq-question {
    font-size: 1.1em;
  }
  /* Ensure content area images do not overflow */
  .page-promo-deposit-bonus__hero-image,
  .page-promo-deposit-bonus__card-image,
  .page-promo-deposit-bonus__image-full-width {
    max-width: 100%;
    height: auto;
  }
  .page-promo-deposit-bonus__cta-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-promo-deposit-bonus__hero-title {
    font-size: 2em;
  }
  .page-promo-deposit-bonus__hero-description {
    font-size: 0.9em;
  }
  .page-promo-deposit-bonus__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}