:root {
  --page-promotions-caxeng-limited-time-offer-primary-color: #0A2239;
  --page-promotions-caxeng-limited-time-offer-secondary-color: #FFD700;
  --page-promotions-caxeng-limited-time-offer-accent-color: #DC143C;
  --page-promotions-caxeng-limited-time-offer-text-light: #FFFFFF;
  --page-promotions-caxeng-limited-time-offer-text-dark: #0A2239;
  --page-promotions-caxeng-limited-time-offer-background-light: #F5F5F5;
  --page-promotions-caxeng-limited-time-offer-background-dark: #0A2239;
}

.page-promotions-caxeng-limited-time-offer {
  font-family: 'Arial', sans-serif;
  color: var(--page-promotions-caxeng-limited-time-offer-text-dark);
  line-height: 1.6;
}

.page-promotions-caxeng-limited-time-offer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-caxeng-limited-time-offer__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions-caxeng-limited-time-offer__section:nth-of-type(even) {
  background-color: var(--page-promotions-caxeng-limited-time-offer-background-light);
}

.page-promotions-caxeng-limited-time-offer__section-title {
  font-size: 2.5em;
  color: var(--page-promotions-caxeng-limited-time-offer-primary-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-promotions-caxeng-limited-time-offer__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--page-promotions-caxeng-limited-time-offer-secondary-color);
  border-radius: 2px;
}

.page-promotions-caxeng-limited-time-offer__section-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-caxeng-limited-time-offer__hero {
  background: linear-gradient(135deg, var(--page-promotions-caxeng-limited-time-offer-primary-color) 0%, #1a3a5a 100%);
  color: var(--page-promotions-caxeng-limited-time-offer-text-light);
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-caxeng-limited-time-offer__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,dark_blue,gold_accent]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions-caxeng-limited-time-offer__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-promotions-caxeng-limited-time-offer__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--page-promotions-caxeng-limited-time-offer-secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-caxeng-limited-time-offer__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-caxeng-limited-time-offer__hero-actions .page-promotions-caxeng-limited-time-offer__button {
  margin: 10px;
}

.page-promotions-caxeng-limited-time-offer__hero-image-wrapper {
  margin-top: 50px;
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
}

.page-promotions-caxeng-limited-time-offer__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions-caxeng-limited-time-offer__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;
  border: none;
}

.page-promotions-caxeng-limited-time-offer__button--primary {
  background-color: var(--page-promotions-caxeng-limited-time-offer-secondary-color);
  color: var(--page-promotions-caxeng-limited-time-offer-primary-color);
}

.page-promotions-caxeng-limited-time-offer__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions-caxeng-limited-time-offer__button--secondary {
  background-color: transparent;
  color: var(--page-promotions-caxeng-limited-time-offer-secondary-color);
  border: 2px solid var(--page-promotions-caxeng-limited-time-offer-secondary-color);
}

