.page-promo {
  color: #333333; /* Default text color for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-promo__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promo__hero-section {
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promo__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  font-weight: bold;
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-promo__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-promo__button--register:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.page-promo__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promo__button--login:hover {
  background-color: transparent;
  color: #FCBC45;
  transform: translateY(-3px);
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-promo__overview-section,
.page-promo__bonus-section,
.page-promo__how-to-claim-section,
.page-promo__terms-section,
.page-promo__faq-section,
.page-promo__call-to-action-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-promo__overview-section {
  text-align: center;
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
}

.page-promo__section-description {
  font-size: 1.1em;
  color: #333333;
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.page-promo__subsection-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 15px;
}

.page-promo__text-content {
  font-size: 1em;
  color: #333333;
  margin-bottom: 20px;
}

.page-promo__container--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-promo__container--reverse {
  grid-template-columns: 1fr 1fr;
}

.page-promo__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promo__bonus-section--deposit .page-promo__image-block {
  order: 2;
}

.page-promo__bonus-section--deposit .page-promo__content-block {
  order: 1;
}

.page-promo__button--center {
  display: block;
  margin: 40px auto 0 auto;
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promo__button--center:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-promo__steps-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
}

.page-promo__step-item {
  background-color: #F8F8F8;
  border: 1px solid #E0E0E0;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.5;
  color: #333333;
}

.page-promo__step-item strong {
  color: #000000;
  font-size: 1.2em;
  display: block;
  margin-bottom: 10px;
}

.page-promo__inline-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-promo__inline-link:hover {
  text-decoration: underline;
}

.page-promo__terms-list {
  list-style: disc inside;
  margin: 40px auto;
  max-width: 900px;
  padding-left: 20px;
}

.page-promo__terms-item {
  margin-bottom: 10px;
  color: #333333;
}

.page-promo__terms-item strong {
  color: #000000;
}

.page-promo__faq-accordion {
  max-width: 900px;
  margin: 40px auto;
}

.page-promo__faq-item {
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promo__faq-question {
  background-color: #F8F8F8;
  color: #000000;
  font-size: 1.2em;
  font-weight: bold;
  padding: 20px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.page-promo__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promo__faq-question:hover {
  background-color: #EAEAEA;
}

.page-promo__faq-answer {
  padding: 0 20px;
  background-color: #FFFFFF;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promo__faq-answer p {
  padding-bottom: 20px;
  margin: 0;
  color: #333333;
}

.page-promo__call-to-action-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-promo__call-to-action-section .page-promo__section-title {
  color: #FCBC45;
}

.page-promo__call-to-action-section .page-promo__section-description {
  color: #FFFFFF;
  margin-bottom: 40px;
}

.page-promo__call-to-action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__subsection-title {
    font-size: 1.7em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__container--grid {
    grid-template-columns: 1fr;
  }
  .page-promo__container--reverse .page-promo__image-block {
    order: initial; /* Reset order for mobile */
  }
  .page-promo__bonus-section--deposit .page-promo__image-block {
    order: initial;
  }
  .page-promo__bonus-section--deposit .page-promo__content-block {
    order: initial;
  }
  .page-promo__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-description {
    font-size: 0.95em;
  }
  .page-promo__subsection-title {
    font-size: 1.5em;
  }
  .page-promo__how-to-claim-section .page-promo__button--center {
    max-width: 100%;
  }
  .page-promo__call-to-action-buttons {
    flex-direction: column;
    gap: 15px;
  }
  /* Mobile image scaling */
  .page-promo img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  .page-promo__image-block img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__overview-section .page-promo__image {
    max-width: 100%;
    height: auto;
  }
  .page-promo__how-to-claim-section .page-promo__image {
    max-width: 100%;
    height: auto;
  }
  .page-promo__terms-section .page-promo__image {
    max-width: 100%;
    height: auto;
  }
  .page-promo__faq-section .page-promo__image {
    max-width: 100%;
    height: auto;
  }
  .page-promo__hero-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__subsection-title {
    font-size: 1.3em;
  }
  .page-promo__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promo__faq-question {
    font-size: 1em;
    padding: 15px;
  }
  .page-promo__faq-answer p {
    font-size: 0.9em;
  }
}