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

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #0A192F; /* Dark background for hero */
  color: #ffffff;
}

.page-promotions__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-promotions__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-promotions__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #f0f0f0;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Gold button */
  color: #0A192F; /* Dark text on gold button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-button--gold {
  background: #FFD700;
  color: #0A192F;
}

.page-promotions__cta-button--dark {
  background: #0A192F;
  color: #ffffff;
  border: 2px solid #FFD700;
}

.page-promotions__cta-button--dark:hover {
  background: #1a2a47;
  border-color: #FFD700;
}

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

.page-promotions__section--overview {
  background-color: #f9f9f9;
}

.page-promotions__section--welcome-bonus {
  background-color: #0A192F;
  color: #ffffff;
}

.page-promotions__section--vip {
  background-color: #ffffff;
}

.page-promotions__section--terms {
  background-color: #0A192F;
  color: #ffffff;
}

.page-promotions__section--faq {
  background-color: #f9f9f9;
}

.page-promotions__section--final-cta {
  background-color: #0A192F;
  color: #ffffff;
  padding-bottom: 80px;
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-promotions__container--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #0A192F;
}

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

.page-promotions__text-block {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

.page-promotions__text-block--light {
  color: #f0f0f0;
}

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

.page-promotions__card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 200px; /* Ensure minimum size for cards */
  color: #333333;
  border: 1px solid #e0e0e0;
}

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

.page-promotions__card-title {
  font-size: 1.8em;
  color: #0A192F;
  margin-bottom: 15px;
}

.page-promotions__promo-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  text-align: left;
}

.page-promotions__promo-item:nth-child(even) {
  flex-direction: row-reverse;
}

.page-promotions__promo-image {
  flex: 1;
  min-width: 400px;
  border-radius: 10px;
  object-fit: cover;
  max-width: 100%;
  height: auto;
  display: block;
  min-height: 200px; /* Enforce minimum image size */
}

.page-promotions__promo-content {
  flex: 1;
  padding: 20px 0;
}

.page-promotions__promo-content--light {
  color: #ffffff;
}

.page-promotions__promo-title {
  font-size: 2em;
  margin-bottom: 15px;
  color: #0A192F;
}

.page-promotions__promo-title--light {
  color: #FFD700;
}

.page-promotions__promo-description {
  font-size: 1.1em;
  margin-bottom: 25px;
  line-height: 1.8;
  color: #333333;
}

.page-promotions__promo-description--light {
  color: #f0f0f0;
}

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

.page-promotions__vip-benefits {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  max-width: 800px;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

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

.page-promotions__vip-icon {
  color: #FFD700;
  font-weight: bold;
  font-size: 1.2em;
  margin-right: 10px;
  flex-shrink: 0;
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  max-width: 900px;
  text-align: left;
}

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

.page-promotions__terms-list--light li {
  color: #f0f0f0;
}

.page-promotions__terms-icon {
  color: #FFD700;
  font-weight: bold;
  font-size: 1.2em;
  margin-right: 10px;
  flex-shrink: 0;
}

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

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

.page-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  background: #fdfdfd;
  color: #333333;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 2000px !important; /* Use !important to ensure priority, value large enough */
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-promotions__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-promotions__faq-question:active {
  background: #eeeeee;
}

.page-promotions__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none; /* Prevent h3 from blocking click event */
  color: #0A192F;
}

.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
  color: #333;
  transform: rotate(45deg); /* Plus sign rotates to form an 'x' or minus */
}

/* General image styling to ensure minimum size and no filter */
.page-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  /* Ensure no filters are applied to change color */
  filter: none;
}

/* Content area image minimum size enforcement */
.page-promotions__promo-image,
.page-promotions__vip-image {
  min-width: 200px;
  min-height: 200px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: 2.8em;
  }
  .page-promotions__section-title {
    font-size: 2.2em;
  }
  .page-promotions__promo-item {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions__promo-item:nth-child(even) {
    flex-direction: column;
  }
  .page-promotions__promo-content {
    padding: 20px 0;
  }
  .page-promotions__promo-image {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-promotions__hero-image img {
    border-radius: 4px;
  }
  
  .page-promotions__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-promotions__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-promotions__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-promotions__section {
    padding: 40px 15px;
  }

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

  .page-promotions__text-block {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-promotions__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__card {
    padding: 20px;
    text-align: center;
  }

  .page-promotions__card-title {
    font-size: 1.5em;
  }

  .page-promotions__promo-item {
    gap: 20px;
    margin-bottom: 40px;
  }

  .page-promotions__promo-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-promotions__promo-title {
    font-size: 1.6em;
  }

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

  .page-promotions__vip-benefits {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .page-promotions__vip-image {
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-promotions__terms-list {
    text-align: left;
  }

  .page-promotions__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-promotions__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-promotions__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .page-promotions__faq-answer {
    padding: 0 15px;
  }
  
  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding: 15px !important;
  }

  /* Ensure all image containers are responsive */
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__promo-item,
  .page-promotions__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Button container mobile adaptation */
  .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;
  }
}