.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

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

.page-promotions__hero {
  background: linear-gradient(135deg, #1A2B5B 0%, #3a4d80 100%); /* Adjusted for better contrast with #FFD700 accent */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

.page-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  opacity: 0.9;
}

.page-promotions__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-promotions__hero > .page-promotions__container {
  position: relative;
  z-index: 1;
}

.page-promotions__section {
  padding: 60px 0;
}

.page-promotions__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #1A2B5B;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-promotions__text {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-promotions__btn--primary {
  background-color: #FFD700;
  color: #1A2B5B;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-promotions__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promotions__btn--secondary {
  background-color: #1A2B5B;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 10px rgba(26, 43, 91, 0.4);
  margin-left: 20px;
}

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

.page-promotions__btn--details {
  background-color: #1A2B5B;
  color: #FFD700;
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 15px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #FFD700;
}

.page-promotions__btn--details:hover {
  background-color: #2c4273;
  transform: translateY(-1px);
}

.page-promotions__intro .page-promotions__btn--secondary {
  margin-top: 30px;
  margin-left: 0;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__promotion-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 25px; /* Space for button */
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-promotions__card-title {
  font-size: 1.6em;
  color: #1A2B5B;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-promotions__card-description {
  font-size: 1em;
  color: #555;
  padding: 0 20px;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions__how-to-claim {
  background-color: #f0f5f8;
}

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

.page-promotions__steps li {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
}

.page-promotions__step-number {
  background-color: #FFD700;
  color: #1A2B5B;
  font-size: 1.8em;
  font-weight: bold;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 20px;
  box-shadow: 0 2px 5px rgba(255, 215, 0, 0.4);
}

.page-promotions__steps li p {
  margin: 0;
  font-size: 1.1em;
  color: #333;
  text-align: left;
}

.page-promotions__link-inline {
  color: #1A2B5B;
  text-decoration: underline;
  font-weight: bold;
}

.page-promotions__link-inline:hover {
  color: #FFD700;
}

.page-promotions__how-to-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions__cta {
  background: linear-gradient(90deg, #1A2B5B 0%, #3a4d80 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

.page-promotions__cta-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 50px auto 0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq {
  background-color: #fff;
}

.page-promotions__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  transition: box-shadow 0.3s ease;
}

.page-promotions__faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.page-promotions__faq-answer {
  font-size: 1em;
  color: #555;
  text-align: justify;
}

.page-promotions__responsible-gaming {
  background-color: #e9ecef;
}

.page-promotions__responsible-gaming-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 60px 0;
  }
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__text {
    font-size: 0.95em;
  }
  .page-promotions__steps li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-promotions__step-number {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-promotions__steps li p {
    text-align: center;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .page-promotions__cta-image {
    margin-top: 30px;
  }
  .page-promotions__faq-question {
    font-size: 1.1em;
  }
  .page-promotions__faq-answer {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.7em;
  }
  .page-promotions__hero-subtitle {
    font-size: 0.9em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__promotion-card {
    margin: 0 10px;
  }
  .page-promotions__card-title {
    font-size: 1.4em;
  }
  .page-promotions__card-description {
    font-size: 0.9em;
  }
}