.page-promo {
  color: #ffffff;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #0A1931;
}

.page-promo__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background-color: #0A1931;
  overflow: hidden;
}

.page-promo__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darkens image for text readability, not changing color */
}

.page-promo__hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 800px;
  padding: 20px;
  z-index: 10;
}

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

.page-promo__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-promo__hero-button,
.page-promo__card-button,
.page-promo__vip-button,
.page-promo__cta-button,
.page-promo__final-cta-button,
.page-promo__responsible-gaming-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
}

.page-promo__hero-button:hover,
.page-promo__card-button:hover,
.page-promo__vip-button:hover,
.page-promo__cta-button:hover,
.page-promo__final-cta-button:hover,
.page-promo__responsible-gaming-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promo__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.page-promo__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promo__section-intro {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.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: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

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

.page-promo__card-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

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

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

.page-promo__vip-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  border-radius: 15px;
  margin: 40px auto;
  display: block;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-promo__vip-benefits {
  list-style: none;
  padding: 0;
  margin: 30px auto 50px auto;
  max-width: 700px;
  text-align: left;
}

.page-promo__vip-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #f0f0f0;
  border-radius: 8px;
}

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  margin: 40px auto 60px auto;
  max-width: 800px;
  text-align: left;
}

.page-promo__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promo__step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promo__step-description {
  font-size: 1em;
  color: #cccccc;
}

.page-promo__step-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

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

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

.page-promo__inline-link {
  color: #FFD700;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  padding: 10px 20px;
  border: 2px solid #FFD700;
  border-radius: 50px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promo__inline-link:hover {
  background-color: #FFD700;
  color: #0A1931;
}

@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2.5em;
  }

  .page-promo__hero-description {
    font-size: 1em;
  }

  .page-promo__hero-button,
  .page-promo__card-button,
  .page-promo__vip-button,
  .page-promo__cta-button,
  .page-promo__final-cta-button,
  .page-promo__responsible-gaming-button {
    padding: 12px 25px;
    font-size: 1em;
    min-width: unset;
    width: auto;
  }

  .page-promo__section-title {
    font-size: 2em;
  }

  .page-promo__section-intro {
    font-size: 0.95em;
  }

  .page-promo__content-area {
    padding: 40px 15px;
  }

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

  .page-promo__promo-card {
    padding: 20px;
  }

  .page-promo__card-title {
    font-size: 1.5em;
  }

  .page-promo__card-description {
    font-size: 0.9em;
  }

  .page-promo__vip-benefits {
    max-width: 100%;
  }

  .page-promo__vip-item {
    font-size: 1em;
  }

  .page-promo__claim-steps {
    max-width: 100%;
  }

  .page-promo__step-item {
    padding: 20px;
  }

  .page-promo__step-title {
    font-size: 1.3em;
  }

  .page-promo__step-description {
    font-size: 0.9em;
  }

  /* Mobile content image constraint to prevent overflow */
  .page-promo__hero-image,
  .page-promo__promo-card img,
  .page-promo__vip-image,
  .page-promo__content-area img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }
}