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

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, main offset from body */
  background-color: #111111;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 20px;
}

.page-promotions__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-promotions__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-promotions__main-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

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

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

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

.page-promotions__overview-section,
.page-promotions__vip-section,
.page-promotions__how-to-claim-section,
.page-promotions__app-download-section,
.page-promotions__faq-section,
.page-promotions__why-choose-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: #111111;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-promotions__section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: #FFD36B;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.04em;
}

.page-promotions__section-subtitle {
  font-size: 1rem;
  color: #FFF6D6;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

.page-promotions__promo-card {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(242, 193, 78, 0.2);
}

.page-promotions__promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
}

.page-promotions__card-title {
  font-size: 1.4rem;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.page-promotions__card-button:hover {
  transform: translateY(-2px);
}

.page-promotions__vip-benefits-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  text-align: left;
}

.page-promotions__vip-benefits-list li {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  padding: 15px 20px;
  color: #FFF6D6;
  font-size: 1rem;
  position: relative;
  padding-left: 40px;
}

.page-promotions__vip-benefits-list li::before {
  content: '★';
  color: #F2C14E;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
}

.page-promotions__how-to-claim-section {
  text-align: center;
}

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

.page-promotions__step-card {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions__step-icon {
  width: 60px;
  height: 60px;
  background-color: #F2C14E;
  color: #111111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

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

.page-promotions__step-description {
  font-size: 0.95rem;
  color: #FFF6D6;
}

.page-promotions__cta-button--small {
  margin-top: 30px;
  padding: 12px 25px;
  font-size: 1rem;
}

.page-promotions__app-download-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: left;
}

.page-promotions__app-content {
  max-width: 600px;
}

.page-promotions__app-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
}

.page-promotions__app-features {
  font-size: 1rem;
  color: #FFF6D6;
  margin-top: 15px;
  margin-bottom: 30px;
}

.page-promotions__faq-section {
  text-align: center;
}

.page-promotions__faq-container {
  max-width: 900px;
  margin: 40px auto;
}

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

.page-promotions__faq-question {
  font-size: 1.1rem;
  color: #F2C14E;
  padding: 18px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #FFD36B;
  transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  text-align: left;
}

.page-promotions__faq-answer p {
  padding-bottom: 18px;
  font-size: 0.95rem;
  color: #FFF6D6;
}

.page-promotions__why-choose-section {
  text-align: left;
}

.page-promotions__why-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__why-list li {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 10px;
  color: #FFF6D6;
  font-size: 1rem;
}

.page-promotions__why-list li strong {
  color: #F2C14E;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-promotions__hero-section {
    flex-direction: column; /* Still column for image above text */
  }
  .page-promotions__app-download-section {
    flex-direction: row;
    text-align: left;
    justify-content: center;
  }

  .page-promotions__app-download-section:nth-of-type(odd) {
    flex-direction: row-reverse; /* Alternate layout for visual interest */
  }

  .page-promotions__app-image {
    flex-shrink: 0;
  }

  .page-promotions__app-content {
    flex-grow: 1;
    padding-right: 30px;
  }

  .page-promotions__app-download-section:nth-of-type(odd) .page-promotions__app-content {
    padding-right: 0;
    padding-left: 30px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-image img,
  .page-promotions__promo-card img,
  .page-promotions__app-image img {
    max-width: 100%;
    height: auto;
  }
  .page-promotions__overview-section,
  .page-promotions__vip-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__app-download-section,
  .page-promotions__faq-section,
  .page-promotions__why-choose-section {
    padding: 20px 15px;
    margin: 20px auto;
  }
  .page-promotions__main-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }
  .page-promotions__section-title {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }
  .page-promotions__hero-description,
  .page-promotions__section-subtitle {
    font-size: 0.9rem;
  }
  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-promotions__promo-grid,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__promo-card img,
  .page-promotions__app-image img {
    min-width: 200px;
    min-height: 200px;
  }
  .page-promotions__vip-benefits-list {
    grid-template-columns: 1fr;
  }
  .page-promotions__app-download-section {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions__app-content {
    padding-right: 0;
  }
}