/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A202C;
  line-height: 1.6;
}

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

.page-promotions__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3A404C 100%); /* Darker gradient */
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  opacity: 0.2;
  z-index: 0;
}

.page-promotions__hero .page-promotions__container {
  position: relative;
  z-index: 1;
}

.page-promotions__title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions__subtitle {
  font-size: 1.3em;
  color: #BBBBBB;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin: 10px;
  font-size: 1.1em;
}

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

.page-promotions__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-promotions__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-promotions__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions__intro-section {
  background-color: #1A202C;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-promotions__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__text {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-promotions__text--center {
  text-align: center;
}

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

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

.page-promotions__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  text-align: left;
}

.page-promotions__feature-list li {
  background-color: #2A303C;
  padding: 25px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #E0E0E0;
}

.page-promotions__feature-icon {
  color: #FFD700;
  font-size: 1.5em;
  margin-right: 15px;
}

.page-promotions__featured-promos {
  background-color: #2A303C;
}

.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: #1A202C;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

.page-promotions__card-description {
  font-size: 1em;
  color: #BBBBBB;
  margin-bottom: 25px;
  padding: 0 20px;
  flex-grow: 1;
}

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

.page-promotions__step-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
  counter-reset: step-counter;
}

.page-promotions__step-list li {
  background-color: #2A303C;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  position: relative;
  padding-left: 60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #E0E0E0;
}

.page-promotions__step-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #1A202C;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-promotions__terms-conditions {
  background-color: #2A303C;
}

.page-promotions__list {
  list-style: disc;
  margin-left: 40px;
  text-align: left;
  color: #E0E0E0;
}

.page-promotions__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

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

.page-promotions__faq {
  background-color: #1A202C;
}

.page-promotions__faq-item {
  background-color: #2A303C;
  margin-bottom: 15px;
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promotions__faq-answer {
  font-size: 1em;
  color: #BBBBBB;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-promotions__faq-answer.show {
  max-height: 200px; /* Adjust based on content */
}

.page-promotions__call-to-action {
  background: linear-gradient(90deg, #1A202C, #FFD700);
  padding: 80px 0;
  color: #1A202C;
}

.page-promotions__call-to-action .page-promotions__section-title,
.page-promotions__call-to-action .page-promotions__text {
  color: #1A202C;
}

.page-promotions__call-to-action .page-promotions__text {
  text-align: center;
}

.page-promotions__call-to-action .page-promotions__btn--primary {
  background-color: #1A202C;
  color: #FFD700;
  border-color: #1A202C;
}

.page-promotions__call-to-action .page-promotions__btn--primary:hover {
  background-color: #3A404C;
  border-color: #3A404C;
}

.page-promotions__call-to-action .page-promotions__btn--secondary {
  background-color: transparent;
  color: #1A202C;
  border-color: #1A202C;
}

.page-promotions__call-to-action .page-promotions__btn--secondary:hover {
  background-color: #1A202C;
  color: #FFD700;
}

/* Highlight keywords */
.page-promotions .highlight,
.page-promotions .keyword {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promotions__title {
    font-size: 2.5em;
  }

  .page-promotions__subtitle {
    font-size: 1.1em;
  }

  .page-promotions__section-title {
    font-size: 2em;
  }

  .page-promotions__text {
    font-size: 1em;
  }

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

  .page-promotions__feature-list {
    grid-template-columns: 1fr;
  }

  .page-promotions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions__hero {
    padding: 80px 0 40px;
  }

  .page-promotions__hero-image {
    max-width: 600px;
  }

  .page-promotions__step-list li {
    padding-left: 50px;
  }

  .page-promotions__step-list li::before {
    left: 15px;
    width: 25px;
    height: 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions__title {
    font-size: 2em;
  }

  .page-promotions__subtitle {
    font-size: 0.9em;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
  }

  .page-promotions__promo-card {
    padding-bottom: 15px;
  }

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

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

  .page-promotions__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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