.page-promo {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding for desktop, body handles header offset */
  background: #0A0A0A;
}

.page-promo__hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.page-promo__hero-slides {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

.page-promo__hero-slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  flex-direction: column; /* Ensure image above text */
  text-align: center;
}

.page-promo__hero-slide.active {
  opacity: 1;
}

.page-promo__hero-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit hero image height */
}

.page-promo__hero-content {
  position: relative; /* Ensure text is below image in normal flow */
  padding: 40px 20px;
  max-width: 800px;
  background: rgba(17, 17, 17, 0.8); /* Card BG with some transparency */
  border-radius: 8px;
  margin-top: 20px; /* Space between image and text */
}

.page-promo__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: bold;
  color: #FFD36B;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.1rem;
  color: #FFF6D6;
  margin-bottom: 30px;
}

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

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

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

.page-promo__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #FFD36B;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  padding-top: 40px;
}

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

.page-promo__dark-section {
  background-color: #0A0A0A;
  padding: 60px 0;
}

.page-promo__about-section {
  padding: 60px 0;
}

.page-promo__text-block {
  font-size: 1rem;
  color: #FFF6D6;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promo__text-block a {
  color: #FFD36B;
  text-decoration: underline;
}

.page-promo__promotions-section {
  padding: 60px 0;
  background-color: #111111; /* Card BG */
}

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

.page-promo__promo-card, .page-promo__game-card, .page-promo__feature-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__promo-card:hover, .page-promo__game-card:hover, .page-promo__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(255, 211, 107, 0.2);
}

.page-promo__promo-card img, .page-promo__game-card img, .page-promo__feature-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #3A2A12;
}

.page-promo__card-title {
  font-size: 1.4rem;
  color: #FFD36B;
  margin: 20px 15px 10px;
  font-weight: bold;
}

.page-promo__card-text {
  font-size: 0.95rem;
  color: #FFF6D6;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-promo__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  margin-top: auto;
  margin-bottom: 20px;
}

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

.page-promo__btn-secondary {
  display: inline-block;
  background: #111111;
  color: #FFD36B;
  padding: 12px 25px;
  border: 2px solid #F2C14E;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  font-size: 1rem;
  margin-top: auto;
  margin-bottom: 20px;
}

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

.page-promo__text-content {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  padding: 30px;
  margin-top: 40px;
  overflow: hidden;
  max-height: 250px; /* Initial collapsed height */
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promo__text-content.collapsed {
  max-height: 100px; /* Collapsed state */
  padding-bottom: 0;
}

.page-promo__text-title {
  font-size: 1.5rem;
  color: #FFD36B;
  margin-bottom: 15px;
  text-align: center;
}

.page-promo__load-less-btn-wrapper {
  text-align: center;
  margin-top: 20px;
}

.page-promo__load-less-btn {
  background: none;
  border: 2px solid #FFD36B;
  color: #FFD36B;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promo__load-less-btn:hover {
  background-color: #FFD36B;
  color: #111111;
}

.page-promo__load-less-icon {
  display: inline-block;
  margin-left: 10px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #FFD36B; /* Down arrow initially */
  transition: transform 0.3s ease;
}

.page-promo__text-content.collapsed + .page-promo__load-less-btn-wrapper .page-promo__load-less-icon {
  transform: rotate(180deg); /* Up arrow when collapsed */
}

.page-promo__games-section {
  padding: 60px 0;
}

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

.page-promo__game-card {
  text-decoration: none;
  color: inherit;
}

.page-promo__why-choose-section {
  padding: 60px 0;
  background-color: #111111;
}

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

.page-promo__responsible-gaming-section {
  padding: 60px 0;
  text-align: center;
}

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

.page-promo__faq-section {
  padding: 60px 0;
  background-color: #111111;
}

.page-promo__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-promo__faq-item {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promo__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-size: 1.2rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

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

.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;
  font-size: 1rem;
}

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

.page-promo__cta-section {
  padding: 80px 0;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promo__hero-content {
    padding: 30px 15px;
    margin: 15px;
  }

  .page-promo__main-title {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
  }

  .page-promo__hero-description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile specific padding-top */
  }

  .page-promo__hero-content {
    margin: 10px;
    padding: 20px 10px;
  }

  .page-promo__hero-actions {
    flex-direction: column;
    gap: 10px;
  }

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

  .page-promo__cta-buttons,
  .page-promo__button-group,
  .page-promo__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-promo__cta-buttons {
    flex-direction: column;
  }

  .page-promo img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-promo__section-title {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }

  .page-promo__section-description,
  .page-promo__hero-description,
  .page-promo__text-block,
  .page-promo__card-text,
  .page-promo__faq-answer {
    font-size: 0.9rem;
  }

  .page-promo__promo-card img, .page-promo__game-card img, .page-promo__feature-item img {
    
  }

  .page-promo__text-content {
    padding: 20px;
  }

  .page-promo__faq-question {
    padding: 15px;
    font-size: 1.1rem;
  }

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

@media (max-width: 480px) {
  .page-promo__main-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }

  .page-promo__hero-content {
    margin: 5px;
  }

  .page-promo__section-title {
    padding-top: 30px;
  }

  .page-promo__promotions-grid, .page-promo__games-grid, .page-promo__features-grid {
    gap: 20px;
  }

  .page-promo__promo-card img, .page-promo__game-card img, .page-promo__feature-item img {
    
  }
}