.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__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  text-align: center;
  background-color: #000000; /* Dark background for hero section */
}

.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-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 900px;
  width: 90%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

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

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

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

.page-promo__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #3F0071; /* Deep purple text */
  border: 2px solid #FFD700;
}

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

.page-promo__button--secondary {
  background-color: #3F0071; /* Deep purple button */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

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

.page-promo__button--small {
  padding: 10px 20px;
  font-size: 1em;
  background-color: #FFD700;
  color: #3F0071;
  border: 1px solid #FFD700;
}

.page-promo__button--small:hover {
  background-color: #e6c200;
}

.page-promo__section {
  padding: 80px 20px;
  background-color: #0d0d0d; /* Slightly lighter dark background for sections */
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.page-promo__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

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

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

.page-promo__feature-item {
  background-color: #1a1a1a; /* Darker card background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promo__feature-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for feature titles */
  margin-bottom: 15px;
}

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

.page-promo__featured-promos {
  background-color: #000000;
}

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

.page-promo__promo-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.page-promo__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for promo images */
  object-fit: cover;
  display: block;
}

.page-promo__promo-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo__promo-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for promo titles */
  margin-bottom: 10px;
}

.page-promo__promo-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-promo__promo-title a:hover {
  text-decoration: underline;
}

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

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

.page-promo__step-item {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promo__step-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too wide on smaller steps */
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-promo__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promo__step-text {
  color: #cccccc;
  font-size: 0.95em;
}

.page-promo__responsible-gaming {
  background-color: #0d0d0d;
  text-align: center;
}

.page-promo__faq-list {
  margin-top: 40px;
}

.page-promo__faq-item {
  background-color: #1a1a1a;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

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

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

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

.page-promo__faq-answer {
  color: #cccccc;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-promo__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

.page-promo__cta {
  background: linear-gradient(135deg, #3F0071, #000000);
  text-align: center;
  padding: 100px 20px;
}

.page-promo__cta-content {
  max-width: 800px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__section {
    padding: 60px 15px;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__section-intro {
    font-size: 0.95em;
  }
  .page-promo__features-grid, .page-promo__promo-cards-grid, .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__promo-image {
    height: 200px;
  }
  .page-promo__hero-image, .page-promo__promo-image, .page-promo__step-image {
    max-width: 100%;
    height: auto;
  }
  .page-promo__cta {
    padding: 80px 15px;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__feature-title, .page-promo__promo-title, .page-promo__step-title, .page-promo__faq-question {
    font-size: 1.3em;
  }
  .page-promo__faq-answer {
    font-size: 0.9em;
  }
  .page-promo__hero-content {
    width: 95%;
  }
}