.page-promotions {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 20px; /* Small padding at the bottom of the hero section */
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Minimum size requirement */
}

.page-promotions__hero-content {
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__main-title {
  color: #F2C14E;
  margin-top: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-promotions__description {
  margin: 15px auto 30px auto;
  max-width: 700px;
  font-size: 1.1em;
}

.page-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.page-promotions__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 150px;
  text-align: center;
}

.page-promotions__btn--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A;
  border: none;
}

.page-promotions__btn--primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

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

.page-promotions__btn--secondary:hover {
  transform: translateY(-2px);
  background-color: #F2C14E;
  color: #0A0A0A;
}

.page-promotions__section-title {
  color: #F2C14E;
  text-align: center;
  margin: 60px 0 20px 0;
  font-size: 2.5em;
  font-weight: bold;
}

.page-promotions__section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
}

.page-promotions__promotion-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

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

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

.page-promotions__card-text {
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-promotions__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 20px;
}

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

.page-promotions__app-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-promotions__app-image {
  margin-top: 40px;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

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

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

.page-promotions__step-card {
  background-color: #111111;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  border: 1px solid #3A2A12;
}

.page-promotions__step-title {
  color: #F2C14E;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-promotions__step-text {
  font-size: 0.95em;
}

.page-promotions__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

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

.page-promotions__faq-item {
  background-color: #111111;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #3A2A12;
}

.page-promotions__faq-question {
  color: #FFD36B;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-promotions__faq-answer {
  font-size: 0.95em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promotions__main-title {
    font-size: clamp(1.8em, 5vw, 2.5em); /* Use clamp for H1 font size */
  }

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

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

  .page-promotions__hero-content {
    padding: 15px;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-promotions__btn {
    width: 80%;
    max-width: 300px;
  }

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

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

  /* Mobile image constraint */
  .page-promotions__hero-image,
  .page-promotions__card-image,
  .page-promotions__app-image {
    max-width: 100% !important;
    height: auto !important;
  }
}

/* CSS for general image sizing in content areas to prevent small icons */
/* This selects any img within .page-promotions and ensures its display size is not too small */
.page-promotions img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover; /* Ensure images fill their space nicely */
}

/* Specific rule to prevent any img inside .page-promotions from displaying smaller than 200px in mobile */
@media (max-width: 768px) {
  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px; /* Ensure images are not too small even if scaled down */
    min-height: 200px;
  }
  /* For images that might naturally be smaller, but are used as content images, ensure they are displayed at a reasonable size */
  .page-promotions__card-image,
  .page-promotions__app-image {
    width: 100%; /* Force width to be responsive */
    height: auto; /* Maintain aspect ratio */
  }
}