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

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

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6); /* Darken image slightly for text readability */
}

.page-promo__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background for text */
  border-radius: 10px;
  color: #FFFFFF; /* White text on dark background */
}

.page-promo__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for highlight */
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #FFFFFF;
}

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

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

.page-promo__button--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Black text */
}

.page-promo__button--primary:hover {
  background-color: #E0A83A;
  transform: translateY(-2px);
}

.page-promo__button--secondary {
  background-color: #FFFFFF; /* Register button color */
  color: #000000; /* Black text */
  border: 2px solid #FCBC45;
}

.page-promo__button--secondary:hover {
  background-color: #F0F0F0;
  transform: translateY(-2px);
}

.page-promo__button--tertiary {
  background-color: #000000;
  color: #FCBC45;
  border: 1px solid #FCBC45;
  padding: 10px 20px;
  font-size: 1em;
}

.page-promo__button--tertiary:hover {
  background-color: #1a1a1a;
  transform: translateY(-1px);
}

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

.page-promo__promotions-list,
.page-promo__why-claim,
.page-promo__how-to-claim,
.page-promo__terms-faq,
.page-promo__cta-bottom {
  padding: 60px 0;
  background-color: #FFFFFF; /* White background for content sections */
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  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__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

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

.page-promo__promo-card {
  background-color: #F8F8F8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  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 10px 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;
}

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

.page-promo__card-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__card-title a:hover {
  color: #FCBC45;
}

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

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

.page-promo__feature-item {
  text-align: center;
  background-color: #F8F8F8;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-promo__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-promo__feature-text {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
}

.page-promo__cta-area {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #000000;
  border-radius: 12px;
  color: #FFFFFF;
}

.page-promo__cta-text {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-promo__how-to-claim .page-promo__steps-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-promo__step-item {
  background-color: #F8F8F8;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.page-promo__step-title {
  font-size: 1.6em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-promo__step-text {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__terms-faq .page-promo__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.page-promo__term-item {
  background-color: #F8F8F8;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promo__term-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-promo__term-text {
  font-size: 0.95em;
  color: #666666;
  line-height: 1.6;
}

.page-promo__cta-bottom {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-promo__cta-bottom .page-promo__section-title {
  color: #FCBC45;
}

.page-promo__cta-bottom .page-promo__section-description {
  color: #FFFFFF;
}

.page-promo__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

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

.page-promo__floating-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  padding: 12px 0;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1em;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.page-promo__floating-button:hover {
  transform: translateY(-3px);
}

.page-promo__floating-button--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000; /* Black text */
  border: 2px solid #FCBC45;
}

.page-promo__floating-button--register:hover {
  background-color: #F0F0F0;
}

.page-promo__floating-button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Black text */
}

.page-promo__floating-button--login:hover {
  background-color: #E0A83A;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 120px);
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 80%;
    max-width: 300px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-description {
    font-size: 0.95em;
  }
  .page-promo__promo-image,
  .page-promo__feature-icon,
  .page-promo__promo-card img,
  .page-promo__feature-item img,
  .page-promo__step-item img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__floating-buttons {
    flex-direction: row;
    bottom: 10px;
    right: 10px;
    left: 10px;
    width: auto;
    gap: 10px;
    justify-content: center;
  }
  .page-promo__floating-button {
    flex-grow: 1;
    width: auto;
    padding: 10px 0;
    font-size: 0.9em;
  }
  /* Ensure content images are not smaller than 200px. This rule targets all images within .page-promo */
  .page-promo img {
    min-width: 200px;
    min-height: 200px;
    width: auto;
    height: auto;
  }
  .page-promo__promo-image {
    height: 200px; /* Adjust card image height for mobile if needed */
  }
  .page-promo__feature-icon {
    width: 80px;
    height: 80px;
    min-width: unset;
    min-height: unset;
  }
}

@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__promo-grid,
  .page-promo__features-grid,
  .page-promo__how-to-claim .page-promo__steps-list {
    grid-template-columns: 1fr;
  }
  .page-promo__promo-card,
  .page-promo__feature-item,
  .page-promo__step-item {
    margin: 0 auto;
    max-width: 400px;
  }
  .page-promo__hero-container {
    padding: 30px 15px;
  }
  .page-promo__cta-area {
    padding: 30px 20px;
  }
}