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

.page-promo__hero-section {
  position: relative;
  text-align: center;
  padding: 80px 20px 40px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.8), rgba(255, 215, 0, 0.2)); /* Subtle gradient overlay */
}

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

.page-promo__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.page-promo__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.page-promo__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-promo__hero-cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark red text for contrast */
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-promo__hero-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promo__overview-section,
.page-promo__featured-section,
.page-promo__how-to-claim-section,
.page-promo__cta-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.page-promo__overview-title,
.page-promo__featured-title,
.page-promo__how-to-claim-title,
.page-promo__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 30px;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.page-promo__overview-text,
.page-promo__featured-text,
.page-promo__how-to-claim-text {
  font-size: 1.1em;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 40px;
}

.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(139, 0, 0, 0.7); /* Dark red translucent background */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-promo__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.page-promo__promo-card-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: cover;
  border: 2px solid #FFD700;
}

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

.page-promo__promo-card-description {
  font-size: 1em;
  color: #f0f0f0;
  line-height: 1.5;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo__promo-card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo__promo-card-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promo__promo-detail-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: rgba(255, 215, 0, 0.1); /* Gold translucent background */
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  text-align: left;
}

.page-promo__promo-detail-card--reverse {
  flex-direction: row-reverse;
}

.page-promo__promo-detail-image {
  flex: 1;
  max-width: 600px; /* Ensure images are not too small */
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  border: 3px solid #FFD700;
}

.page-promo__promo-detail-content {
  flex: 1.5;
}

.page-promo__promo-detail-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-promo__promo-detail-description {
  font-size: 1.1em;
  color: #f0f0f0;
  line-height: 1.7;
  margin-bottom: 30px;
}

.page-promo__promo-detail-button {
  display: inline-block;
  background-color: #8B0000; /* Dark red button */
  color: #FFD700; /* Gold text for contrast */
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promo__promo-detail-button:hover {
  background-color: #6a0000;
  transform: translateY(-2px);
}

.page-promo__how-to-claim-section {
  background-color: rgba(139, 0, 0, 0.3); /* Dark red subtle background */
  padding: 60px 20px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
}

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

.page-promo__step-card {
  background-color: rgba(255, 215, 0, 0.15); /* Gold translucent background */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-promo__step-image {
  width: 100%;
  max-width: 200px; /* Minimum 200px display width */
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: cover;
  border: 1px solid #FFD700;
}

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

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

.page-promo__step-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo__step-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promo__terms-reminder {
  margin-top: 40px;
  font-size: 0.9em;
  color: #aaaaaa;
}

.page-promo__terms-reminder a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promo__terms-reminder a:hover {
  text-decoration: underline;
}

.page-promo__cta-section {
  padding: 80px 20px;
  background: linear-gradient(45deg, #8B0000, #FFD700);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
  margin-bottom: 80px;
}

.page-promo__cta-title {
  font-size: 3em;
  color: #ffffff;
  margin-bottom: 25px;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

.page-promo__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 40px;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #000000; /* Black button for strong contrast */
  color: #FFD700; /* Gold text */
  padding: 20px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.6em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-promo__cta-button:hover {
  background-color: #333333;
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__hero-description {
    font-size: 1.2em;
  }
  .page-promo__overview-title,
  .page-promo__featured-title,
  .page-promo__how-to-claim-title,
  .page-promo__cta-title {
    font-size: 2.4em;
  }
  .page-promo__promo-detail-card {
    flex-direction: column;
    text-align: center;
  }
  .page-promo__promo-detail-card--reverse {
    flex-direction: column;
  }
  .page-promo__promo-detail-image {
    margin-bottom: 30px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 60px 15px 30px;
  }
  .page-promo__hero-container {
    padding: 20px;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-cta-button {
    padding: 15px 30px;
    font-size: 1.2em;
  }
  .page-promo__overview-section,
  .page-promo__featured-section,
  .page-promo__how-to-claim-section,
  .page-promo__cta-section {
    margin: 40px auto;
    padding: 0 15px;
  }
  .page-promo__overview-title,
  .page-promo__featured-title,
  .page-promo__how-to-claim-title,
  .page-promo__cta-title {
    font-size: 2em;
  }
  .page-promo__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__promo-detail-card {
    padding: 30px;
  }
  .page-promo__steps-container {
    grid-template-columns: 1fr;
  }
  .page-promo__cta-section {
    padding: 60px 15px;
  }
  .page-promo__cta-title {
    font-size: 2.5em;
  }
  .page-promo__cta-button {
    padding: 18px 40px;
    font-size: 1.4em;
  }
  /* Mobile image scaling */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__promo-card-image,
  .page-promo__promo-detail-image,
  .page-promo__step-image {
    width: auto; /* Allow auto width to scale with max-width */
    max-width: 100%; /* Ensure images don't overflow */
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__hero-cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-promo__overview-title,
  .page-promo__featured-title,
  .page-promo__how-to-claim-title,
  .page-promo__cta-title {
    font-size: 1.8em;
  }
  .page-promo__promo-card-title {
    font-size: 1.5em;
  }
  .page-promo__promo-detail-title {
    font-size: 1.8em;
  }
  .page-promo__cta-title {
    font-size: 2em;
  }
  .page-promo__cta-button {
    font-size: 1.2em;
    padding: 15px 30px;
  }
}