.page-promo {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-promo__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promo__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-promo__section:last-of-type {
  border-bottom: none;
}

.page-promo__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-promo__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0; /* Handled by hero-content padding-top */
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.6); /* Darken image for text readability, not changing color */
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 20px 80px;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.4));
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-promo__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-promo__hero-description {
  font-size: 1.3em;
  max-width: 900px;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-promo__hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-promo__button--primary {
  background-color: #FFD700;
  color: #000000;
  border: 2px solid #FFD700;
}

.page-promo__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promo__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promo__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.page-promo__button--claim, .page-promo__button--details, .page-promo__button--join-vip, .page-promo__button--download-app {
  background-color: #DC143C; /* Deep red accent */
  color: #ffffff;
  border: 2px solid #DC143C;
}

.page-promo__button--claim:hover, .page-promo__button--details:hover, .page-promo__button--join-vip:hover, .page-promo__button--download-app:hover {
  background-color: #b00c2e;
  transform: translateY(-3px);
}

.page-promo__welcome-bonus, .page-promo__vip-program, .page-promo__app-download {
  background-color: rgba(0, 0, 0, 0.6); /* Slightly lighter dark background for sections */
  padding: 80px 0;
}

.page-promo__bonus-card, .page-promo__vip-card, .page-promo__app-cta {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: rgba(255, 255, 255, 0.05); /* Semi-transparent white for cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  margin-top: 40px;
}

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

.page-promo__bonus-image, .page-promo__vip-image, .page-promo__app-image {
  flex: 1;
  max-width: 50%;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size for content images */
  min-height: 200px; /* Enforce minimum size for content images */
}

.page-promo__bonus-details, .page-promo__vip-details, .page-promo__app-text {
  flex: 1;
  padding: 20px;
}

.page-promo__card-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promo__bonus-features, .page-promo__vip-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promo__bonus-features li, .page-promo__vip-features li {
  font-size: 1.1em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #f0f0f0;
}

.page-promo__feature-icon {
  color: #DC143C;
  font-size: 1.4em;
  margin-right: 10px;
}

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

.page-promo__promo-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-promo__promo-card:hover {
  transform: translateY(-10px);
}

.page-promo__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size for content images */
  min-height: 200px; /* Enforce minimum size for content images */
}

.page-promo__promo-card .page-promo__card-title {
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-promo__promo-card .page-promo__card-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-promo__how-to-claim {
  padding: 80px 0;
}

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-promo__claim-steps li {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #FFD700;
  padding: 20px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  position: relative;
  color: #f0f0f0;
}

.page-promo__step-number {
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #DC143C;
  color: #ffffff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-promo__claim-steps li a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promo__claim-steps li a:hover {
  text-decoration: underline;
}

.page-promo__app-cta {
  flex-direction: row-reverse;
}

.page-promo__faq {
  padding: 80px 0;
}

.page-promo__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promo__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promo__faq-answer {
  font-size: 1em;
  color: #cccccc;
  display: none; /* Hidden by default, toggled by JS */
  padding-top: 10px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-promo__faq-item.active .page-promo__faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promo__faq-item.active .page-promo__faq-answer {
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__section-title {
    font-size: 2.4em;
  }
  .page-promo__bonus-card, .page-promo__vip-card, .page-promo__app-cta {
    flex-direction: column;
    text-align: center;
  }
  .page-promo__bonus-card:nth-child(even) {
    flex-direction: column;
  }
  .page-promo__bonus-image, .page-promo__vip-image, .page-promo__app-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 100%;
    padding: 12px 20px;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__section-intro {
    font-size: 0.95em;
  }
  .page-promo__bonus-image, .page-promo__vip-image, .page-promo__app-image, .page-promo__card-image {
    max-width: 100%;
    width: 100%;
    height: auto; /* Ensure images scale correctly */
    min-width: 200px;
    min-height: 200px;
  }
  .page-promo__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__claim-steps li {
    font-size: 1em;
    padding: 15px 20px 15px 40px;
  }
  .page-promo__step-number {
    left: -10px;
    width: 30px;
    height: 30px;
    font-size: 1em;
  }
  .page-promo__faq-question {
    font-size: 1.2em;
  }
  /* Mobile content area image constraint */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__button {
    font-size: 1em;
  }
  .page-promo__card-title {
    font-size: 1.5em;
  }
  .page-promo__bonus-details, .page-promo__vip-details, .page-promo__app-text {
    padding: 10px;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
  }
}