.page-promotions {
  color: #FFFFFF;
  background-color: #100224; /* Adjusted from #FFFFFF to align with dark theme */
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px;
  margin-bottom: 20px;
}

.page-promotions__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  z-index: 1;
}

.page-promotions__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-promotions__cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #ff9500 0%, #ff5e3a 100%); /* Orange-red gradient CTA */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 94, 58, 0.4);
  border: none;
  cursor: pointer;
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 94, 58, 0.6);
}

.page-promotions__cta-button--secondary {
  background: #017439;
  box-shadow: 0 4px 15px rgba(1, 116, 57, 0.4);
}

.page-promotions__cta-button--secondary:hover {
  background: #005f2e;
  box-shadow: 0 6px 20px rgba(1, 116, 57, 0.6);
}

.page-promotions__section {
  padding: 60px 0;
  background-color: #1a0832; /* Slightly lighter dark background for sections */
  margin-bottom: 20px;
}

.page-promotions__section:nth-child(even) {
  background-color: #100224; /* Alternating background for visual rhythm */
}

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

.page-promotions__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #FFFFFF;
  background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%); /* Gold to Orange gradient for h2 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.page-promotions__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

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

.page-promotions__card {
  background-color: #1a0832;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #017439;
}

.page-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__card-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-promotions__card-text {
  font-size: 1em;
  color: #CCCCCC;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-promotions__card-button {
  display: inline-block;
  background-color: #83a1f2; /* Blue pill button */
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.page-promotions__card-button:hover {
  background-color: #688cec;
}

.page-promotions__vip-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.page-promotions__vip-item {
  background-color: #2a1547;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  border-left: 5px solid #017439;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__vip-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.page-promotions__vip-text {
  color: #CCCCCC;
}

.page-promotions__how-to-claim {
  background-color: #100224;
}

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

.page-promotions__step-item {
  background-color: #1a0832;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #017439;
}

.page-promotions__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #017439;
  color: #FFFFFF;
  font-size: 1.8em;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
}

.page-promotions__step-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.page-promotions__step-text {
  color: #CCCCCC;
}

.page-promotions__terms-cta {
  padding-bottom: 80px;
}

/* Specific color rules */
.page-promotions__cta-button.page-promotions__cta-button--login {
  background-color: #C30808;
  color: #FFFF00; /* Register and login font color */
}

.page-promotions__cta-button.page-promotions__cta-button--register {
  background-color: #C30808;
  color: #FFFF00; /* Register and login font color */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: clamp(2.2em, 5vw, 3.5em);
  }

  .page-promotions__section-title {
    font-size: clamp(2em, 4.5vw, 2.5em);
  }

  .page-promotions__hero-image {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 8px;
    padding-bottom: 30px;
  }

  .page-promotions__hero-image {
    max-height: 400px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-promotions__hero-description {
    font-size: 1em;
  }

  .page-promotions__section {
    padding: 40px 0;
  }

  .page-promotions__section-title {
    font-size: clamp(1.8em, 5.5vw, 2.2em);
    margin-bottom: 15px;
  }

  .page-promotions__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-promotions__card-grid,
  .page-promotions__vip-features,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions__card-image {
    height: 200px;
    min-width: 200px;
    min-height: 200px;
    max-width: 100%;
    height: auto;
  }

  /* Ensure all content area images are responsive and not too small */
  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px;
    min-height: 200px;
  }

  .page-promotions__card-title {
    font-size: 1.3em;
  }

  .page-promotions__vip-item,
  .page-promotions__step-item {
    padding: 20px;
  }

  .page-promotions__step-number {
    width: 45px;
    height: 45px;
    font-size: 1.6em;
  }

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

@media (max-width: 480px) {
  .page-promotions__hero-image {
    max-height: 300px;
  }

  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }
}