/* style/promotions-limited-time-offers.css */
.page-promotions-limited-time-offers {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light text on dark background */
  background-color: #0A192F;
  line-height: 1.6;
}

.page-promotions-limited-time-offers__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-limited-time-offers__hero {
  background: linear-gradient(135deg, #0A192F, #1A2F4F);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}

.page-promotions-limited-time-offers__hero-content {
  max-width: 600px;
}

.page-promotions-limited-time-offers__main-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-limited-time-offers__hero-description {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-promotions-limited-time-offers__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-limited-time-offers__cta-button:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-promotions-limited-time-offers__hero-image-wrapper {
  max-width: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-limited-time-offers__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-promotions-limited-time-offers__section-title {
  font-size: 2.2em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-promotions-limited-time-offers__section-description {
  font-size: 1em;
  color: #B0B0B0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.page-promotions-limited-time-offers__promotion-categories,
.page-promotions-limited-time-offers__current-promotions,
.page-promotions-limited-time-offers__how-to-participate,
.page-promotions-limited-time-offers__terms-and-conditions,
.page-promotions-limited-time-offers__faq {
  padding: 60px 0;
}

.page-promotions-limited-time-offers__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-limited-time-offers__category-item {
  background-color: #1A2F4F;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid #FFD70033;
}

.page-promotions-limited-time-offers__category-item:hover {
  transform: translateY(-10px);
  background-color: #2A4F7F;
}

.page-promotions-limited-time-offers__category-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD70088);
}

.page-promotions-limited-time-offers__category-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-limited-time-offers__category-item p {
  color: #C0C0C0;
  margin-bottom: 20px;
}

.page-promotions-limited-time-offers__category-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 5px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-promotions-limited-time-offers__category-link:hover {
  color: #E6C200;
  border-color: #E6C200;
}

.page-promotions-limited-time-offers__promo-card {
  background-color: #1A2F4F;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  border: 1px solid #FFD70033;
}

.page-promotions-limited-time-offers__promo-image {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  flex: 1 1 300px;
}

.page-promotions-limited-time-offers__promo-content {
  padding: 30px;
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-promotions-limited-time-offers__promo-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions-limited-time-offers__promo-period {
  font-size: 0.9em;
  color: #A0A0A0;
  margin-bottom: 15px;
}

.page-promotions-limited-time-offers__promo-details {
  color: #C0C0C0;
  margin-bottom: 25px;
}

.page-promotions-limited-time-offers__how-to-participate {
  background-color: #0A192F;
  padding: 80px 0;
  text-align: center;
}

.page-promotions-limited-time-offers__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.page-promotions-limited-time-offers__steps-list li {
  background-color: #1A2F4F;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #FFD70033;
  position: relative;
}

.page-promotions-limited-time-offers__step-icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -60px auto 20px auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-limited-time-offers__step-icon {
  width: 45px;
  height: 45px;
  filter: brightness(0) invert(1); /* Makes icon dark on gold background */
}

.page-promotions-limited-time-offers__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-limited-time-offers__steps-list p {
  color: #C0C0C0;
}

.page-promotions-limited-time-offers__cta-button--bottom {
  margin-top: 60px;
}

.page-promotions-limited-time-offers__terms-and-conditions {
  background-color: #1A2F4F;
  padding: 80px 0;
}

.page-promotions-limited-time-offers__terms-list {
  list-style: disc inside;
  color: #C0C0C0;
  margin-left: 20px;
  margin-top: 30px;
}

.page-promotions-limited-time-offers__terms-list li {
  margin-bottom: 15px;
}

.page-promotions-limited-time-offers__final-call {
  font-size: 1.1em;
  color: #FFD700;
  text-align: center;
  margin-top: 50px;
  font-weight: bold;
}

.page-promotions-limited-time-offers__inline-link {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-promotions-limited-time-offers__inline-link:hover {
  color: #E6C200;
}

.page-promotions-limited-time-offers__faq {
  background-color: #0A192F;
  padding: 80px 0;
}

.page-promotions-limited-time-offers__faq-item {
  background-color: #1A2F4F;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid #FFD70022;
}

.page-promotions-limited-time-offers__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions-limited-time-offers__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-promotions-limited-time-offers__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-limited-time-offers__faq-answer {
  color: #C0C0C0;
  font-size: 1em;
  display: none;
  margin-top: 15px;
}

.page-promotions-limited-time-offers__faq-answer.active {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-limited-time-offers__hero {
    flex-direction: column-reverse;
    text-align: center;
  }

  .page-promotions-limited-time-offers__hero-content,
  .page-promotions-limited-time-offers__hero-image-wrapper {
    max-width: 100%;
  }

  .page-promotions-limited-time-offers__main-title {
    font-size: 2.2em;
  }

  .page-promotions-limited-time-offers__section-title {
    font-size: 1.8em;
  }

  .page-promotions-limited-time-offers__promo-card {
    flex-direction: column;
  }

  .page-promotions-limited-time-offers__promo-image {
    max-height: 200px;
  }

  .page-promotions-limited-time-offers__promo-content {
    padding: 20px;
  }

  .page-promotions-limited-time-offers__promo-title {
    font-size: 1.5em;
  }

  .page-promotions-limited-time-offers__steps-list li {
    padding-top: 80px;
  }

  .page-promotions-limited-time-offers__step-icon-wrapper {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
}

@media (max-width: 768px) {
  .page-promotions-limited-time-offers__hero,
  .page-promotions-limited-time-offers__promotion-categories,
  .page-promotions-limited-time-offers__how-to-participate,
  .page-promotions-limited-time-offers__terms-and-conditions,
  .page-promotions-limited-time-offers__faq {
    padding: 40px 0;
  }

  .page-promotions-limited-time-offers__main-title {
    font-size: 1.8em;
  }

  .page-promotions-limited-time-offers__hero-description {
    font-size: 1em;
  }

  .page-promotions-limited-time-offers__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions-limited-time-offers__section-title {
    font-size: 1.6em;
    margin-bottom: 20px;
  }

  .page-promotions-limited-time-offers__section-description {
    margin-bottom: 30px;
  }

  .page-promotions-limited-time-offers__category-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-limited-time-offers__steps-list {
    grid-template-columns: 1fr;
  }

  .page-promotions-limited-time-offers__promo-title {
    font-size: 1.3em;
  }

  .page-promotions-limited-time-offers__faq-question {
    font-size: 1.2em;
  }
}