.page-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #FFFFFF; /* Explicitly set for clarity */
}

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

.page-promotions__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__section-title--white {
  color: #FFFFFF;
}

.page-promotions__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

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

.page-promotions__dark-bg {
  background-color: #26A9E0;
  color: #FFFFFF;
}

/* Hero Section */
.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px 40px;
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  background-color: #26A9E0;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: 900;
  line-height: 1.2;
}

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

.page-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-promotions__cta-buttons--center {
  margin-left: auto;
  margin-right: auto;
  max-width: fit-content;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-promotions__btn-primary {
  background-color: #EA7C07; /* Login/CTA color */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-promotions__btn-primary:hover {
  background-color: #d16b05;
  border-color: #d16b05;
}

.page-promotions__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

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

.page-promotions__btn-primary--large,
.page-promotions__btn-secondary--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

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

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle overlay */
}

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

.page-promotions__card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333333;
}

.page-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions__dark-card {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.page-promotions__dark-card .page-promotions__card-title {
  color: #FFFFFF;
}

.page-promotions__dark-card .page-promotions__card-text {
  color: #f0f0f0;
}

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

.page-promotions__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
  font-weight: bold;
}

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

/* VIP Program */
.page-promotions__vip-program {
  background-color: #f8f8f8;
}

.page-promotions__vip-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.page-promotions__vip-image {
  width: 50%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-promotions__vip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 50%;
  text-align: left;
}

.page-promotions__vip-list li {
  font-size: 1.2em;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #333333;
}

.page-promotions__vip-icon {
  font-size: 1.5em;
  color: #26A9E0;
  margin-right: 15px;
}

.page-promotions__vip-cta {
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Video Section */
.page-promotions__video-section {
  background-color: #1a1a1a;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.page-promotions__video-wrapper {
  max-width: 960px;
  margin: 40px auto;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  cursor: pointer; /* Indicate video is clickable */
}

.page-promotions__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

/* Terms & Conditions */
.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-promotions__terms-list li {
  font-size: 1.1em;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  color: #333333;
}

.page-promotions__list-icon {
  color: #26A9E0;
  margin-right: 10px;
  font-weight: bold;
  font-size: 1.2em;
}

/* FAQ Section */
.page-promotions__faq {
  background-color: #f0f7ff; /* Light blue background */
}

.page-promotions__faq-list {
  max-width: 800px;
  margin: 40px auto;
}

.page-promotions__faq-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: #e6f2ff;
  border-bottom: 1px solid #d0e0f0;
}

.page-promotions__faq-question:hover {
  background-color: #dbeaff;
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  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: #333333;
}

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

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

/* Bottom CTA */
.page-promotions__cta-bottom {
  text-align: center;
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 80px 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 3em;
  }
  .page-promotions__hero-description {
    font-size: 1.2em;
  }
  .page-promotions__vip-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-promotions__vip-image,
  .page-promotions__vip-list {
    width: 100%;
  }
  .page-promotions__vip-list {
    text-align: center;
  }
  .page-promotions__vip-list li {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promotions__section {
    padding: 40px 15px;
  }
  .page-promotions__hero-section {
    padding: 60px 15px 30px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .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;
    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__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__card {
    padding: 25px;
  }
  .page-promotions__vip-list li {
    font-size: 1.1em;
  }
  .page-promotions__video-section {
    padding: 50px 15px;
  }
  .page-promotions__video-wrapper {
    margin: 30px auto;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 0; /* Handled by section padding */
    padding-right: 0; /* Handled by section padding */
  }
  .page-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__faq-question,
  .page-promotions__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .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;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__card-title {
    font-size: 1.3em;
  }
  .page-promotions__btn-primary, .page-promotions__btn-secondary {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-promotions__faq-question {
    font-size: 1.1em;
  }
}

/* Ensure no filter is used on images */
.page-promotions img {
  filter: none !important;
}