.page-promotions {
  background-color: transparent; /* Body background is handled by shared.css (#0a0a0a) */
  color: #ffffff; /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 0; /* Handled by shared.css or hero section */
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure header offset for the first section */
  box-sizing: border-box;
}

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

.page-promotions__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
  color: #ffffff;
}

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

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

.page-promotions__cta-button {
  display: inline-block;
  background-color: #26A9E0; /* Main brand color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-promotions__cta-button:hover {
  background-color: #1a8cc7; /* Slightly darker shade on hover */
}

.page-promotions__cta-button--center {
  display: block;
  margin: 30px auto 0 auto;
  text-align: center;
}

.page-promotions__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff; /* Default for dark background */
}

.page-promotions__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0; /* Default for dark background */
}

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

.page-promotions__dark-bg {
  background-color: rgba(38, 169, 224, 0.1); /* Slightly transparent brand color background */
  color: #ffffff;
}

.page-promotions__light-bg {
  background-color: #ffffff; /* White background for contrast */
  color: #333333; /* Dark text for light background */
}

/* Specific text color for light background sections */
.page-promotions__light-bg .page-promotions__section-title,
.page-promotions__light-bg .page-promotions__text-block,
.page-promotions__light-bg .page-promotions__card-title,
.page-promotions__light-bg .page-promotions__card-description,
.page-promotions__light-bg .page-promotions__feature-title,
.page-promotions__light-bg .page-promotions__feature-description,
.page-promotions__light-bg .page-promotions__step-title,
.page-promotions__light-bg .page-promotions__step-description {
  color: #333333; /* Ensure dark text on light background */
}

.page-promotions__inline-link {
  color: #26A9E0; /* Brand color for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-promotions__inline-link:hover {
  color: #1a8cc7;
}

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

.page-promotions__promo-card,
.page-promotions__feature-item,
.page-promotions__step-card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for cards on dark background */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px; /* Ensure cards have a minimum height */
}

.page-promotions__light-bg .page-promotions__promo-card,
.page-promotions__light-bg .page-promotions__feature-item,
.page-promotions__light-bg .page-promotions__step-card {
  background-color: #f8f8f8; /* Light background for cards on light sections */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
}

.page-promotions__promo-card:hover,
.page-promotions__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__card-title,
.page-promotions__feature-title,
.page-promotions__step-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0; /* Brand color for titles */
}

.page-promotions__light-bg .page-promotions__card-title,
.page-promotions__light-bg .page-promotions__feature-title,
.page-promotions__light-bg .page-promotions__step-title {
  color: #26A9E0; /* Still brand color for titles on light background */
}

.page-promotions__card-link,
.page-promotions__feature-link {
  color: inherit; /* Inherit color from parent */
  text-decoration: none;
}

.page-promotions__card-link:hover,
.page-promotions__feature-link:hover {
  text-decoration: underline;
}

.page-promotions__card-description,
.page-promotions__feature-description,
.page-promotions__step-description {
  font-size: 1em;
  color: #f0f0f0; /* Default for dark background */
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-promotions__light-bg .page-promotions__card-description,
.page-promotions__light-bg .page-promotions__feature-description,
.page-promotions__light-bg .page-promotions__step-description {
  color: #555555; /* Darker text for light background */
}

.page-promotions__btn-primary {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: auto; /* Push button to bottom of flex container */
}

.page-promotions__btn-primary:hover {
  background-color: #1a8cc7;
}

.page-promotions__btn-secondary {
  display: inline-block;
  background-color: #ffffff;
  color: #26A9E0;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #26A9E0;
  cursor: pointer;
  margin-top: 30px;
}

.page-promotions__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__terms-list li {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  color: #f0f0f0;
  font-size: 1em;
}

.page-promotions__terms-list li strong {
  color: #26A9E0;
}

.page-promotions__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  color: #ffffff;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(38, 169, 224, 0.2); /* Slightly darker brand color for summary */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-promotions__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome/Safari */
}

.page-promotions__faq-question:hover {
  background-color: rgba(38, 169, 224, 0.3);
}

.page-promotions__faq-qtext {
  flex-grow: 1;
  color: #ffffff;
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  margin-left: 20px;
  color: #26A9E0;
  line-height: 1;
  width: 20px;
  text-align: center;
}

.page-promotions__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #f0f0f0;
}

/* For light-bg sections where text needs to be dark */
.page-promotions__text-contrast-fix {
  color: #333333 !important; /* Force dark text on light backgrounds */
}

.page-promotions__light-bg .page-promotions__inline-link {
  color: #26A9E0; /* Link color on light background */
}

/* ==============================================
   Responsive Styles
   ============================================== */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 2.5em;
  }

  .page-promotions__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    height: 450px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset for mobile */
  }

  .page-promotions__hero-title {
    font-size: 2em;
  }

  .page-promotions__hero-description {
    font-size: 1em;
  }

  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-promotions__text-block {
    font-size: 0.95em;
  }

  .page-promotions__promo-grid,
  .page-promotions__feature-grid,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__container {
    padding: 30px 15px;
  }

  .page-promotions__card-title,
  .page-promotions__feature-title,
  .page-promotions__step-title {
    font-size: 1.3em;
  }

  .page-promotions__card-description,
  .page-promotions__feature-description,
  .page-promotions__step-description {
    font-size: 0.9em;
  }

  .page-promotions__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-promotions__faq-answer {
    padding: 0 15px 15px;
  }

  /* Mobile image and video responsive adaptation */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions video,
  .page-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All containers with images/videos */
  .page-promotions__hero-section,
  .page-promotions__overview-section,
  .page-promotions__featured-section,
  .page-promotions__terms-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__faq-section,
  .page-promotions__cta-bottom-section,
  .page-promotions__container,
  .page-promotions__promo-card,
  .page-promotions__feature-item,
  .page-promotions__step-card,
  .page-promotions__video-section,
  .page-promotions__video-container,
  .page-promotions__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* Add horizontal padding to prevent content touching edges */
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  /* Buttons mobile adaptation */
  .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; /* Allow text wrapping */
    word-wrap: break-word !important; /* Allow long words to break */
    padding-left: 15px; /* Adjust padding for full width */
    padding-right: 15px; /* Adjust padding for full width */
    text-align: center;
  }

  .page-promotions__promo-grid,
  .page-promotions__feature-grid,
  .page-promotions__steps-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

/* Ensure no content area image CSS makes display size smaller than 200px */
.page-promotions__promo-card .page-promotions__card-image,
.page-promotions__feature-item .page-promotions__feature-image {
  min-width: 200px; /* Enforce minimum size for content images */
  min-height: 200px;
  width: 100%; /* Allow larger images to scale down responsively */
  height: auto; /* Maintain aspect ratio */
}

/* Ensure images don't use filter */
.page-promotions img {
  filter: none !important;
}