.page-promo {
  color: #333333; /* Default text color for light body background */
}

.page-promo__hero-section {
  position: relative;
  width: 100%;
  min-height: 500px; /* Ensure hero section has a minimum height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

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

.page-promo__hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF; /* White text over dark/rich background image */
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay for readability */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-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__button--claim {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  padding: 10px 20px;
  font-size: 1em;
}

.page-promo__button--claim:hover {
  background-color: #FCBC45;
  border-color: #FCBC45;
  transform: translateY(-2px);
}

.page-promo__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

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

.page-promo__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promo__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__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #555555;
}

.page-promo__promo-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 50px 0;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.page-promo__category-button {
  background-color: #f0f0f0;
  color: #000000;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1.05em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promo__category-button:hover {
  background-color: #FCBC45;
  color: #000000;
}

.page-promo__category-button--active {
  background-color: #000000;
  color: #FFFFFF;
}

.page-promo__category-button--active:hover {
  background-color: #FCBC45;
  color: #000000;
}

.page-promo__promo-list {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.page-promo__promo-list--active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-promo__list-title {
  font-size: 2.2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

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

.page-promo__promo-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promo__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-promo__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-promo__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo__card-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promo__card-description {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-promo__faq-section {
  margin-top: 80px;
  background-color: #f9f9f9;
  padding: 50px 30px;
  border-radius: 15px;
}

.page-promo__faq-section .page-promo__section-title {
  margin-bottom: 50px;
  color: #000000;
}

.page-promo__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promo__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FCBC45;
  transition: transform 0.3s ease;
}

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

.page-promo__faq-answer {
  font-size: 1em;
  color: #666666;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-promo__faq-answer--active {
  max-height: 300px; /* Adjust as needed for content */
  padding-top: 15px;
}

.page-promo__cta-section {
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px;
  margin-top: 80px;
  border-radius: 15px;
}

.page-promo__cta-section .page-promo__section-title {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-promo__cta-section .page-promo__section-title::after {
  background-color: #FCBC45;
}

.page-promo__cta-section .page-promo__paragraph {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Floating Buttons */
.page-promo__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.page-promo__floating-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  font-size: 0.9em;
  font-weight: bold;
  color: #000000;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

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

.page-promo__floating-button--register:hover {
  background-color: #f0f0f0;
  transform: scale(1.1);
}

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

.page-promo__floating-button--login:hover {
  background-color: #e0a53b;
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__hero-description {
    font-size: 1.2em;
  }
  .page-promo__section-title {
    font-size: 2.5em;
  }
  .page-promo__list-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 100px); /* Adjust for smaller header on mobile */
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .page-promo__button {
    width: 80%;
    margin: 0 auto;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promo__content-area {
    padding: 40px 15px;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__list-title {
    font-size: 1.8em;
  }
  .page-promo__card-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__promo-image {
    height: 200px;
  }
  .page-promo__promo-card {
    margin-bottom: 20px;
  }
  .page-promo__faq-question {
    font-size: 1.2em;
  }
  .page-promo__floating-buttons {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }
  .page-promo__floating-button {
    width: 50px;
    height: 50px;
  }
  /* Ensure all images within .page-promo are responsive and do not overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}

@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.8em;
  }
  .page-promo__category-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
  }
}