.page-promo {
  color: #333333;
  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__section-title {
  font-size: 2.8em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: -0.5px;
}

.page-promo__section-subtitle {
  font-size: 1.3em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promo__hero-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  display: block;
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image slightly for text readability */
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 2;
  max-width: 90%;
}

.page-promo__hero-title {
  font-size: 3.8em;
  font-weight: 900;
  margin-bottom: 20px;
  color: #FFC107; /* Golden color for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.1;
}

.page-promo__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promo__hero-cta-button {
  display: inline-block;
  background-color: #FFC107;
  color: #000000;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.5em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promo__hero-cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-promo__featured-promotions {
  padding: 80px 0;
  background-color: #f8f9fa;
}

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

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-promo__promo-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo__promo-card-title {
  font-size: 1.8em;
  color: #007BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__promo-card-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__promo-card-button {
  display: inline-block;
  background-color: #007BFF;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-promo__promo-card-button:hover {
  background-color: #0056b3;
}

.page-promo__vip-section {
  padding: 80px 0;
  background-color: #007BFF;
  color: #ffffff;
}

.page-promo__vip-section .page-promo__section-title,
.page-promo__vip-section .page-promo__section-subtitle {
  color: #ffffff;
}

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

.page-promo__vip-feature-item {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  transition: background-color 0.3s ease;
}

.page-promo__vip-feature-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-promo__vip-feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.page-promo__vip-feature-title {
  font-size: 1.6em;
  color: #FFC107;
  margin-bottom: 10px;
}

.page-promo__vip-feature-text {
  font-size: 1em;
  color: #e0e0e0;
}

.page-promo__vip-cta-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0 auto;
  background-color: #FFC107;
  color: #000000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promo__vip-cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-promo__how-to-claim {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-promo__step-card {
  text-align: center;
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-promo__step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: #007BFF;
  color: #ffffff;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promo__step-text {
  font-size: 1em;
  color: #666666;
}

.page-promo__how-to-claim-cta-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0 auto;
  background-color: #007BFF;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promo__how-to-claim-cta-button:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

.page-promo__terms-conditions {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.page-promo__terms-list {
  list-style-type: disc;
  margin-left: 25px;
  color: #555555;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-promo__terms-list-item {
  margin-bottom: 10px;
}

.page-promo__terms-disclaimer {
  font-size: 1.1em;
  color: #666666;
  margin-top: 30px;
  text-align: center;
}

.page-promo__terms-link {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-promo__terms-link:hover {
  text-decoration: underline;
}

.page-promo__terms-cta-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0 auto;
  background-color: #FFC107;
  color: #000000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promo__terms-cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-promo__faq-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-promo__faq-question {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 10px;
}

.page-promo__faq-answer {
  font-size: 1em;
  color: #666666;
}

.page-promo__call-to-action {
  padding: 60px 0;
  background-color: #007BFF;
  color: #ffffff;
  text-align: center;
}

.page-promo__call-to-action .page-promo__section-title,
.page-promo__call-to-action .page-promo__section-subtitle {
  color: #ffffff;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #FFC107;
  color: #000000;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.5em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}

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

/* 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;
  }
  .page-promo__section-subtitle {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-cta-button {
    font-size: 1.2em;
    padding: 15px 30px;
  }
  .page-promo__promotion-grid,
  .page-promo__vip-features,
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__section-subtitle {
    font-size: 1em;
  }
  .page-promo__promo-card-image {
    height: 200px;
  }
  .page-promo__vip-feature-icon {
    width: 80px;
    height: 80px;
  }
  .page-promo__vip-cta-button,
  .page-promo__how-to-claim-cta-button,
  .page-promo__terms-cta-button,
  .page-promo__cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-promo__promo-card-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-promo__faq-question {
    font-size: 1.3em;
  }
  .page-promo__hero-image,
  .page-promo__promo-card-image,
  .page-promo__vip-feature-icon,
  .page-promo__how-to-claim img,
  .page-promo__terms-conditions img,
  .page-promo__faq-section img,
  .page-promo__call-to-action img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__hero-container {
    padding-bottom: 75%; /* Adjust aspect ratio for mobile hero */
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__hero-cta-button {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-subtitle {
    font-size: 0.9em;
  }
  .page-promo__promo-card-title {
    font-size: 1.5em;
  }
  .page-promo__vip-feature-title {
    font-size: 1.4em;
  }
  .page-promo__step-title {
    font-size: 1.6em;
  }
  .page-promo__faq-question {
    font-size: 1.2em;
  }
}