.page-promo {
  color: #ffffff; /* Dark body background, so light text */
}

.page-promo__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #000000; /* Main color for hero background */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  position: relative;
  overflow: hidden;
}

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

.page-promo__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-promo__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Overlay effect to ensure text readability */
  filter: brightness(0.6); /* Further darken the image for text contrast */
}

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

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
  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: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s 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__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promo__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 20px;
  color: #FCBC45;
  padding-top: 60px;
}

.page-promo__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #cccccc;
  line-height: 1.6;
}

.page-promo__promo-grid-section {
  background-color: #000000;
  padding: 80px 0;
}

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

.page-promo__promo-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promo__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

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

.page-promo__promo-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promo__promo-card-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #FCBC45;
  line-height: 1.3;
}

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

.page-promo__button--claim {
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  font-size: 1em;
  border: 2px solid #FCBC45;
  margin-top: auto; /* Push button to bottom */
}

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

.page-promo__how-to-claim-section {
  background-color: #0d0d0d;
  padding: 80px 0;
}

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

.page-promo__step-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #FCBC45;
  display: block;
  margin-bottom: 15px;
}

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

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

.page-promo__how-to-claim-cta {
  text-align: center;
  margin-top: 60px;
}

.page-promo__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 15px 35px;
  font-size: 1.2em;
}

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

.page-promo__vip-section {
  background-color: #000000;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-promo__vip-feature-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__vip-feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%; /* Example style */
  background-color: rgba(252, 188, 69, 0.1); /* Light accent background for icon */
  padding: 10px;
}

.page-promo__vip-feature-title {
  font-size: 1.4em;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.page-promo__vip-feature-text {
  font-size: 0.95em;
  color: #cccccc;
  line-height: 1.6;
}

.page-promo__vip-cta {
  text-align: center;
  margin-top: 60px;
}

.page-promo__button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-promo__button--secondary:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.page-promo__faq-section {
  background-color: #0d0d0d;
  padding: 80px 0;
}

.page-promo__faq-accordion {
  margin-top: 40px;
}

.page-promo__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promo__faq-question {
  font-size: 1.4em;
  color: #FCBC45;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.page-promo__faq-question.active::after {
  content: '-';
  transform: rotate(0deg); /* No rotation for minus */
}

.page-promo__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  color: #e0e0e0;
  line-height: 1.6;
}

.page-promo__faq-answer.active {
  max-height: 300px; /* Adjust based on content */
  padding: 15px 25px 25px 25px;
}

.page-promo__faq-answer p {
    margin: 0;
}

.page-promo__cta-section {
  background-color: #000000;
  padding: 80px 0;
  text-align: center;
}

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

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

@media (max-width: 768px) {
  .page-promo__hero-section {
    min-height: 60vh;
    padding: var(--header-offset, 120px) 20px 40px 20px;
  }
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 100%;
    max-width: 300px;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__promo-grid,
  .page-promo__steps-grid,
  .page-promo__vip-features {
    grid-template-columns: 1fr;
  }
  .page-promo__promo-card-image,
  .page-promo__vip-feature-icon {
    max-width: 100%;
    height: auto;
    display: block;
  }
  .page-promo__faq-question {
    font-size: 1.2em;
    padding: 18px 20px;
  }
  .page-promo__faq-answer.active {
    padding: 12px 20px 20px 20px;
  }
  .page-promo__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  /* Content area images must not cause horizontal scrolling */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__promo-card-title {
    font-size: 1.5em;
  }
  .page-promo__step-title {
    font-size: 1.4em;
  }
  .page-promo__vip-feature-title {
    font-size: 1.2em;
  }
  .page-promo__section-description {
    font-size: 0.95em;
  }
  .page-promo__promo-card-text,
  .page-promo__step-text,
  .page-promo__vip-feature-text,
  .page-promo__faq-answer p {
    font-size: 0.9em;
  }
}