.page-promotions {
  background-color: #0D0E12;
  color: #FFF3E6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-promotions__hero-section {
  position: relative;
  margin-bottom: 40px;
  padding: 0 15px;
  max-width: 1390px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__hero-banner {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
}

.page-promotions__hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  filter: none; /* Ensure no CSS filter is applied */
}

.page-promotions__hero-content {
  text-align: center;
  padding: 30px 20px;
  background-color: #17191F;
  border-radius: 12px;
  margin-top: 20px;
}

.page-promotions__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  color: #FF8C1A;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF3E6;
}

.page-promotions__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(255, 140, 26, 0.4);
}

.page-promotions__section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #FF8C1A;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  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: #FFA53A;
  border-radius: 2px;
}

.page-promotions__promotions-list-section,
.page-promotions__how-to-claim-section,
.page-promotions__terms-section,
.page-promotions__faq-section,
.page-promotions__cta-bottom-section {
  padding: 40px 15px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 40px;
  background-color: #17191F;
  border-radius: 12px;
}

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

.page-promotions__promotion-card {
  background-color: #0D0E12;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
  border: 1px solid #A84F0C;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
}

.page-promotions__promotion-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistent card image display */
  object-fit: cover;
  display: block;
  filter: none; /* Ensure no CSS filter is applied */
  border-bottom: 1px solid #A84F0C;
}

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

.page-promotions__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFA53A;
}

.page-promotions__card-title a {
  color: #FFA53A;
  text-decoration: none;
}

.page-promotions__card-title a:hover {
  text-decoration: underline;
}

.page-promotions__card-text {
  font-size: 1rem;
  color: #FFF3E6;
  margin-bottom: 15px;
}

.page-promotions__card-date {
  font-size: 0.9rem;
  color: #A84F0C;
  display: block;
  margin-bottom: 15px;
}

.page-promotions__card-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__card-button:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
}

.page-promotions__how-to-claim-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.page-promotions__guide-image {
  flex: 1 1 400px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  filter: none; /* Ensure no CSS filter is applied */
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-promotions__guide-list {
  flex: 1 1 400px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-promotions__guide-list li {
  background-color: #0D0E12;
  border: 1px solid #A84F0C;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 40px;
}

.page-promotions__guide-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 15px;
  top: 15px;
  background-color: #FF8C1A;
  color: #FFF3E6;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.page-promotions__guide-list li strong {
  color: #FFA53A;
  font-size: 1.1rem;
}

.page-promotions__guide-list li p {
  margin-top: 5px;
  margin-bottom: 0;
  color: #FFF3E6;
}

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

.page-promotions__terms-content,
.page-promotions__cta-bottom-section p {
  font-size: 1.05rem;
  color: #FFF3E6;
  margin-bottom: 20px;
  text-align: center;
}

.page-promotions__terms-list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #FFF3E6;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__terms-list li {
  margin-bottom: 10px;
}

.page-promotions__terms-content a {
  color: #FFA53A;
  text-decoration: none;
}

.page-promotions__terms-content a:hover {
  text-decoration: underline;
}

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

.page-promotions__faq-item {
  background-color: #0D0E12;
  border: 1px solid #A84F0C;
  border-radius: 8px;
  padding: 20px;
}

.page-promotions__faq-question {
  font-size: 1.2rem;
  color: #FFA53A;
  margin-bottom: 10px;
}

.page-promotions__faq-answer {
  font-size: 1rem;
  color: #FFF3E6;
}

.page-promotions__faq-answer a {
  color: #FFA53A;
  text-decoration: none;
}

.page-promotions__faq-answer a:hover {
  text-decoration: underline;
}

.page-promotions__cta-bottom-section {
  text-align: center;
  padding-bottom: 60px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }
  .page-promotions__description {
    font-size: 1rem;
  }
  .page-promotions__promotion-card img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-content {
    padding: 20px 15px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }
  .page-promotions__description {
    font-size: 0.95rem;
  }
  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-promotions__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
    margin-bottom: 30px;
  }
  .page-promotions__promotions-list-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__terms-section,
  .page-promotions__faq-section,
  .page-promotions__cta-bottom-section {
    padding: 30px 15px;
  }
  .page-promotions__promotions-grid,
  .page-promotions__faq-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__how-to-claim-content {
    flex-direction: column;
  }
  .page-promotions__guide-image {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .page-promotions__guide-list li {
    padding-left: 35px;
  }
  .page-promotions__guide-list li::before {
    left: 10px;
    top: 15px;
  }
  .page-promotions__terms-list {
    margin-left: 15px;
    text-align: left;
  }
  /* Ensure content images are responsive */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
  .page-promotions__promotion-card img {
    height: auto; /* Allow height to adjust for smaller screens */
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: clamp(1.2rem, 7vw, 1.8rem);
  }
  .page-promotions__description {
    font-size: 0.9rem;
  }
  .page-promotions__cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .page-promotions__section-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }
  .page-promotions__card-title {
    font-size: 1.2rem;
  }
  .page-promotions__faq-question {
    font-size: 1.1rem;
  }
  .page-promotions__guide-list li strong {
    font-size: 1rem;
  }
  .page-promotions__guide-list li p {
    font-size: 0.95rem;
  }
}