.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__hero-section {
  background-color: #000000; /* Dark background for hero content */
  padding: 0;
  position: relative;
  overflow: hidden;
}

.page-promo__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image to make text pop */
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  z-index: 10;
  max-width: 900px;
  padding: 20px;
}

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

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
  font-size: 1.1em;
}

.page-promo__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: none;
}

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

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

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

.page-promo__button--centered {
  margin-top: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 300px;
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  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__offers-section, .page-promo__daily-section, .page-promo__vip-section, .page-promo__how-to-claim-section, .page-promo__app-section, .page-promo__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

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

.page-promo__offer-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-promo__offer-image {
  width: 100%;
  height: 250px; /* Fixed height for consistent card images */
  object-fit: cover;
  display: block;
  min-height: 200px; /* Enforce min-height for content images */
}

.page-promo__offer-card-title {
  font-size: 1.8em;
  color: #000000;
  margin: 25px 20px 10px 20px;
}

.page-promo__offer-card-description {
  font-size: 1em;
  color: #666666;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-promo__offer-card .page-promo__button {
  margin: 0 20px 20px 20px;
  padding: 12px 25px;
  font-size: 1em;
}

.page-promo__offer-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.page-promo__list-item {
  background-color: #f0f0f0;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promo__list-item-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

.page-promo__list-item-description {
  font-size: 1em;
  color: #555555;
}

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

.page-promo__steps-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 40px auto 0 auto;
}

.page-promo__steps-list li {
  background-color: #f0f0f0;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-left: 5px solid #FCBC45;
  border-radius: 8px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promo__step-number {
  font-size: 1.8em;
  font-weight: bold;
  color: #FCBC45;
  margin-right: 15px;
}

.page-promo__step-text {
  font-size: 1.1em;
  color: #333333;
}

.page-promo__faq-accordion {
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.page-promo__faq-item {
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promo__faq-question {
  width: 100%;
  background-color: #FFFFFF;
  color: #000000;
  padding: 20px 25px;
  border: none;
  text-align: left;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promo__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-promo__faq-question:hover {
  background-color: #f0f0f0;
}

.page-promo__faq-answer {
  padding: 0 25px;
  background-color: #f8f8f8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promo__faq-answer p {
  padding-bottom: 20px;
  color: #555555;
}

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

@media (max-width: 768px) {
  .page-promo {
    padding-top: var(--header-offset, 80px);
  }
  .page-promo__hero-title {
    font-size: 2.5em;
    margin-bottom: 15px;
  }
  .page-promo__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-promo__button {
    padding: 12px 25px;
    font-size: 1em;
    min-width: 180px;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__section-intro {
    font-size: 0.95em;
  }
  .page-promo__offer-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__offer-image, .page-promo__vip-image, .page-promo__app-image {
    max-width: 100%;
    height: auto; /* Ensure images scale down */
    min-height: 200px; /* Maintain minimum size */
  }
  .page-promo__offer-card-title {
    font-size: 1.6em;
  }
  .page-promo__list-item-title {
    font-size: 1.3em;
  }
  .page-promo__steps-list li {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }
  .page-promo__step-number {
    margin-bottom: 10px;
  }
  .page-promo__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  /* Ensure all content area images are responsive and do not overflow */
  .page-promo img {
    max-width: 100%;
    height: auto; 
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__button {
    min-width: unset;
    width: 100%;
    max-width: 250px;
  }
  .page-promo__hero-content {
    padding: 15px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__offer-card-title {
    font-size: 1.4em;
  }
  .page-promo__list-item-title {
    font-size: 1.2em;
  }
  .page-promo__step-number {
    font-size: 1.5em;
  }
  .page-promo__step-text {
    font-size: 0.95em;
  }
  .page-promo__faq-question {
    font-size: 0.95em;
  }
}