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

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

.page-promo__hero-section {
  position: relative;
  background-color: #1A202C;
  overflow: hidden;
  padding: 0;
}

.page-promo__hero-container {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly dim image to make text pop */
}

.page-promo__hero-content {
  position: absolute;
  text-align: center;
  padding: 20px;
  max-width: 800px;
  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);
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-promo__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  position: relative;
}

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

.page-promo__section-description {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.page-promo__welcome-section, .page-promo__ongoing-promos, .page-promo__loyalty-vip, .page-promo__how-to-claim, .page-promo__latest-promotions-list, .page-promo__cta-final {
  padding: 60px 0;
  background-color: #2D3748; /* Body background color */
}

.page-promo__welcome-section {
  background-color: #1A202C;
}

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

.page-promo__bonus-card {
  background-color: #1A202C;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-promo__bonus-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promo__bonus-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promo__bonus-card-text {
  color: #cccccc;
  margin-bottom: 25px;
  font-size: 1em;
}

.page-promo__bonus-card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo__bonus-card-button:hover {
  background-color: #e5c100;
}

.page-promo__promo-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.page-promo__promo-item {
  display: flex;
  align-items: center;
  background-color: #1A202C;
  border-radius: 12px;
  margin-bottom: 25px;
  padding: 25px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.page-promo__promo-item:hover {
  transform: translateX(10px);
}

.page-promo__promo-item-icon {
  width: 120px;
  height: 120px;
  min-width: 120px; /* Ensure icon doesn't shrink */
  object-fit: cover;
  border-radius: 8px;
  margin-right: 25px;
}

.page-promo__promo-item-content {
  flex-grow: 1;
}

.page-promo__promo-item-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 8px;
}

.page-promo__promo-item-text {
  color: #cccccc;
  margin-bottom: 15px;
  font-size: 0.95em;
}

.page-promo__promo-item-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-promo__promo-item-button:hover {
  background-color: #e5c100;
}

.page-promo__loyalty-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-promo__feature-item {
  background-color: #1A202C;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promo__feature-icon {
  width: 150px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
  filter: brightness(1.2); /* Slightly brighten for better visibility against dark background */
}

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

.page-promo__feature-text {
  color: #cccccc;
  font-size: 0.9em;
}

.page-promo__cta-button--secondary {
  background-color: #1A202C;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-top: 40px;
}

.page-promo__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
}

.page-promo__how-to-claim {
  background-color: #1A202C;
}

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo__step-item {
  background-color: #2D3748;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
  padding-top: 70px; /* Space for step number */
}

.page-promo__step-number {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #1A202C;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

.page-promo__step-text {
  color: #cccccc;
  margin-bottom: 20px;
  font-size: 0.95em;
}

.page-promo__step-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-promo__step-button:hover {
  background-color: #e5c100;
}

.page-promo__latest-promotions-list {
  background-color: #2D3748;
}

.page-promo__detail-card {
  display: flex;
  background-color: #1A202C;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  margin-top: 40px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promo__detail-card-image {
  width: 40%;
  height: auto;
  object-fit: cover;
  min-width: 200px; /* Ensure image is not too small */
}

.page-promo__detail-card-content {
  padding: 30px;
  flex-grow: 1;
}

.page-promo__detail-card-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promo__detail-card-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__detail-card-title a:hover {
  color: #e5c100;
}

.page-promo__detail-card-description {
  color: #cccccc;
  font-size: 1.1em;
  margin-bottom: 25px;
}

.page-promo__detail-card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-promo__detail-card-button:hover {
  background-color: #e5c100;
}

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

.page-promo__cta-final-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promo__cta-final-description {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2.2em;
  }
  .page-promo__promo-item-icon {
    width: 100px;
    height: 100px;
    min-width: 100px;
  }
  .page-promo__promo-item {
    padding: 20px;
  }
  .page-promo__detail-card-image {
    width: 35%;
  }
  .page-promo__detail-card-content {
    padding: 25px;
  }
  .page-promo__detail-card-title {
    font-size: 1.8em;
  }
  .page-promo__cta-final-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 40px 0;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promo__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-promo__bonus-grid, .page-promo__loyalty-features, .page-promo__claim-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promo__promo-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .page-promo__promo-item-icon {
    margin: 0 auto 20px auto;
  }
  .page-promo__detail-card {
    flex-direction: column;
  }
  .page-promo__detail-card-image {
    width: 100%;
    height: 250px;
  }
  .page-promo__detail-card-content {
    padding: 20px;
  }
  .page-promo__detail-card-title {
    font-size: 1.5em;
  }
  .page-promo__detail-card-description {
    font-size: 0.9em;
  }
  .page-promo__cta-final-title {
    font-size: 2em;
  }
  .page-promo__cta-final-description {
    font-size: 1em;
  }
  /* Mobile content image constraint */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__hero-section .page-promo__hero-image {
    filter: brightness(0.4); /* Darker on mobile for better text readability */
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__bonus-card-title {
    font-size: 1.5em;
  }
  .page-promo__promo-item-title {
    font-size: 1.4em;
  }
  .page-promo__step-title {
    font-size: 1.4em;
  }
  .page-promo__cta-final-title {
    font-size: 1.8em;
  }
}