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

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

.page-promo__hero-section {
  position: relative;
  text-align: center;
  color: #ffffff;
  padding: 0;
  overflow: hidden;
}

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

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 900px;
  width: 90%;
  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.2em;
  margin-bottom: 20px;
  color: #ffc107; /* Auxiliary color for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-promo__cta-button {
  display: inline-block;
  background-color: #007bff; /* Main brand color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-promo__cta-button:hover {
  background-color: #0056b3; /* Darker shade of main color */
  transform: translateY(-2px);
}

.page-promo__cta-button--secondary {
  background-color: #ffc107; /* Auxiliary brand color */
  color: #333333;
}

.page-promo__cta-button--secondary:hover {
  background-color: #e0a800; /* Darker shade of auxiliary color */
}

.page-promo__cta-button--tertiary {
  background-color: #28a745; /* Green for download/app */
}

.page-promo__cta-button--tertiary:hover {
  background-color: #218838;
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #007bff; /* Main brand color */
  text-align: center;
  margin: 60px 0 30px;
}

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

.page-promo__why-us-section, .page-promo__types-section, .page-promo__how-to-claim-section, .page-promo__vip-section, .page-promo__responsible-gaming-section, .page-promo__faq-section, .page-promo__final-cta-section {
  padding: 60px 0;
}

.page-promo__why-us-section {
  background-color: #f8f9fa;
}

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

.page-promo__feature-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;
}

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

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

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

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

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-promo__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-promo__promo-title {
  font-size: 1.8em;
  color: #007bff;
  margin: 20px 15px 10px;
}

.page-promo__promo-text {
  font-size: 1em;
  color: #666666;
  padding: 0 15px 20px;
}

.page-promo__promo-button {
  display: inline-block;
  background-color: #ffc107;
  color: #333333;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-promo__promo-button:hover {
  background-color: #e0a800;
}

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

.page-promo__step-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  position: relative;
  padding-top: 70px; /* Space for step number */
}

.page-promo__step-number {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #007bff;
  color: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-promo__step-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
}

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

.page-promo__step-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #ffc107;
  color: #333333;
  padding: 8px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo__step-button:hover {
  background-color: #e0a800;
}

.page-promo__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-promo__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-promo__vip-section {
  background-color: #f0f8ff;
}

.page-promo__vip-description, .page-promo__responsible-gaming-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 20px auto 40px;
  text-align: center;
  color: #444444;
}

.page-promo__responsible-gaming-section {
  background-color: #f8f8f8;
}

.page-promo__faq-section {
  padding-bottom: 80px;
}

.page-promo__faq-accordion {
  max-width: 900px;
  margin: 40px auto 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.page-promo__faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.page-promo__faq-item:last-child {
  border-bottom: none;
}

.page-promo__faq-question {
  background-color: #fefefe;
  padding: 20px;
  font-size: 1.2em;
  color: #007bff;
  cursor: pointer;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promo__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promo__faq-question.active {
  background-color: #e6f2ff;
}

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

.page-promo__faq-answer {
  padding: 0 20px;
  background-color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promo__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  padding: 20px;
}

.page-promo__faq-answer p {
  margin: 0;
  color: #555555;
}

.page-promo__final-cta-section {
  background-color: #007bff;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-promo__final-cta-section .page-promo__section-title {
  color: #ffc107;
}

.page-promo__final-cta-section .page-promo__section-intro {
  color: #f0f0f0;
  margin-bottom: 50px;
}

.page-promo__final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__hero-description {
    font-size: 1.2em;
  }
  .page-promo__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promo {
    padding-top: var(--header-offset, 120px); /* Ensure mobile header offset */
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-intro {
    font-size: 0.95em;
  }
  .page-promo__features-grid, .page-promo__promo-grid, .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__hero-content {
    width: 95%;
    padding: 15px;
  }
  .page-promo__promo-image {
    height: 200px;
  }
  .page-promo__promo-title, .page-promo__feature-title, .page-promo__step-title {
    font-size: 1.5em;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-promo__final-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  /* Content area images must not cause horizontal scroll */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  /* Specific image rules for content area to prevent small sizes */
  .page-promo__promo-image, .page-promo__hero-image {
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }
  .page-promo__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.6em;
  }
  .page-promo__cta-button {
    width: 100%;
  }
  .page-promo__final-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}