.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__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background-color: #1a1a2e;
  text-align: center;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  color: #e94560;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.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;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-promo__button--primary {
  background-color: #e94560;
  color: #ffffff;
}

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

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

.page-promo__button--secondary:hover {
  background-color: rgba(233, 69, 96, 0.1);
  transform: translateY(-2px);
}

.page-promo__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #e94560;
  color: #ffffff;
}

.page-promo__button--small:hover {
  background-color: #cc3951;
  transform: translateY(-1px);
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #e94560;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.page-promo__current-promotions,
.page-promo__how-to-claim,
.page-promo__why-choose,
.page-promo__faq,
.page-promo__cta-section,
.page-promo__responsible-gambling,
.page-promo__terms-conditions {
  padding: 60px 0;
}

.page-promo__current-promotions {
  background-color: #0f0f1a;
}

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

.page-promo__promo-card {
  background-color: #1a1a2e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-promo__card-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  filter: brightness(0.8); /* Slightly dim image to make text pop */
}

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

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

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

.page-promo__how-to-claim {
  background-color: #1a1a2e;
}

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

.page-promo__step-card {
  background-color: #0f0f1a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-promo__step-icon {
  font-size: 2.5em;
  color: #e94560;
  font-weight: bold;
  margin-bottom: 15px;
}

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

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

.page-promo__step-text a {
  color: #e94560;
  text-decoration: none;
}

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

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

.page-promo__terms-conditions {
  background-color: #0f0f1a;
}

.page-promo__t-c-content {
  background-color: #1a1a2e;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__t-c-subtitle {
  font-size: 1.8em;
  color: #e94560;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promo__t-c-text {
  color: #cccccc;
  font-size: 1.05em;
  margin-bottom: 20px;
}

.page-promo__t-c-footer {
  margin-top: 30px;
  font-size: 0.95em;
  color: #999999;
}

.page-promo__t-c-footer a {
  color: #e94560;
  text-decoration: none;
}

.page-promo__t-c-footer a:hover {
  text-decoration: underline;
}

.page-promo__why-choose {
  background-color: #1a1a2e;
}

.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: #0f0f1a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-promo__feature-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(0.9); /* Slightly dim icon */
}

.page-promo__feature-title {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 15px;
}

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

.page-promo__faq {
  background-color: #0f0f1a;
}

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

.page-promo__faq-item {
  background-color: #1a1a2e;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.page-promo__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content length */
  opacity: 1;
  margin-top: 15px;
}

.page-promo__cta-section {
  background: linear-gradient(90deg, #1a1a2e 0%, #e94560 100%);
  padding: 80px 0;
  text-align: center;
}

.page-promo__cta-title {
  font-size: 3em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__responsible-gambling {
  background-color: #1a1a2e;
  padding-bottom: 80px;
}

.page-promo__responsible-list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.page-promo__responsible-list li {
  background-color: #0f0f1a;
  border-radius: 5px;
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promo__responsible-list li a {
  color: #e94560;
  text-decoration: none;
  font-weight: bold;
}

.page-promo__responsible-list li a:hover {
  text-decoration: underline;
}

.page-promo__responsible-footer {
  text-align: center;
  margin-top: 40px;
  color: #999999;
  font-size: 0.9em;
}

.page-promo__responsible-footer a {
  color: #e94560;
  text-decoration: none;
}

.page-promo__responsible-footer a:hover {
  text-decoration: underline;
}

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

@media (max-width: 768px) {
  .page-promo {
    padding-top: var(--header-offset, 120px);
  }
  .page-promo__hero-section {
    padding: 60px 0;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-promo__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 80%;
    max-width: 300px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-description {
    font-size: 0.9em;
    margin-bottom: 30px;
  }
  .page-promo__promo-grid,
  .page-promo__steps-grid,
  .page-promo__features-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__promo-card,
  .page-promo__step-card,
  .page-promo__feature-card {
    margin: 0 10px;
  }
  .page-promo__card-image, .page-promo__feature-icon, .page-promo__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-promo__cta-title {
    font-size: 2em;
  }
  .page-promo__cta-description {
    font-size: 1em;
  }
  .page-promo__t-c-content {
    padding: 20px;
  }
  .page-promo__t-c-subtitle {
    font-size: 1.4em;
  }
  .page-promo__t-c-text {
    font-size: 0.9em;
  }
  .page-promo__responsible-list {
    flex-direction: column;
    align-items: center;
  }
  /* Ensure all images within .page-promo are responsive and not too small */
  .page-promo img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size even if scaled */
    min- /* Adjust min-height as needed, or remove if aspect ratio is flexible */
  }
  .page-promo__card-image, .page-promo__feature-icon {
    min-width: 200px;
    min-height: 150px;
  }
  .page-promo__hero-image {
    min-width: 100%;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-promo__cta-title {
    font-size: 1.8em;
  }
}