.page-promotions {
  background-color: #140C0C;
  color: #FFF1E8;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding to respect header offset handled by body */
}

.page-promotions__hero-section {
  position: relative;
  text-align: center;
  padding: 0;
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 8px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-promotions__hero-content {
  position: relative; /* Changed from absolute to relative to ensure image-text stacking */
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  background-color: rgba(20, 12, 12, 0.7); /* Slightly darker overlay for text readability */
  border-radius: 8px;
  margin-top: 20px; /* Space between image and content */
}

.page-promotions__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFF1E8;
  max-width: 90%;
  margin: 0 auto 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: clamp(1.8rem, 4vw, 2.8rem); /* Responsive font size for H1 */
}

.page-promotions__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 176, 74, 0.4);
  min-width: 200px;
  text-align: center;
  border: none;
  cursor: pointer;
}

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

.page-promotions__section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto 40px;
  background-color: #2A1212;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #6A1E1E;
}

.page-promotions__section-title {
  font-size: 2.2em;
  color: #F3C54D;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__card {
  background-color: #140C0C;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #6A1E1E;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-promotions__card-title {
  font-size: 1.4em;
  color: #F3C54D;
  margin: 20px 20px 10px;
  font-weight: bold;
  line-height: 1.3;
}

.page-promotions__card-description {
  font-size: 0.95em;
  color: #FFF1E8;
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  width: calc(100% - 40px);
  padding: 12px 0;
  margin: 0 20px 20px;
  background: linear-gradient(180deg, #C61F1F 0%, #7E0D0D 100%);
  color: #FFF1E8;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__card-button:hover {
  background: linear-gradient(180deg, #E53030 0%, #C61F1F 100%);
  transform: translateY(-2px);
}

.page-promotions__cta-section {
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 40px;
  background-color: #2A1212;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #6A1E1E;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-title {
  font-size: 2.5em;
  color: #F3C54D;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button--large {
  padding: 18px 40px;
  font-size: 1.1em;
  min-width: 250px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    padding: 30px 15px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promotions__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__section {
    padding: 30px 15px;
    margin-bottom: 30px;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions__cards-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__card-image {
    height: 200px; /* Ensure content images are not too small */
  }
  .page-promotions__card-title {
    font-size: 1.2em;
  }
  .page-promotions__card-description {
    font-size: 0.9em;
  }
  .page-promotions__cta-section {
    padding: 40px 15px;
    margin-bottom: 30px;
  }
  .page-promotions__cta-title {
    font-size: 2em;
  }
  .page-promotions__cta-description {
    font-size: 1em;
  }
  .page-promotions__cta-button--large {
    padding: 15px 30px;
    font-size: 1em;
    min-width: unset;
  }
  .page-promotions__hero-section img,
  .page-promotions__welcome-bonus-section img,
  .page-promotions__reload-bonus-section img,
  .page-promotions__cashback-section img,
  .page-promotions__cta-section img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-content {
    padding: 20px 10px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }
  .page-promotions__hero-description {
    font-size: 0.9em;
  }
  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-promotions__section-title {
    font-size: 1.6em;
  }
  .page-promotions__card-image {
    height: 180px; /* Still respecting minimum 200px display width/height from HTML attributes */
  }
  .page-promotions__card-button {
    width: calc(100% - 30px);
    margin: 0 15px 15px;
  }
  .page-promotions__cta-title {
    font-size: 1.8em;
  }
  .page-promotions__cta-description {
    font-size: 0.9em;
  }
  .page-promotions__cta-button--large {
    padding: 12px 25px;
    font-size: 0.9em;
  }
}