.page-promo {
  background-color: #0A0A0A; /* From custom colors */
  color: #FFF6D6; /* From custom colors for main text */
  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__section {
  padding: 60px 0;
}

.page-promo__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #F2C14E; /* Main brand color for titles */
  line-height: 1.2;
}

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

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 120px; /* Desktop: Account for fixed header */
  padding-bottom: 60px; /* Consistent bottom padding */
  min-height: 600px;
}

.page-promo__hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-promo__hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
  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%); /* Start off-screen to the right */
  background-size: cover;
  background-position: center;
}

.page-promo__hero-slide.active {
  opacity: 1;
  transform: translateX(0); /* Slide into view */
}

.page-promo__hero-slide.prev {
  transform: translateX(-100%); /* Slide out to the left */
}

.page-promo__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.page-promo__main-title {
  color: #FFD36B; /* Glow color for main title */
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.7);
}

.page-promo__hero-description {
  font-size: 1.2rem;
  color: #FFF6D6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promo__btn-primary,
.page-promo__btn-secondary,
.page-promo__btn-tertiary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promo__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Custom button color */
  color: #ffffff; /* White text for contrast */
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-promo__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

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

.page-promo__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
}

.page-promo__btn-tertiary {
  background: transparent;
  color: #FFD36B;
  border: 2px solid #FFD36B;
}

.page-promo__btn-tertiary:hover {
  background: #FFD36B;
  color: #111111;
}

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

/* Latest Promotions */
.page-promo__latest-promos {
  background-color: #0A0A0A;
}

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

.page-promo__promo-card {
  background-color: #111111; /* Card BG color */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promo__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promo__promo-card-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

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

.page-promo__promo-card-title {
  font-size: 1.5rem;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promo__promo-card-text {
  font-size: 0.95rem;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* How to Claim */
.page-promo__how-to-claim {
  background-color: #0A0A0A;
}

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

.page-promo__step-item {
  text-align: center;
  background-color: #111111;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promo__step-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-promo__step-text {
  font-size: 0.9rem;
  color: #FFF6D6;
}

.page-promo__cta-buttons--center {
  margin-top: 40px;
  text-align: center;
}

/* Why Choose Promotions (Expandable Content) */
.page-promo__why-choose {
  background-color: #0A0A0A;
}

.page-promo__expandable-content {
  max-height: 200px; /* Initial collapsed height */
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  margin-bottom: 20px;
  color: #FFF6D6;
  text-align: justify;
}

.page-promo__expandable-content.collapsed {
  max-height: 200px;
}

.page-promo__expandable-content p {
  margin-bottom: 15px;
  font-size: 1rem;
}

.page-promo__load-less-btn {
  display: block;
  margin: 20px auto 0 auto;
  background: #F2C14E; /* Main brand color */
  color: #111111;
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

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

.page-promo__load-less-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #111111;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.page-promo__expandable-content.collapsed + .page-promo__load-less-btn .page-promo__load-less-icon {
  transform: rotate(180deg);
}

/* Featured Games */
.page-promo__featured-games {
  background-color: #0A0A0A;
}

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

.page-promo__game-card {
  background-color: #111111;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promo__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 15px;
  display: block;
}

.page-promo__game-title {
  font-size: 1.3rem;
  color: #FFD36B;
  margin-bottom: 15px;
  padding: 0 15px;
}

/* VIP Program */
.page-promo__vip-program {
  background-color: #0A0A0A;
}

.page-promo__vip-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-promo__vip-text-block {
  flex: 1;
  color: #FFF6D6;
}

.page-promo__vip-text-block p {
  margin-bottom: 15px;
}

.page-promo__vip-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-promo__vip-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Responsible Gaming */
.page-promo__responsible-gaming {
  background-color: #0A0A0A;
}

.page-promo__responsible-content {
  display: flex;
  flex-direction: row-reverse; /* Image on left, text on right */
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-promo__responsible-text-block {
  flex: 1;
  color: #FFF6D6;
}

.page-promo__responsible-text-block p {
  margin-bottom: 15px;
}

.page-promo__responsible-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-promo__responsible-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-promo__faq-section {
  background-color: #0A0A0A;
}

.page-promo__faq-item {
  background-color: #111111; /* Card BG color */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}