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

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

.page-promo__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px;
  margin-bottom: 30px;
}

.page-promo__hero-content {
  max-width: 900px;
  z-index: 10;
  padding: 0 20px;
}

.page-promo__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

.page-promo__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #FFD36B; /* Glow */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

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

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

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

.page-promo__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button */
  color: #111111; /* Dark text for bright button */
  border: 2px solid transparent;
}

.page-promo__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

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

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

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

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

.page-promo__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-promo__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-promo__text-block {
  flex: 1;
}

.page-promo__text-block p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

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

.page-promo__image-right,
.page-promo__image-left {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #3A2A12;
}

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

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

.page-promo__card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__card-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #3A2A12;
}

.page-promo__card-title {
  font-size: 1.5rem;
  color: #FFD36B; /* Glow */
  margin-bottom: 10px;
}

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

.page-promo__btn-link {
  display: inline-block;
  color: #F2C14E;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 15px;
  border: 1px solid #F2C14E;
  border-radius: 5px;
  transition: all 0.3s ease;
}

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

.page-promo__game-specific-offers-section {
  padding: 60px 0;
}

.page-promo__offers-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.page-promo__offer-item {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  padding: 30px;
}

.page-promo__offer-title {
  font-size: 1.8rem;
  color: #F2C14E; /* Main Color */
  margin-bottom: 15px;
}

.page-promo__offer-item p {
  font-size: 1.05rem;
  margin-bottom: 25px;
}

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

.page-promo__how-to-claim-section {
  padding: 60px 0;
}

.page-promo__steps-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-promo__steps-list li {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.page-promo__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.page-promo__step-title {
  color: #FFD36B;
}

.page-promo__info-text {
  text-align: center;
  font-style: italic;
  color: #FFF6D6;
  font-size: 0.95rem;
}

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

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

.page-promo__feature-item {
  padding: 30px;
}

.page-promo__feature-title {
  font-size: 1.6rem;
  color: #F2C14E; /* Main Color */
  margin-bottom: 15px;
}

.page-promo__feature-item p {
  font-size: 1rem;
}

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

.page-promo__faq-list {
  max-width: 800px;
  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;
  font-size: 1.1rem;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  transition: background-color 0.3s ease;
}

.page-promo__faq-question:hover {
  background-color: rgba(255, 211, 107, 0.1);
}

.page-promo__faq-toggle {
  font-size: 1.5rem;
  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 */
  padding: 15px 20px 20px 20px;
}

.page-promo__faq-answer p {
  margin-bottom: 15px;
}

.page-promo__faq-answer a {
  color: #FFD36B;
  text-decoration: underline;
}

.page-promo__final-cta-section {
  padding: 60px 0 80px 0;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promo__hero-image {
    max-height: 500px;
  }
  .page-promo__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-promo__content-wrapper--reverse {
    flex-direction: column-reverse;
  }
  .page-promo__image-right,
  .page-promo__image-left {
    max-width: 80%;
    margin: 30px auto 0 auto;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding-bottom: 40px;
  }
  .page-promo__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .page-promo__hero-description {
    font-size: 1rem;
  }
  .page-promo__section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-promo__section-description {
    font-size: 1rem;
  }
  .page-promo__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__btn-primary,
  .page-promo__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-promo__promo-grid,
  .page-promo__offers-flex,
  .page-promo__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promo__card {
    padding: 20px;
  }
  .page-promo__card-title {
    font-size: 1.3rem;
  }
  .page-promo__offer-item,
  .page-promo__feature-item {
    max-width: 100%;
  }
  .page-promo__dark-section,
  .page-promo__welcome-bonus-section,
  .page-promo__ongoing-promotions-section,
  .page-promo__game-specific-offers-section,
  .page-promo__vip-program-section,
  .page-promo__how-to-claim-section,
  .page-promo__why-choose-section,
  .page-promo__faq-section,
  .page-promo__final-cta-section {
    padding: 40px 0;
  }
  .page-promo__steps-list li {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 15px;
    font-size: 1rem;
  }
  .page-promo__steps-list li::before {
    margin-bottom: 10px;
  }
  .page-promo__faq-question {
    font-size: 1rem;
    padding: 15px;
  }
  .page-promo__faq-answer {
    padding: 0 15px;
  }
  .page-promo__faq-item.active .page-promo__faq-answer {
    padding: 10px 15px 15px 15px;
  }

  /* Mobile image and video specific overrides */
  .page-promo img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promo__hero-image,
  .page-promo__image-right,
  .page-promo__image-left,
  .page-promo__card-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promo__container,
  .page-promo__promo-grid,
  .page-promo__offers-flex,
  .page-promo__features-grid,
  .page-promo__cta-buttons,
  .page-promo__faq-list,
  .page-promo__steps-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promo__hero-section {
    padding-top: 10px !important;
  }
}