.page-promotions {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, main body padding-top is handled by shared.css */
}

.page-promotions__hero-section {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 12px;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

.page-promotions__hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 5; /* Approx 1920x600 */
  object-fit: cover;
  object-position: center;
  filter: none; /* Ensure no grayscale */
  max-width: 100%; /* For responsiveness */
}

.page-promotions__hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  background-color: #11271B; /* Card BG */
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-top: -10px; /* Overlap slightly with image wrapper for visual continuity */
  position: relative;
  z-index: 1;
}

.page-promotions__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 15px;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__subtitle {
  font-size: 1.1rem;
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3), 0 0 15px #57E38D;
}

.page-promotions__section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #22C768;
  border-radius: 2px;
}

.page-promotions__promotions-grid,
.page-promotions__how-to-claim,
.page-promotions__terms-summary {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.page-promotions__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-promotions__promotion-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #2E7A4E;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px #57E38D;
}

.page-promotions__promotion-card img {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  filter: none; /* Ensure no grayscale */
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__card-content {
  padding: 20px;
}

.page-promotions__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-promotions__card-title a {
  color: #F2FFF6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-promotions__card-title a:hover {
  color: #22C768;
}

.page-promotions__card-description {
  font-size: 0.95rem;
  color: #A7D9B8;
  margin-bottom: 20px;
}

.page-promotions__card-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-promotions__card-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__how-to-claim {
  text-align: center;
}

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

.page-promotions__step-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #1E3A2A;
}

.page-promotions__step-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  filter: none; /* Ensure no grayscale */
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__step-title {
  font-size: 1.4rem;
  color: #F2FFF6;
  margin-bottom: 10px;
}

.page-promotions__step-description {
  font-size: 1rem;
  color: #A7D9B8;
}

.page-promotions__cta-bottom {
  margin-top: 50px;
}

.page-promotions__terms-summary .page-promotions__content-wrapper {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid #1E3A2A;
}

.page-promotions__terms-summary p {
  margin-bottom: 20px;
  color: #A7D9B8;
}

.page-promotions__terms-summary ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
  color: #A7D9B8;
}

.page-promotions__terms-summary ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.page-promotions__read-more-link {
  color: #22C768;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

.page-promotions__read-more-link:hover {
  color: #57E38D;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-promotions__hero-content {
    padding: 30px 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .page-promotions__subtitle {
    font-size: 1rem;
  }

  .page-promotions__promotions-grid,
  .page-promotions__how-to-claim,
  .page-promotions__terms-summary {
    padding: 0 15px;
    margin-bottom: 40px;
  }

  .page-promotions__grid-container {
    grid-template-columns: 1fr;
  }

  .page-promotions__steps-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-image-wrapper img,
  .page-promotions__promotion-card img,
  .page-promotions__step-card img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 549px) {
  .page-promotions__main-title {
    font-size: clamp(1.1rem, 7vw, 1.8rem);
  }

  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-promotions__section-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    margin-bottom: 30px;
  }

  .page-promotions__card-title {
    font-size: 1.2rem;
  }

  .page-promotions__card-description {
    font-size: 0.9rem;
  }

  .page-promotions__card-button {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .page-promotions__step-title {
    font-size: 1.2rem;
  }

  .page-promotions__step-description {
    font-size: 0.9rem;
  }
}