.page-promo {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1A1A2E, #0d0d1a);
  padding: 0; /* Content inside hero-container handles padding */
}

.page-promo__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  max-height: 675px; /* Limit height for aesthetic */
  margin-bottom: 30px;
}

.page-promo__hero-content {
  z-index: 1;
  position: relative;
  padding: 20px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  margin-top: -100px; /* Overlap with image slightly */
  margin-bottom: 30px;
}

.page-promo__hero-title {
  font-size: 3.2em;
  color: #E9B000;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-promo__hero-button,
.page-promo__cta-button {
  display: inline-block;
  background-color: #E9B000;
  color: #1A1A2E;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promo__hero-button:hover,
.page-promo__cta-button:hover {
  background-color: #ffc800;
  transform: translateY(-3px);
}

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

.page-promo__section-title {
  font-size: 2.8em;
  color: #E9B000;
  text-align: center;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promo__section-intro {
  font-size: 1.1em;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 50px;
  color: #cccccc;
}

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

.page-promo__card {
  background-color: #1A1A2E;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promo__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

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

.page-promo__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promo__card-title {
  font-size: 1.8em;
  color: #E9B000;
  margin-bottom: 15px;
}

.page-promo__card-title a {
  color: #E9B000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__card-title a:hover {
  color: #ffc800;
}

.page-promo__card-description {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo__card-button {
  display: inline-block;
  background-color: #1A1A2E;
  color: #E9B000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #E9B000;
  transition: background-color 0.3s ease, color 0.3s ease;
  align-self: flex-start;
}

.page-promo__card-button:hover {
  background-color: #E9B000;
  color: #1A1A2E;
}

.page-promo__types-of-bonuses,
.page-promo__how-to-claim,
.page-promo__responsible-gaming,
.page-promo__faq,
.page-promo__cta-final {
  padding: 60px 0;
  background-color: #0d0d1a;
}

.page-promo__types-of-bonuses {
  background-color: #1A1A2E;
}

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

.page-promo__bonus-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #E9B000;
}

.page-promo__bonus-heading {
  font-size: 1.6em;
  color: #E9B000;
  margin-bottom: 15px;
}

.page-promo__bonus-text {
  font-size: 1em;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-promo__cta-area {
  text-align: center;
  margin-top: 60px;
}

.page-promo__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.page-promo__step-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #E9B000;
}

.page-promo__step-heading {
  font-size: 1.5em;
  color: #E9B000;
  margin-bottom: 10px;
}

.page-promo__step-text {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-promo__step-text a {
  color: #E9B000;
  text-decoration: underline;
}

.page-promo__step-text a:hover {
  color: #ffc800;
}

.page-promo__paragraph {
  font-size: 1.1em;
  line-height: 1.7;
  color: #cccccc;
  text-align: center;
  margin-bottom: 30px;
}

.page-promo__link {
  display: block;
  text-align: center;
  color: #E9B000;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: color 0.3s ease;
}

.page-promo__link:hover {
  color: #ffc800;
}

.page-promo__faq-item {
  background-color: rgba(255, 255, 255, 0.07);
  padding: 20px 25px;
  border-radius: 8px;
  margin-bottom: 15px;
  border-left: 3px solid #E9B000;
}

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

.page-promo__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-promo__cta-final {
  background-color: #1A1A2E;
  text-align: center;
  padding: 80px 20px;
}

.page-promo__cta-button--large {
  padding: 18px 45px;
  font-size: 1.3em;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__hero-description {
    font-size: 1.2em;
  }
  .page-promo__section-title {
    font-size: 2.4em;
  }
  .page-promo__card-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-container {
    padding: 30px 15px;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__hero-content {
    margin-top: -60px;
  }
  .page-promo__hero-button,
  .page-promo__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__container {
    padding: 30px 15px;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promo__card-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__card-image {
    height: 250px;
  }
  .page-promo__bonus-list {
    grid-template-columns: 1fr;
  }
  .page-promo__steps-list {
    gap: 20px;
  }
  .page-promo__cta-final {
    padding: 50px 15px;
  }
  .page-promo__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  /* Ensure images in content area are responsive and not too small */
  .page-promo__hero-image,
  .page-promo__card-image,
  .page-promo__container img,
  .page-promo__bonus-item img,
  .page-promo__step-item img,
  .page-promo__faq-item img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
    object-fit: cover;
  }
  /* Prevent horizontal scroll from content */
  .page-promo {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.95em;
  }
  .page-promo__hero-content {
    margin-top: -40px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__card-title {
    font-size: 1.5em;
  }
  .page-promo__bonus-heading {
    font-size: 1.3em;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
  }
}