.page-promo {
  color: #333333;
  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;
  overflow: hidden;
  background-color: #0d0d0d; /* Dark background for contrast with hero image and text */
  color: #ffffff;
  padding: 0;
  text-align: center;
}

.page-promo__hero-container {
  position: relative;
  width: 100%;
  height: 600px; /* Fixed height for hero section */
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

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

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

.page-promo__hero-button {
  display: inline-block;
  background-color: #B80000;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #B80000;
}

.page-promo__hero-button:hover {
  background-color: #FFD700;
  color: #B80000;
  transform: translateY(-3px);
  border-color: #FFD700;
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #B80000;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  border-bottom: 3px solid #FFD700;
  display: inline-block;
  padding-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__why-choose-section,
.page-promo__types-section,
.page-promo__how-to-claim-section,
.page-promo__gcash-advantage-section,
.page-promo__featured-section,
.page-promo__responsible-gaming-section,
.page-promo__app-section,
.page-promo__faq-section,
.page-promo__cta-section {
  padding: 80px 0;
}

.page-promo__why-choose-section {
  background-color: #f8f8f8;
}

.page-promo__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promo__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-promo__feature-card:hover {
  transform: translateY(-10px);
}

.page-promo__feature-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  min-width: 200px;
  min-height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

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

.page-promo__feature-text {
  font-size: 1.1em;
  color: #555555;
}

.page-promo__types-section {
  background-color: #f0f0f0;
}

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

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promo__promo-card:hover {
  transform: translateY(-10px);
}

.page-promo__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-promo__promo-title {
  font-size: 1.8em;
  color: #B80000;
  margin: 20px 15px 10px;
}

.page-promo__promo-description {
  font-size: 1.1em;
  color: #555555;
  padding: 0 15px 20px;
}

.page-promo__promo-button {
  display: inline-block;
  background-color: #FFD700;
  color: #B80000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promo__promo-button:hover {
  background-color: #B80000;
  color: #FFD700;
}

.page-promo__how-to-claim-section {
  background-color: #ffffff;
}

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

.page-promo__step-card {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 5px solid #B80000;
}

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

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

.page-promo__step-button {
  display: inline-block;
  background-color: #B80000;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

.page-promo__gcash-advantage-section {
  background-color: #f0f0f0;
}

.page-promo__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-promo__gcash-image {
  flex: 1 1 400px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-promo__gcash-text-content {
  flex: 2 1 500px;
}

.page-promo__gcash-text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333333;
}

.page-promo__gcash-benefits-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #333333;
}

.page-promo__gcash-benefits-list li {
  margin-bottom: 8px;
}

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

.page-promo__gcash-button:hover {
  background-color: #B80000;
  color: #FFD700;
}

.page-promo__featured-section {
  background-color: #ffffff;
}

.page-promo__details-list {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.page-promo__details-card {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  max-width: 800px;
}

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

.page-promo__details-title {
  font-size: 2em;
  color: #B80000;
  margin-bottom: 15px;
}

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

.page-promo__details-title a:hover {
  color: #FFD700;
}

.page-promo__details-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 25px;
}

.page-promo__details-button {
  display: inline-block;
  background-color: #B80000;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo__details-button:hover {
  background-color: #FFD700;
  color: #B80000;
}

.page-promo__responsible-gaming-section {
  background-color: #f8f8f8;
  text-align: center;
}

.page-promo__text-content {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promo__responsible-button:hover {
  background-color: #B80000;
  color: #FFD700;
}

.page-promo__app-section {
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-promo__app-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
}

.page-promo__app-content {
  flex: 1 1 500px;
  max-width: 600px;
}

.page-promo__app-content .page-promo__section-title {
  color: #FFD700;
  border-bottom-color: #B80000;
}

.page-promo__app-content .page-promo__text-content {
  color: #f0f0f0;
}

.page-promo__app-button {
  display: inline-block;
  background-color: #B80000;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #B80000;
}

.page-promo__app-button:hover {
  background-color: #FFD700;
  color: #B80000;
  transform: translateY(-3px);
  border-color: #FFD700;
}

.page-promo__app-image {
  flex: 1 1 300px;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  min-width: 200px;
  min-height: 200px;
}

.page-promo__faq-section {
  background-color: #ffffff;
}

.page-promo__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promo__faq-question {
  font-size: 1.4em;
  color: #B80000;
  margin-bottom: 10px;
}

.page-promo__faq-answer {
  font-size: 1.05em;
  color: #555555;
}

.page-promo__cta-section {
  background-color: #B80000;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-promo__cta-section .page-promo__section-title {
  color: #FFD700;
  border-bottom-color: #ffffff;
}

.page-promo__cta-section .page-promo__text-content {
  color: #f0f0f0;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #B80000;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
  margin-top: 30px;
}

.page-promo__cta-button:hover {
  background-color: #ffffff;
  color: #B80000;
  transform: translateY(-5px) scale(1.02);
  border-color: #ffffff;
}

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

@media (max-width: 768px) {
  .page-promo__hero-container {
    height: 500px;
  }
  .page-promo__hero-content {
    padding: 30px;
  }
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-promo__why-choose-section,
  .page-promo__types-section,
  .page-promo__how-to-claim-section,
  .page-promo__gcash-advantage-section,
  .page-promo__featured-section,
  .page-promo__responsible-gaming-section,
  .page-promo__app-section,
  .page-promo__faq-section,
  .page-promo__cta-section {
    padding: 60px 0;
  }
  .page-promo__features-grid,
  .page-promo__promo-grid,
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__gcash-image,
  .page-promo__app-image {
    flex: 1 1 100%;
    max-width: 100%;
    order: -1; /* Image first on mobile */
  }
  .page-promo__app-container {
    flex-direction: column;
  }
  .page-promo__app-content {
    order: 1;
    text-align: center;
  }
  .page-promo__details-list {
    flex-direction: column;
    align-items: center;
  }
  .page-promo__details-card {
    max-width: 100%;
  }
  .page-promo__promo-image,
  .page-promo__feature-icon,
  .page-promo__details-image,
  .page-promo__gcash-image,
  .page-promo__app-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-promo__text-content {
    font-size: 1em;
  }
  .page-promo__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-container {
    height: 400px;
  }
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__feature-title,
  .page-promo__promo-title,
  .page-promo__step-title,
  .page-promo__details-title,
  .page-promo__faq-question {
    font-size: 1.4em;
  }
  .page-promo__hero-content {
    padding: 20px;
  }
}