.page-promotions {
  color: #404040; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles main offset */
  background-color: #F3F3F3;
  overflow: hidden; /* Prevent content overflow */
}

.page-promotions__main-title {
  font-size: clamp(1.5rem, 5vw, 2rem); /* Constrained H1 size */
  color: #025BE8;
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.2;
  max-width: 90%; /* Prevent excessively long lines */
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 800px;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 15px;
}

.page-promotions__cta-button--register {
  background-color: #1266EC;
  color: #FFFFFF;
}

.page-promotions__cta-button--register:hover {
  background-color: #025BE8;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 30px;
}

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

.page-promotions__section {
  padding: 40px 20px;
  background-color: #FFFFFF;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__section-title {
  font-size: 1.8rem;
  color: #025BE8;
  margin-bottom: 20px;
  text-align: center;
}

.page-promotions__section-intro {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.page-promotions__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  justify-content: center;
}

.page-promotions__card {
  background-color: #E5EEFD;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px; /* Minimum image size */
  min-height: 200px; /* Minimum image size */
}

.page-promotions__card-title {
  font-size: 1.4rem;
  color: #025BE8;
  margin-bottom: 10px;
}

.page-promotions__card-description {
  font-size: 0.95rem;
  color: #404040;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-promotions__card-button {
  background-color: #1266EC;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions__card-button:hover {
  background-color: #025BE8;
}

.page-promotions__how-to-claim .page-promotions__steps-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-promotions__step-item {
  background-color: #F9F9F9;
  border-left: 5px solid #025BE8;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.page-promotions__step-title {
  font-size: 1.2rem;
  color: #025BE8;
  margin-bottom: 5px;
}

.page-promotions__step-description a {
  color: #1266EC;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__step-description a:hover {
  text-decoration: underline;
}

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

.page-promotions__cta-text {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__cta-button--explore {
  background-color: #025BE8;
  color: #FFFFFF;
}

.page-promotions__cta-button--explore:hover {
  background-color: #1266EC;
}

.page-promotions__responsible-gaming {
  text-align: center;
}

.page-promotions__responsible-gaming .page-promotions__section-description a {
  color: #1266EC;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__responsible-gaming .page-promotions__section-description a:hover {
  text-decoration: underline;
}

.page-promotions__cta-button--support {
  background-color: #404040;
  color: #FFFFFF;
}

.page-promotions__cta-button--support:hover {
  background-color: #222222;
}

.page-promotions__faq-item {
  background-color: #E5EEFD;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
}

.page-promotions__faq-question {
  font-size: 1.15rem;
  color: #025BE8;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__faq-answer a {
  color: #1266EC;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__faq-answer a:hover {
  text-decoration: underline;
}

.page-promotions__final-cta-section {
  text-align: center;
  padding-bottom: 60px;
}

.page-promotions__cta-link {
  color: #1266EC;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__cta-link:hover {
  text-decoration: underline;
}

.page-promotions__cta-button--final {
  background-color: #1266EC;
  color: #FFFFFF;
  padding: 15px 30px;
  font-size: 1.1rem;
}

.page-promotions__cta-button--final:hover {
  background-color: #025BE8;
}

@media (max-width: 768px) {
  .page-promotions__main-title {
    font-size: clamp(1.2rem, 8vw, 1.75rem);
  }

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

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

  .page-promotions__card-image {
    height: 200px;
  }

  .page-promotions__section-title {
    font-size: 1.5rem;
  }

  .page-promotions__section,
  .page-promotions__hero-section {
    padding: 20px 15px;
  }

  .page-promotions__hero-section img,
  .page-promotions__section img,
  .page-promotions__card-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  
  /* Ensure no horizontal scroll for images in mobile */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
}