.page-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Ensure consistency with body background */
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Primary brand color for titles */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px 60px; /* Adjusted padding-top, assuming shared handles body padding */
  background-color: #0a0a0a;
  overflow: hidden;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-promotions__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page-promotions__hero-description {
  font-size: 1.4em;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.5;
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

/* CTA Buttons */
.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__cta-button--primary {
  background-color: #FFD700;
  color: #121212; /* Dark text for primary button */
  border: 2px solid #FFD700;
}

.page-promotions__cta-button--primary:hover {
  background-color: #e0b800;
  border-color: #e0b800;
}

.page-promotions__cta-button--secondary {
  background-color: #8B0000;
  color: #ffffff;
  border: 2px solid #8B0000;
}

.page-promotions__cta-button--secondary:hover {
  background-color: #6a0000;
  border-color: #6a0000;
}

.page-promotions__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

/* Featured Promotions Grid */
.page-promotions__featured-promos {
  background-color: #1a1a1a;
  padding: 80px 0;
}

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

.page-promotions__promo-card {
  background-color: rgba(255, 255, 255, 0.08); /* Light transparent background */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}

.page-promotions__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions__card-text {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

/* How To Join Section */
.page-promotions__how-to-join {
  background-color: #121212;
  padding: 80px 0;
}

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

.page-promotions__step-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto;
}

.page-promotions__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions__step-text {
  font-size: 0.95em;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-promotions__image-full-width {
  margin-top: 60px;
}

.page-promotions__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Terms & Conditions Section */
.page-promotions__terms-conditions {
  background-color: #8B0000; /* Auxiliary brand color */
  padding: 80px 0;
  color: #ffffff;
}

.page-promotions__terms-conditions .page-promotions__section-title {
  color: #FFD700;
}

.page-promotions__terms-conditions .page-promotions__section-description {
  color: #f0f0f0;
}

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

.page-promotions__term-item {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-promotions__term-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions__term-text {
  font-size: 0.95em;
  color: #f0f0f0;
}

/* FAQ Section */
.page-promotions__faq {
  background-color: #1a1a1a;
  padding: 80px 0;
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-promotions__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: rgba(255, 215, 0, 0.2);
}

.page-promotions__faq-q-text {
  margin: 0;
  color: #FFD700;
  font-size: 1em;
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #e0e0e0;
  background-color: rgba(0, 0, 0, 0.3);
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 1000px !important; /* Sufficiently large */
  padding: 15px 25px;
}

.page-promotions__faq-answer p {
  margin: 0;
  color: #e0e0e0;
}

/* Conclusion Section */
.page-promotions__conclusion {
  background-color: #121212;
  padding: 80px 0;
}

.page-promotions__text-center {
  text-align: center;
}

.page-promotions__image-bottom {
  margin-top: 60px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 3em;
  }
  .page-promotions__hero-description {
    font-size: 1.2em;
  }
  .page-promotions__section-title {
    font-size: 2.2em;
  }
  .page-promotions__card-title {
    font-size: 1.6em;
  }
  .page-promotions__term-title {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 90px 15px 40px; /* Adjust for mobile header offset if needed, but shared handles body */
  }
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-promotions__promo-grid,
  .page-promotions__steps-grid,
  .page-promotions__terms-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__promo-card,
  .page-promotions__step-item,
  .page-promotions__term-item {
    padding: 20px;
  }
  .page-promotions__card-title {
    font-size: 1.4em;
  }
  .page-promotions__step-title {
    font-size: 1.4em;
  }
  .page-promotions__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-promotions__faq-answer {
    padding: 0 20px;
  }
  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding: 10px 20px;
  }

  /* Mobile image responsiveness */
  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__promo-grid,
  .page-promotions__steps-grid,
  .page-promotions__terms-content,
  .page-promotions__faq-list,
  .page-promotions__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }
  .page-promotions__hero-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-promotions__cta-button,
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions a[class*="button"],
  .page-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-bottom: 10px; /* Space between stacked buttons */
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-promotions__cta-buttons {
    display: flex;
    flex-direction: column;
  }
  /* No video on this page, but adding the video responsive rules for completeness as per prompt */
  .page-promotions video,
  .page-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__video-section,
  .page-promotions__video-container,
  .page-promotions__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-promotions__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__hero-description {
    font-size: 0.9em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__card-title {
    font-size: 1.2em;
  }
  .page-promotions__step-title {
    font-size: 1.2em;
  }
  .page-promotions__faq-question {
    font-size: 1em;
  }
}

/* Color Contrast Fixes (if needed, based on body background #121212) */
.page-promotions__dark-bg {
  background-color: #8B0000; /* Example use of auxiliary color */
  color: #ffffff;
}
.page-promotions__light-bg {
  background-color: #ffffff;
  color: #333333;
}
.page-promotions__medium-bg {
  background-color: #FFD700;
  color: #121212; /* Dark text for primary brand color background */
}

/* Ensure text on dark backgrounds is light */
.page-promotions__promo-card,
.page-promotions__step-item,
.page-promotions__term-item {
  color: #ffffff;
}

.page-promotions__card-text,
.page-promotions__step-text,
.page-promotions__term-text {
  color: #e0e0e0;
}