.page-promo {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 80px 20px;
  background-color: #1A1A2E;
}

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

.page-promo__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  color: #ffffff;
}

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

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

.page-promo__cta-button {
  display: inline-block;
  background-color: #E94560; /* Auxiliary color for CTA */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promo__cta-button:hover {
  background-color: #f07d90; /* Lighter shade on hover */
  transform: translateY(-3px);
}

.page-promo__cta-button--centered {
  display: block;
  margin: 40px auto 0 auto;
  max-width: fit-content;
}

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

.page-promo__section-title {
  font-size: 2.8em;
  color: #E94560;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
}

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

.page-promo__overview-section, .page-promo__featured-promo-section, .page-promo__how-to-claim-section, .page-promo__terms-section, .page-promo__detail-pages-section {
  padding: 60px 0;
  background-color: #0D0D1A; /* Body background color */
}

.page-promo__overview-section {
  background: linear-gradient(135deg, #0D0D1A 0%, #1A1A2E 100%);
}

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

.page-promo__promo-card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent card background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(233, 69, 96, 0.3);
}

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

.page-promo__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promo__card-title {
  font-size: 1.8em;
  color: #E94560;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-promo__card-button {
  display: inline-block;
  background-color: #1A1A2E;
  color: #E94560;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #E94560;
}

.page-promo__card-button:hover {
  background-color: #E94560;
  color: #ffffff;
}

.page-promo__featured-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-promo__featured-image {
  flex: 1;
  min-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  min-height: 200px;
}

.page-promo__featured-text {
  flex: 1.5;
  min-width: 300px;
}

.page-promo__featured-text p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-promo__how-to-claim-section {
  background-color: #1A1A2E;
}

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

.page-promo__step-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #E94560;
}

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

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

.page-promo__terms-section p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-promo__learn-more-link {
  display: inline-block;
  color: #E94560;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  border-bottom: 2px solid #E94560;
  padding-bottom: 5px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-promo__learn-more-link:hover {
  color: #f07d90;
  border-color: #f07d90;
}

.page-promo__detail-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-promo__detail-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #E94560;
}

.page-promo__detail-title {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.page-promo__detail-title a {
  color: #E94560;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-promo__detail-title a:hover {
  color: #f07d90;
}

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

.page-promo__detail-button {
  display: inline-block;
  background-color: #1A1A2E;
  color: #E94560;
  padding: 8px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #E94560;
}

.page-promo__detail-button:hover {
  background-color: #E94560;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__section-title {
    font-size: 2.2em;
  }
  .page-promo__featured-content {
    flex-direction: column;
  }
  .page-promo__featured-image {
    min-width: unset;
    width: 100%;
  }
  .page-promo__featured-text {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    min-height: 450px;
    padding: 60px 15px;
  }
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-promo__container {
    padding: 30px 15px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-description {
    font-size: 0.95em;
  }
  .page-promo__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__card-title {
    font-size: 1.5em;
  }
  .page-promo__card-description {
    font-size: 0.9em;
  }
  .page-promo__steps-list {
    grid-template-columns: 1fr;
  }
  .page-promo__step-title {
    font-size: 1.4em;
  }
  .page-promo__step-text {
    font-size: 0.9em;
  }
  /* Mobile content area image constraint */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__card-image, .page-promo__featured-image {
    min-width: 200px; /* Ensure minimum size is maintained */
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-section {
    min-height: 380px;
  }
  .page-promo__section-title {
    font-size: 1.6em;
  }
  .page-promo__cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-promo__card-image, .page-promo__featured-image {
    height: auto; /* Allow height to adjust naturally */
  }
}