.page-promotions {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: 'Roboto', sans-serif;
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Adhering to the 8-16px top padding rule */
  padding-bottom: 40px;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 20px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-promotions__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-promotions__main-title {
  color: #F2C14E;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  /* clamp for font-size if absolutely necessary, but avoiding fixed large values */
  font-size: clamp(2em, 5vw, 3em);
}

.page-promotions__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-promotions__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
  min-width: 200px; /* Ensure minimum size for buttons */
  min-height: 48px; /* Ensure minimum size for buttons */
}

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

.page-promotions__section-title {
  font-size: 2.5em;
  color: #F2C14E;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  font-weight: 700;
  background: linear-gradient(90deg, #FFD36B, #F2C14E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

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

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

.page-promotions__promotion-card {
  background-color: #111111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease;
}

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

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

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

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

.page-promotions__card-description {
  font-size: 0.95em;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-promotions__card-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9em;
  transition: background 0.3s ease;
  min-width: 120px;
  min-height: 36px;
}

.page-promotions__card-button:hover {
  opacity: 0.9;
}

.page-promotions__how-to-claim-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-promotions__steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.page-promotions__step-card {
  background-color: #111111;
  border-radius: 12px;
  padding: 30px;
  flex: 1 1 calc(33% - 40px);
  max-width: 350px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
  min-width: 280px;
}

.page-promotions__step-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-promotions__step-description {
  font-size: 0.9em;
  line-height: 1.5;
  color: #FFF6D6;
}

.page-promotions__how-to-claim-cta {
  margin-top: 30px;
}

.page-promotions__terms-section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.page-promotions__terms-description {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-promotions__terms-link {
  color: #F2C14E;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-promotions__terms-link:hover {
  color: #FFD36B;
  text-decoration: underline;
}

.page-promotions__faq-section {
  padding: 40px 20px 80px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-promotions__faq-list {
  margin-top: 30px;
}

.page-promotions__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions__faq-question {
  width: 100%;
  background-color: #111111;
  color: #FFD36B;
  padding: 20px 25px;
  text-align: left;
  font-size: 1.1em;
  font-weight: 600;
  border: none;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-promotions__faq-answer p {
  padding-bottom: 20px;
  font-size: 0.95em;
  line-height: 1.6;
  color: #FFF6D6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions__hero-image {
    height: 500px;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__promotion-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions__step-card {
    flex: 1 1 calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-image {
    height: 400px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .page-promotions__promotion-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__card-image {
    height: 180px;
  }
  .page-promotions__card-title {
    font-size: 1.3em;
  }
  .page-promotions__step-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .page-promotions__card-image, .page-promotions__step-image, .page-promotions__hero-image {
    max-width: 100%;
    height: auto; /* Crucial for mobile overflow */
  }
  /* Ensure content images do not fall below 200px display size */
  .page-promotions__promotion-card img, 
  .page-promotions__step-card img {
    min-width: 200px;
    min-height: 200px;
    /* If max-width: 100% makes it smaller, this is fine as long as the original image is large */
    /* The interpretation should be that the *intrinsic* size should not be small, and CSS should allow it to scale down from a minimum reasonable display size */
    /* Given max-width:100% and height:auto, it will scale to fit, so min-width/height here are about ensuring the *source* image is not tiny. */
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-image {
    height: 300px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }
  .page-promotions__hero-description {
    font-size: 0.9em;
  }
  .page-promotions__card-image {
    height: 150px;
  }
  .page-promotions__card-title {
    font-size: 1.2em;
  }
}