.page-promo {
  color: #333333; /* Dark text for default light 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__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #4A148C; /* Fallback background */
  color: #ffffff;
  padding: 0;
  text-align: center;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-promo__hero-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #ffffff;
}

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

.page-promo__section-title {
  font-size: 2.8em;
  color: #4A148C;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 60px;
  position: relative;
}

.page-promo__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

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

.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: #4A148C;
  border: 2px solid #FFD700;
}

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

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

.page-promo__button--secondary:hover {
  background-color: #5d1aae;
  transform: translateY(-2px);
}

.page-promo__why-taya333-section, .page-promo__promotions-grid-section, .page-promo__how-to-claim-section, .page-promo__terms-section, .page-promo__responsible-gaming-section, .page-promo__faq-section, .page-promo__cta-section {
  padding: 80px 0;
}

.page-promo__why-taya333-section {
  background-color: #f9f9f9;
}

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

.page-promo__feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-promo__feature-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too small */
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-promo__feature-title {
  font-size: 1.8em;
  color: #4A148C;
  margin-bottom: 15px;
}

.page-promo__feature-description {
  font-size: 1em;
  color: #666666;
}

.page-promo__promo-category {
  margin-bottom: 80px;
}

.page-promo__category-title {
  font-size: 2.2em;
  color: #4A148C;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-promo__category-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #FFD700;
  margin: 10px auto 0;
  border-radius: 1.5px;
}

.page-promo__cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promo__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-promo__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px;
}

.page-promo__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promo__card-title {
  font-size: 1.6em;
  color: #4A148C;
  margin-bottom: 15px;
}

.page-promo__card-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__step-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promo__step-card:hover {
  transform: translateY(-5px);
}

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

.page-promo__step-icon {
  width: 100%;
  max-width: 300px;
  min-width: 200px;
  min-height: 200px;
  height: auto;
  object-fit: contain;
  margin-bottom: 25px;
}

.page-promo__step-title {
  font-size: 1.8em;
  color: #4A148C;
  margin-bottom: 15px;
}

.page-promo__step-description {
  font-size: 1em;
  color: #666666;
}

.page-promo__claim-cta {
  text-align: center;
  margin-top: 50px;
}

.page-promo__terms-section, .page-promo__responsible-gaming-section, .page-promo__faq-section {
  background-color: #f9f9f9;
}

.page-promo__terms-list {
  list-style: disc;
  padding-left: 30px;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #555555;
}

.page-promo__term-item {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-promo__full-terms {
  text-align: center;
  font-size: 1.1em;
  color: #555555;
}

.page-promo__text-link {
  color: #4A148C;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-promo__text-link:hover {
  color: #FFD700;
}

.page-promo__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  padding: 25px;
}

.page-promo__faq-question {
  font-size: 1.4em;
  color: #4A148C;
  margin-bottom: 10px;
}

.page-promo__faq-answer {
  font-size: 1em;
  color: #666666;
}

.page-promo__cta-section {
  background-color: #4A148C;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-promo__cta-section .page-promo__section-title {
  color: #FFD700;
}

.page-promo__cta-section .page-promo__section-title::after {
  background-color: #ffffff;
}

.page-promo__cta-section .page-promo__section-intro {
  color: #ffffff;
  margin-bottom: 40px;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2.2em;
  }
  .page-promo__category-title {
    font-size: 1.8em;
  }
  .page-promo__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-promo__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-promo__section-title {
    font-size: 1.8em;
    margin-top: 40px;
  }
  .page-promo__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-promo__why-taya333-section, .page-promo__promotions-grid-section, .page-promo__how-to-claim-section, .page-promo__terms-section, .page-promo__responsible-gaming-section, .page-promo__faq-section, .page-promo__cta-section {
    padding: 50px 0;
  }
  .page-promo__feature-card, .page-promo__promo-card, .page-promo__step-card {
    padding: 20px;
  }
  .page-promo__feature-image, .page-promo__promo-image, .page-promo__step-icon {
    max-width: 100%;
    height: auto; /* Ensure images scale down */
    min-width: 200px; /* Maintain minimum size */
    min-height: 200px;
  }
  .page-promo__promo-image {
    height: 200px; /* Adjust fixed height for mobile */
  }
  .page-promo__terms-list {
    padding-left: 20px;
  }
  .page-promo__faq-question {
    font-size: 1.2em;
  }
  .page-promo__faq-answer {
    font-size: 0.9em;
  }
  .page-promo__hero-content {
    width: 90%;
  }
  /* Ensure content area images do not overflow */
  .page-promo__container img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__hero-section .page-promo__hero-image {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__category-title {
    font-size: 1.5em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
  }
  .page-promo__cta-actions {
    flex-direction: column;
  }
}