.page-promotions {
  font-family: Arial, sans-serif;
  color: #E0E0E0; /* Light gray for text for contrast */
  background-color: #0A0A0A; /* Main dark background */
  line-height: 1.6;
}

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

.page-promotions__hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 600px; /* Adjust height as needed */
  overflow: hidden;
  color: #FFFFFF;
}

.page-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6);
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.page-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent color for section titles */
  text-align: center;
  margin: 60px 0 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-promotions__intro-text, .page-promotions__how-to-claim, .page-promotions__terms, .page-promotions__cta {
  padding: 60px 0;
  text-align: center;
}

.page-promotions__main-content {
  padding: 80px 0;
  background-color: #1A1A1A;
}

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

.page-promotions__promo-card {
  background-color: #0A0A0A;
  border: 1px solid #333;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.page-promotions__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-promotions__promo-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-promotions__promo-description {
  font-size: 1em;
  color: #C0C0C0;
  padding: 0 20px;
  margin-bottom: 25px;
  min-height: 120px; /* Ensure consistent card height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-promotions__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promotions__btn--primary {
  background-color: #FFD700;
  color: #0A0A0A;
  border: 2px solid #FFD700;
}

.page-promotions__btn--primary:hover {
  background-color: #E0B800;
  color: #000000;
}

.page-promotions__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A0A0A;
}

.page-promotions__steps-list,
.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  text-align: left;
}

.page-promotions__steps-list li,
.page-promotions__terms-list li {
  background-color: #1A1A1A;
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-promotions__steps-list li strong {
  color: #FFD700;
}

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

.page-promotions__link:hover {
  text-decoration: underline;
}

.page-promotions__cta {
  background-color: #1A1A1A;
  padding: 80px 0;
}

.page-promotions__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-promotions__cta-description {
  font-size: 1.2em;
  color: #C0C0C0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__promo-description {
    min-height: 100px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    height: 500px;
  }
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__promo-description {
    min-height: auto;
  }
  .page-promotions__steps-list,
  .page-promotions__terms-list {
    margin: 30px 0;
  }
  .page-promotions__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 576px) {
  .page-promotions__hero {
    height: 400px;
  }
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__hero-subtitle {
    font-size: 0.9em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
    margin: 40px 0 30px;
  }
  .page-promotions__intro-text, .page-promotions__how-to-claim, .page-promotions__terms, .page-promotions__cta {
    padding: 40px 0;
  }
  .page-promotions__promo-title {
    font-size: 1.5em;
  }
  .page-promotions__steps-list li,
  .page-promotions__terms-list li {
    font-size: 0.95em;
    padding: 10px 15px;
  }
  .page-promotions__cta-title {
    font-size: 1.8em;
  }
}