.page-promo {
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
  padding-bottom: 50px; /* Space for dots */
  padding-top: var(--header-offset, 120px);
}

.page-promo__hero-carousel {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust as needed */
  overflow: hidden;
}

.page-promo__hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transform: translateX(100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-promo__hero-slide.active {
  opacity: 1;
  transform: translateX(0%);
}

.page-promo__hero-slide.prev {
  transform: translateX(-100%);
}

.page-promo__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  z-index: 1;
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFF6D6;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for readability */
  border-radius: 10px;
}

.page-promo__main-title,
.page-promo__secondary-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD36B; /* Glow */
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.7);
}

.page-promo__hero-description {
  font-size: clamp(1em, 2vw, 1.2em);
  margin-bottom: 30px;
}

.page-promo__hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.page-promo__hero-dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-promo__hero-dot.active {
  background-color: #F2C14E; /* Primary color */
}

.page-promo__section {
  padding: 60px 0;
}

.page-promo__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: #F2C14E; /* Primary color */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

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

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

.page-promo__card {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.page-promo__card-title {
  font-size: 1.5em;
  color: #FFD36B; /* Glow */
  padding: 20px 20px 10px 20px;
  font-weight: bold;
}

.page-promo__card-text {
  padding: 0 20px 20px 20px;
  font-size: 0.95em;
  flex-grow: 1;
}

.page-promo__cta-button {
  display: block;
  width: calc(100% - 40px);
  padding: 15px 20px;
  margin: 0 20px 20px 20px;
  text-align: center;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promo__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #0A0A0A; /* Dark text for contrast */
  border: none;
}

.page-promo__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-promo__btn-secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Primary color */
  border: 2px solid #F2C14E; /* Primary color border */
}

.page-promo__btn-secondary:hover {
  background: #F2C14E; /* Primary color */
  color: #111111; /* Card BG */
  transform: translateY(-2px);
}

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

.page-promo__feature-item {
  text-align: center;
  background-color: #111111; /* Card BG */\  border-radius: 10px;
  padding: 30px;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promo__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 211, 107, 0.5));
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__feature-title {
  font-size: 1.3em;
  color: #FFD36B; /* Glow */
  margin-bottom: 10px;
}

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

.page-promo__responsible-gaming .page-promo__section-description {
  text-align: left;
}

.page-promo__text-link {
  color: #F2C14E; /* Primary color */
  text-decoration: underline;
}

.page-promo__text-link:hover {
  color: #FFD36B; /* Glow */
}

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

.page-promo__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promo__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #111111; /* Card BG */
  color: #F2C14E; /* Primary color */
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-promo__faq-question:hover {
  background-color: #1a1a1a;
}

.page-promo__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-promo__faq-item.active .page-promo__faq-toggle {
  transform: rotate(45deg);
}

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

.page-promo__faq-item.active .page-promo__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 20px;
}

.page-promo__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-promo__expandable-content {
  padding-bottom: 20px; /* Adjust for button */
}

.page-promo__text-block {
  max-height: 500px; /* Initial max height for expandable content */
  overflow: hidden;
  transition: max-height 0.7s ease-out;
  position: relative;
}

.page-promo__text-block.collapsed {
  max-height: 500px;
}

.page-promo__text-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; /* Gradient height */
  background: linear-gradient(to top, #0A0A0A, rgba(10, 10, 10, 0)); /* Fade out effect */
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.7s ease-out;
}

.page-promo__text-block.collapsed::after {
  opacity: 1;
}

.page-promo__text-block:not(.collapsed)::after {
  opacity: 0;
}

.page-promo__load-less-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 0 auto;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  background: #111111; /* Card BG */
  color: #F2C14E; /* Primary color */
  border: 2px solid #F2C14E; /* Primary color border */
}

.page-promo__load-less-button:hover {
  background: #F2C14E; /* Primary color */
  color: #111111; /* Card BG */
}

.page-promo__load-less-icon {
  width: 24px;
  height: 24px;
  margin-left: 10px;
  transition: transform 0.3s ease;
  filter: invert(79%) sepia(36%) saturate(1518%) hue-rotate(349deg) brightness(101%) contrast(92%); /* Gold filter for icon */
}

.page-promo__text-block:not(.collapsed) + .page-promo__load-less-button .page-promo__load-less-icon {
  transform: rotate(180deg);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-promo {
    font-size: 16px;
    line-height: 1.6;
    padding-top: var(--header-offset, 100px) !important;
  }

  .page-promo__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promo__hero-section {
    height: auto;
    min-height: 400px;
    padding-bottom: 40px;
    padding-top: var(--header-offset, 100px) !important; /* Mobile: controlled by shared's media */
  }

  .page-promo__hero-carousel {
    height: 400px;
  }

  .page-promo__hero-content {
    padding: 15px;
    max-width: 90%;
  }

  .page-promo__main-title,
  .page-promo__secondary-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-promo__hero-description {
    font-size: clamp(0.9em, 3vw, 1em);
  }

  .page-promo__section {
    padding: 40px 0;
  }

  .page-promo__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 20px;
  }

  .page-promo__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-promo__grid,
  .page-promo__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promo__card,
  .page-promo__feature-item {
    padding: 20px;
  }

  .page-promo__card-title {
    font-size: 1.3em;
  }

  .page-promo__cta-button,
  .page-promo__btn-primary,
  .page-promo__btn-secondary,
  .page-promo a[class*="button"],
  .page-promo a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 0;
    margin-right: 0;
  }

  .page-promo__button-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promo__faq-question {
    padding: 15px;
    font-size: 1em;
  }

  .page-promo__faq-answer {
    padding: 15px;
  }

  /* Image responsiveness for all images */
  .page-promo img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All containers with images */
  .page-promo__section,
  .page-promo__card,
  .page-promo__container,
  .page-promo__hero-section,
  .page-promo__text-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}