.page-promo {
  color: #333333; /* Dark text for light body background */
}

.page-promo__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  padding-bottom: 60px;
  text-align: center;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  overflow: hidden;
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4; /* Slightly transparent to let content stand out */
}

.page-promo__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-promo__hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-promo__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text on bright button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promo__hero-button:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

.page-promo__section {
  padding: 80px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.page-promo__section:nth-of-type(even) {
  background-color: #f8f8f8;
}

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

.page-promo__section-title {
  font-size: 2.8rem;
  color: #000000;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-promo__section-description {
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promo__card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-promo__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-promo__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-promo__card-title {
  font-size: 1.8rem;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promo__card-text {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo__card-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-promo__card-button:hover {
  background-color: #e0a53a;
  transform: translateY(-1px);
}

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

.page-promo__feature-item {
  background-color: #fefefe;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-promo__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
  width: 200px; /* Explicitly set to meet requirement */
  height: 200px; /* Explicitly set to meet requirement */
  margin-left: auto;
  margin-right: auto;
}

.page-promo__feature-title {
  font-size: 1.6rem;
  color: #000000;
  margin-bottom: 10px;
}

.page-promo__feature-text {
  font-size: 1rem;
  color: #666666;
}

.page-promo__vip-button {
  display: inline-block;
  background-color: #000000; /* Main color */
  color: #FFFFFF;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__vip-button:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-promo__how-to-claim .page-promo__section-title,
.page-promo__how-to-claim .page-promo__section-description {
  color: #000000;
}

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

.page-promo__step-item {
  background-color: #fefefe;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  padding-top: 70px; /* Space for number */
}

.page-promo__step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #FCBC45;
  color: #000000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  border: 4px solid #FFFFFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promo__step-title {
  font-size: 1.8rem;
  color: #000000;
  margin-bottom: 10px;
}

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

.page-promo__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

.page-promo__latest-promos {
  background-color: #f0f0f0;
}

.page-promo__promo-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: left;
}

.page-promo__promo-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  padding: 25px 30px;
  transition: transform 0.3s ease;
}

.page-promo__promo-item:hover {
  transform: translateY(-3px);
}

.page-promo__promo-title {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

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

.page-promo__promo-title a:hover {
  color: #FCBC45;
}

.page-promo__promo-description {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 15px;
}

.page-promo__promo-link {
  display: inline-block;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.page-promo__promo-link:hover {
  color: #e0a53a;
  text-decoration: underline;
}

.page-promo__cta {
  background-color: #000000;
  color: #FFFFFF;
  padding: 100px 20px;
}

.page-promo__cta-title {
  font-size: 3.2rem;
  color: #FCBC45;
  margin-bottom: 25px;
  line-height: 1.2;
}

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

.page-promo__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-promo__cta-main-button,
.page-promo__cta-secondary-button {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promo__cta-main-button {
  background-color: #FCBC45;
  color: #000000;
}

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

.page-promo__cta-secondary-button {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

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

.page-promo__deep-content {
  text-align: left;
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.page-promo__deep-content .page-promo__section-title {
  text-align: center;
  color: #000000;
}

.page-promo__deep-content .page-promo__section-description {
  text-align: center;
  color: #555555;
}

.page-promo__subsection-title {
  font-size: 2rem;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FCBC45;
  padding-left: 15px;
}

.page-promo__paragraph {
  font-size: 1rem;
  line-height: 1.7;
  color: #444444;
  margin-bottom: 20px;
}

.page-promo__content-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

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

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
    padding-bottom: 40px;
  }
  .page-promo__hero-title {
    font-size: 2.2rem;
  }
  .page-promo__hero-description {
    font-size: 1.1rem;
  }
  .page-promo__hero-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-promo__section {
    padding: 60px 15px;
  }
  .page-promo__section-title {
    font-size: 2rem;
  }
  .page-promo__section-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .page-promo__card-grid,
  .page-promo__features-grid,
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__card-image,
  .page-promo__feature-icon,
  .page-promo__content-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 150px; /* Ensure images are not too small */
  }
  .page-promo__feature-icon {
    width: 200px;
    height: 150px;
  }
  .page-promo__cta-title {
    font-size: 2.2rem;
  }
  .page-promo__cta-description {
    font-size: 1.1rem;
  }
  .page-promo__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__cta-main-button,
  .page-promo__cta-secondary-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    font-size: 1.1rem;
    padding: 15px 30px;
  }
  .page-promo__subsection-title {
    font-size: 1.6rem;
  }
  .page-promo__promo-title {
    font-size: 1.5rem;
  }
  /* Mobile content area images must be constrained */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__hero-section {
    width: auto; /* Allow padding to work */
  }
  .page-promo__hero-container {
    width: auto; /* Allow padding to work */
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8rem;
  }
  .page-promo__section-title {
    font-size: 1.8rem;
  }
  .page-promo__cta-title {
    font-size: 1.8rem;
  }
  .page-promo__card-title {
    font-size: 1.5rem;
  }
  .page-promo__step-title {
    font-size: 1.5rem;
  }
  .page-promo__promo-title {
    font-size: 1.3rem;
  }
}