.page-promo {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

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

.page-promo__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  padding-top: 40px;
}

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

.page-promo__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page-promo__btn--primary {
  background-color: #007bff;
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-promo__btn--primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-promo__btn--secondary {
  background-color: #ffc107;
  color: #333333;
  border: 2px solid #ffc107;
  margin-left: 15px;
}

.page-promo__btn--secondary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
}

.page-promo__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
  margin-top: 20px;
}

.page-promo__btn--large {
  padding: 15px 30px;
  font-size: 1.2em;
}

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

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

.page-promo__hero-container {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
  max-width: 1200px;
  width: 100%;
}

.page-promo__hero-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
  color: #ffffff;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffc107; /* Auxiliary color for hero title */
  line-height: 1.2;
}

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

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

/* Why Choose Section */
.page-promo__why-choose-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

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

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

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

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

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

.page-promo__feature-text {
  color: #666666;
}

/* Types Section */
.page-promo__types-section {
  padding: 80px 0;
}

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

.page-promo__promo-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo__card-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-promo__card-text {
  color: #666666;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* How to Claim Section */
.page-promo__how-to-claim-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

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

.page-promo__step-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-promo__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #ffc107;
  color: #333333;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-promo__step-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-promo__step-text {
  color: #666666;
}

.page-promo__action-center {
  text-align: center;
  margin-top: 60px;
}

/* Games Section */
.page-promo__games-section {
  padding: 80px 0;
}

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

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

.page-promo__category-card:hover {
  transform: translateY(-5px);
}

.page-promo__category-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-promo__category-title {
  font-size: 1.5em;
  color: #007bff;
  margin: 20px 0 10px 0;
}

.page-promo__category-text {
  color: #666666;
  padding: 0 20px 20px 20px;
}

/* Security Section */
.page-promo__security-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

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

.page-promo__security-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-promo__security-icon {
  width: 100%;
  height: auto;
  max-width: 200px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-promo__security-heading {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-promo__security-text {
  color: #666666;
}

/* App Download Section */
.page-promo__app-download-section {
  padding: 80px 0;
}

.page-promo__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
}

.page-promo__app-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-promo__app-features {
  max-width: 500px;
}

.page-promo__app-features-title {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 25px;
}

.page-promo__app-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promo__app-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23ffc107" d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #555555;
}

/* FAQ Section */
.page-promo__faq-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.page-promo__faq-items {
  margin-top: 50px;
}

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

.page-promo__faq-question {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #ffc107;
  transition: transform 0.3s ease;
}

.page-promo__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promo__faq-answer {
  color: #666666;
  font-size: 1.05em;
  display: none;
  padding-top: 10px;
}

.page-promo__faq-answer.active {
  display: block;
}

/* CTA Section */
.page-promo__cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #ffffff;
}

.page-promo__cta-title {
  font-size: 3em;
  color: #ffc107;
  margin-bottom: 20px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__app-content {
    flex-direction: column;
  }
  .page-promo__app-features {
    text-align: center;
  }
  .page-promo__app-list {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-content {
    padding: 30px 20px;
  }
  .page-promo__btn--secondary {
    margin-left: 0;
    margin-top: 10px;
  }
  .page-promo__btn {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .page-promo__features-grid, .page-promo__promo-cards, .page-promo__steps-grid, .page-promo__game-categories, .page-promo__security-features {
    grid-template-columns: 1fr;
  }
  .page-promo__section-intro {
    font-size: 1em;
  }
  .page-promo__cta-title {
    font-size: 2.2em;
  }
  .page-promo__app-image {
    width: 80%;
  }
  /* Mobile content area image constraint */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__category-image {
    height: 200px; /* Adjust for smaller screens */
  }
  .page-promo__feature-icon, .page-promo__security-icon {
    max-width: 150px;
  }
  .page-promo__app-list li {
    background-position: top 5px left;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__cta-title {
    font-size: 1.8em;
  }
  .page-promo__hero-buttons {
    flex-direction: column;
  }
}