.page-promotions {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Light text for dark body background */
  background-color: #0A0A0A; /* Ensure consistent dark background */
}

.page-promotions__hero-section {
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for visual spacing, body handles header offset */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain max width for hero image */
  margin: 0 auto;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(242, 193, 78, 0.5);
}

.page-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__main-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem); /* Responsive H1 font size */
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-promotions__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.page-promotions__btn--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for golden button */
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-promotions__btn--primary:hover {
  background: linear-gradient(180deg, #FFE082 0%, #E8B42A 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
}

.page-promotions__btn--secondary {
  background: #111111;
  color: #FFD36B;
  border: 2px solid #3A2A12;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn--secondary:hover {
  background: #1A1A1A;
  border-color: #F2C14E;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions__btn--small {
  padding: 10px 20px;
  font-size: 0.95rem;
}

.page-promotions__overview-section,
.page-promotions__promo-highlight-section,
.page-promotions__how-to-claim-section,
.page-promotions__responsible-gaming-section,
.page-promotions__cta-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.page-promotions__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #F2C14E;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.3;
}

.page-promotions__section-description {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

.page-promotions__feature-grid,
.page-promotions__promo-card-grid,
.page-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-promotions__feature-card,
.page-promotions__promo-card,
.page-promotions__step-card {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: left;
  border: 1px solid #3A2A12;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__feature-title,
.page-promotions__promo-title,
.page-promotions__step-title,
.page-promotions__app-title {
  font-size: 1.3rem;
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__feature-text,
.page-promotions__promo-text,
.page-promotions__step-text,
.page-promotions__app-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__promo-card {
  text-align: center;
  padding: 20px;
}

.page-promotions__promo-image {
  width: 100%;
  height: auto;
  min-height: 200px; /* Enforce minimum size for content images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(242, 193, 78, 0.3);
}

.page-promotions__promo-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__promo-content .page-promotions__btn {
  margin-top: auto; /* Push button to bottom */
  align-self: center;
  width: fit-content;
}

.page-promotions__step-card {
  text-align: center;
  position: relative;
  padding-top: 50px;
}

.page-promotions__step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F2C14E;
  color: #111111;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

.page-promotions__claim-footer-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 40px;
  color: #FFF6D6;
}

.page-promotions__app-download-cta {
  background-color: #111111;
  border-radius: 10px;
  padding: 40px;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid #3A2A12;
}

.page-promotions__app-image {
  width: 100%;
  max-width: 400px; /* Constrain max width */
  height: auto;
  min-height: 200px; /* Enforce minimum size for content images */
  object-fit: contain;
}

.page-promotions__app-content {
  text-align: center;
}

.page-promotions__cta-section {
  padding-bottom: 80px;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .page-promotions__hero-description {
    font-size: 1rem;
  }

  .page-promotions__btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }

  .page-promotions__overview-section,
  .page-promotions__promo-highlight-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__responsible-gaming-section,
  .page-promotions__cta-section {
    padding: 30px 15px;
  }

  .page-promotions__section-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .page-promotions__feature-grid,
  .page-promotions__promo-card-grid,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__feature-card,
  .page-promotions__promo-card,
  .page-promotions__step-card {
    padding: 20px;
  }

  .page-promotions__promo-image,
  .page-promotions__app-image {
    max-width: 100%;
    height: auto;
    max-height: unset; /* Override fixed height if any, ensure auto height */
    object-fit: contain;
  }

  .page-promotions__app-download-cta {
    flex-direction: column;
    padding: 20px;
  }

  /* Ensure all content images are responsive on mobile */
  .page-promotions img {
    max-width: 100%;
    height: auto; /* Important for responsive images */
  }
}

/* Ensure all content images are responsive by default */
.page-promotions img {
  max-width: 100%;
  height: auto; /* Prevent image overflow */
}

/* Specific rules to ensure images are not smaller than 200px where applicable */
.page-promotions__promo-image, .page-promotions__app-image {
    min-width: 200px;
    min-height: 200px;
}

@media (max-width: 768px) {
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
}