.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 below fixed header */
}

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

.page-promo__hero-section {
  position: relative;
  text-align: center;
  padding-bottom: 60px;
  overflow: hidden;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-promo__hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 600px; /* Ensure hero section has a decent height */
  padding: 40px 20px;
}

.page-promo__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-promo__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold main color */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-promo__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-promo__button--primary {
  background-color: #FFD700; /* Gold main color */
  color: #0A192F;
  border: 2px solid #FFD700;
}

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

.page-promo__button--secondary {
  background-color: transparent;
  color: #1E90FF; /* Blue accent color */
  border: 2px solid #1E90FF;
}

.page-promo__button--secondary:hover {
  background-color: #1a7ad7;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-promo__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promo__section-description {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px 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: rgba(30, 144, 255, 0.1); /* Semi-transparent blue */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

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

.page-promo__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-promo__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promo__card-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold color */
  margin-bottom: 15px;
  line-height: 1.3;
}

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

.page-promo__card-title a:hover {
  color: #1E90FF; /* Blue on hover */
}

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

.page-promo__button--card {
  background-color: #1E90FF; /* Blue accent color */
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 0.95em;
  align-self: flex-start;
}

.page-promo__button--card:hover {
  background-color: #1a7ad7;
}

.page-promo__gcash-exclusive {
  background: linear-gradient(135deg, #1E90FF, #0A192F);
  padding: 80px 0;
  margin-top: 80px;
}

.page-promo__gcash-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promo__feature-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

.page-promo__feature-description {
  color: #e0e0e0;
  font-size: 0.95em;
}

.page-promo__how-to-claim {
  padding: 80px 0;
}

.page-promo__claim-steps {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-promo__claim-steps li {
  counter-increment: step-counter;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 70px;
}

.page-promo__claim-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700;
  color: #0A192F;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-promo__claim-steps h3 {
  font-size: 1.6em;
  color: #1E90FF;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promo__claim-steps p {
  color: #cccccc;
  font-size: 1em;
}

.page-promo__link {
  color: #1E90FF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__link:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-promo__why-choose-okgames {
  background-color: #132a4a; /* Slightly lighter dark blue */
  padding: 80px 0;
  margin-top: 80px;
}

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

.page-promo__advantage-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

.page-promo__advantage-description {
  color: #e0e0e0;
  font-size: 0.95em;
}

.page-promo__cta-section {
  text-align: center;
  padding: 80px 0;
  margin-top: 80px;
  background: linear-gradient(45deg, #0A192F, #1E90FF);
}

.page-promo__cta-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-promo__legal-disclaimer {
  padding: 40px 0;
  text-align: center;
  font-size: 0.9em;
  color: #888888;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
}

.page-promo__disclaimer-text a {
  color: #1E90FF;
  text-decoration: none;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }

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

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

@media (max-width: 768px) {
  .page-promo__hero-container {
    min-height: 500px;
    padding: 30px 15px;
  }

  .page-promo__hero-title {
    font-size: 2.5em;
  }

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

  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-promo__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-promo__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .page-promo__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-promo__promo-grid,
  .page-promo__gcash-features,
  .page-promo__advantages {
    grid-template-columns: 1fr;
  }

  .page-promo__promo-card {
    margin-bottom: 20px;
  }

  .page-promo__claim-steps li {
    padding-left: 60px;
  }

  .page-promo__claim-steps li::before {
    width: 45px;
    height: 45px;
    font-size: 1.6em;
  }

  .page-promo__claim-steps h3 {
    font-size: 1.4em;
  }

  /* Ensure images in content area are responsive and not smaller than 200px */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }

  /* Override any specific image sizing if it makes them too small */
  .page-promo__card-image {
    height: 200px; /* Ensure minimum height */
  }
  .page-promo__cta-image {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.6em;
  }
  .page-promo__card-title {
    font-size: 1.5em;
  }
  .page-promo__feature-title,
  .page-promo__advantage-title {
    font-size: 1.3em;
  }
  .page-promo__claim-steps li {
    padding-left: 50px;
  }
  .page-promo__claim-steps li::before {
    width: 40px;
    height: 40px;
    font-size: 1.4em;
  }
}