.page-promotions-caxeng-limited-time-offer__button--secondary:hover {
  background-color: var(--page-promotions-caxeng-limited-time-offer-secondary-color);
  color: var(--page-promotions-caxeng-limited-time-offer-primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions-caxeng-limited-time-offer__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-promotions-caxeng-limited-time-offer__why-join .page-promotions-caxeng-limited-time-offer__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-caxeng-limited-time-offer__feature-item {
  background-color: var(--page-promotions-caxeng-limited-time-offer-text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-promotions-caxeng-limited-time-offer__feature-item:hover {
  transform: translateY(-10px);
}

.page-promotions-caxeng-limited-time-offer__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-promotions-caxeng-limited-time-offer__feature-title {
  font-size: 1.5em;
  color: var(--page-promotions-caxeng-limited-time-offer-primary-color);
  margin-bottom: 15px;
}

.page-promotions-caxeng-limited-time-offer__feature-text {
  color: #666;
}

.page-promotions-caxeng-limited-time-offer__offer-types {
  background-color: var(--page-promotions-caxeng-limited-time-offer-background-dark);
  color: var(--page-promotions-caxeng-limited-time-offer-text-light);
}

.page-promotions-caxeng-limited-time-offer__offer-types .page-promotions-caxeng-limited-time-offer__section-title {
  color: var(--page-promotions-caxeng-limited-time-offer-secondary-color);
}

.page-promotions-caxeng-limited-time-offer__offer-types .page-promotions-caxeng-limited-time-offer__section-title::after {
  background-color: var(--page-promotions-caxeng-limited-time-offer-text-light);
}

.page-promotions-caxeng-limited-time-offer__offer-types .page-promotions-caxeng-limited-time-offer__section-description {
  color: #CCC;
}

.page-promotions-caxeng-limited-time-offer__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-caxeng-limited-time-offer__card {
  background-color: var(--page-promotions-caxeng-limited-time-offer-text-light);
  color: var(--page-promotions-caxeng-limited-time-offer-text-dark);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-promotions-caxeng-limited-time-offer__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #EEE;
}

.page-promotions-caxeng-limited-time-offer__card-title {
  font-size: 1.4em;
  color: var(--page-promotions-caxeng-limited-time-offer-primary-color);
  padding: 20px 20px 10px;
}

.page-promotions-caxeng-limited-time-offer__card-text {
  color: #666;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-promotions-caxeng-limited-time-offer__card .page-promotions-caxeng-limited-time-offer__button {
  margin: 0 20px 20px;
  align-self: flex-start;
}

.page-promotions-caxeng-limited-time-offer__how-to-join .page-promotions-caxeng-limited-time-offer__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-caxeng-limited-time-offer__step-item {
  background-color: var(--page-promotions-caxeng-limited-time-offer-text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.page-promotions-caxeng-limited-time-offer__step-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  display: block;
  margin-left: 0;
  margin-right: auto;
}

.page-promotions-caxeng-limited-time-offer__step-title {
  font-size: 1.4em;
  color: var(--page-promotions-caxeng-limited-time-offer-primary-color);
  margin-bottom: 15px;
}

.page-promotions-caxeng-limited-time-offer__step-text {
  color: #666;
}

.page-promotions-caxeng-limited-time-offer__platform-trust .page-promotions-caxeng-limited-time-offer__content-with-image {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  text-align: left;
  margin-top: 50px;
}

.page-promotions-caxeng-limited-time-offer__text-content {
  flex: 2;
  min-width: 300px;
}

.page-promotions-caxeng-limited-time-offer__text-content p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444;
}

.page-promotions-caxeng-limited-time-offer__highlight-text {
  color: var(--page-promotions-caxeng-limited-time-offer-primary-color);
  font-weight: bold;
}

.page-promotions-caxeng-limited-time-offer__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-promotions-caxeng-limited-time-offer__platform-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-caxeng-limited-time-offer__cta-final {
  background: linear-gradient(135deg, var(--page-promotions-caxeng-limited-time-offer-accent-color) 0%, #ff4d6a 100%);
  color: var(--page-promotions-caxeng-limited-time-offer-text-light);
  padding: 80px 0;
}

.page-promotions-caxeng-limited-time-offer__cta-final .page-promotions-caxeng-limited-time-offer__section-title {
  color: var(--page-promotions-caxeng-limited-time-offer-text-light);
}

.page-promotions-caxeng-limited-time-offer__cta-final .page-promotions-caxeng-limited-time-offer__section-title::after {
  background-color: var(--page-promotions-caxeng-limited-time-offer-secondary-color);
}

.page-promotions-caxeng-limited-time-offer__cta-final .page-promotions-caxeng-limited-time-offer__section-description {
  color: rgba(255, 255, 255, 0.9);
}

.page-promotions-caxeng-limited-time-offer__cta-final .page-promotions-caxeng-limited-time-offer__button--primary {
  background-color: var(--page-promotions-caxeng-limited-time-offer-secondary-color);
  color: var(--page-promotions-caxeng-limited-time-offer-accent-color);
}

.page-promotions-caxeng-limited-time-offer__cta-final .page-promotions-caxeng-limited-time-offer__button--primary:hover {
  background-color: #e6c200;
  color: var(--page-promotions-caxeng-limited-time-offer-primary-color);
}

.page-promotions-caxeng-limited-time-offer__cta-final .page-promotions-caxeng-limited-time-offer__button--secondary {
  color: var(--page-promotions-caxeng-limited-time-offer-text-light);
  border-color: var(--page-promotions-caxeng-limited-time-offer-text-light);
}

.page-promotions-caxeng-limited-time-offer__cta-final .page-promotions-caxeng-limited-time-offer__button--secondary:hover {
  background-color: var(--page-promotions-caxeng-limited-time-offer-text-light);
  color: var(--page-promotions-caxeng-limited-time-offer-accent-color);
}

.page-promotions-caxeng-limited-time-offer__cta-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions-caxeng-limited-time-offer__faq {
  background-color: var(--page-promotions-caxeng-limited-time-offer-background-light);
  text-align: left;
}

.page-promotions-caxeng-limited-time-offer__faq-item {
  background-color: var(--page-promotions-caxeng-limited-time-offer-text-light);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-promotions-caxeng-limited-time-offer__faq-question {
  font-size: 1.3em;
  color: var(--page-promotions-caxeng-limited-time-offer-primary-color);
  margin-bottom: 10px;
}

.page-promotions-caxeng-limited-time-offer__faq-answer {
  color: #555;
}

.page-promotions-caxeng-limited-time-offer__faq-item .page-promotions-caxeng-limited-time-offer__button {
  margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-caxeng-limited-time-offer__hero-title {
    font-size: 2.8em;
  }

  .page-promotions-caxeng-limited-time-offer__section-title {
    font-size: 2em;
  }

  .page-promotions-caxeng-limited-time-offer__content-with-image {
    flex-direction: column;
  }

  .page-promotions-caxeng-limited-time-offer__image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-promotions-caxeng-limited-time-offer__hero {
    padding: 80px 0;
  }

  .page-promotions-caxeng-limited-time-offer__hero-title {
    font-size: 2.2em;
  }

  .page-promotions-caxeng-limited-time-offer__hero-description {
    font-size: 1em;
  }

  .page-promotions-caxeng-limited-time-offer__hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .page-promotions-caxeng-limited-time-offer__button {
    width: 80%;
    margin: 10px auto;
  }

  .page-promotions-caxeng-limited-time-offer__section {
    padding: 40px 0;
  }

  .page-promotions-caxeng-limited-time-offer__features,
  .page-promotions-caxeng-limited-time-offer__cards,
  .page-promotions-caxeng-limited-time-offer__steps {
    grid-template-columns: 1fr;
  }

  .page-promotions-caxeng-limited-time-offer__feature-item,
  .page-promotions-caxeng-limited-time-offer__step-item {
    text-align: center;
  }

  .page-promotions-caxeng-limited-time-offer__feature-icon,
  .page-promotions-caxeng-limited-time-offer__step-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .page-promotions-caxeng-limited-time-offer__card .page-promotions-caxeng-limited-time-offer__button {
    align-self: center;
  }

  .page-promotions-caxeng-limited-time-offer__text-content .page-promotions-caxeng-limited-time-offer__button {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .page-promotions-caxeng-limited-time-offer__cta-actions {
    flex-direction: column;
  }
}