.page-promo {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
  background-color: #FFFFFF;
}

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

.page-promo__hero-section {
  position: relative;
  text-align: center;
  color: #FFFFFF;
  padding: 60px 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
}

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

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-promo__cta-button {
  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.3s ease;
  margin: 10px;
}

.page-promo__cta-button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-promo__cta-button--register:hover {
  background-color: #E0E0E0;
  transform: translateY(-2px);
}

.page-promo__cta-button--learn-more,
.page-promo__cta-button--full-terms,
.page-promo__cta-button--support,
.page-promo__cta-button--responsible-gaming {
  background-color: #FCBC45;
  color: #000000;
}

.page-promo__cta-button--learn-more:hover,
.page-promo__cta-button--full-terms:hover,
.page-promo__cta-button--support:hover,
.page-promo__cta-button--responsible-gaming:hover {
  background-color: #E6A83E;
  transform: translateY(-2px);
}

.page-promo__section {
  padding: 60px 0;
  text-align: center;
}

.page-promo__section:nth-of-type(odd) {
  background-color: #F8F8F8;
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 20px;
}

.page-promo__section-intro {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

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

.page-promo__promo-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promo__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.page-promo__promo-card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-promo__promo-card-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  text-align: center;
}

.page-promo__promo-card-description {
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
  text-align: center;
}

.page-promo__promo-card-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo__promo-card-button:hover {
  background-color: #E6A83E;
  transform: translateY(-2px);
}

.page-promo__section-text {
  font-size: 1em;
  max-width: 900px;
  margin: 40px auto 0 auto;
  color: #777777;
}

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-promo__claim-step {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  flex: 1 1 calc(33% - 60px);
  min-width: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promo__claim-step-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

.page-promo__claim-step-description {
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__claim-step-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo__claim-step-button:hover {
  background-color: #E6A83E;
  transform: translateY(-2px);
}

.page-promo__terms-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 40px auto;
}

.page-promo__terms-item {
  background-color: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444444;
  line-height: 1.8;
}

.page-promo__terms-item strong {
  color: #000000;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promo__claim-step {
    flex: 1 1 calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    min-height: 400px;
    padding: 40px 15px;
  }
  .page-promo__hero-content {
    padding: 20px;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__cta-button {
    padding: 12px 20px;
    font-size: 1em;
    margin: 8px;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promo__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__claim-steps {
    flex-direction: column;
    align-items: center;
  }
  .page-promo__claim-step {
    flex: 1 1 100%;
    max-width: 400px;
  }
  .page-promo__promo-card-image,
  .page-promo__hero-image,
  .page-promo__promo-card img,
  .page-promo__claim-step img {
    max-width: 100%;
    height: auto;
  }
  /* Mobile content image size restriction */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__cta-button {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
}