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

.page-promotions__hero-section {
  padding: 10px 20px 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
}

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

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

.page-promotions__hero-content {
  max-width: 900px;
  margin-top: 20px;
}

.page-promotions__main-title {
  font-size: clamp(1.75rem, 5vw, 2.25rem); /* Adjusted for H1 constraint */
  font-weight: bold;
  color: #FFD36B; /* Auxiliary color for emphasis */
  margin-bottom: 15px;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

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

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

.page-promotions__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-promotions__button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Dark text for contrast */
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-promotions__button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-promotions__button--secondary {
  background-color: transparent;
  border: 2px solid #F2C14E; /* Main color as border */
  color: #F2C14E;
}

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

.page-promotions__button--small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-promotions__content-area,
.page-promotions__how-to-claim,
.page-promotions__vip-section,
.page-promotions__terms-section,
.page-promotions__faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-promotions__section-title {
  font-size: 2rem;
  color: #FFD36B;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

.page-promotions__promo-card {
  background-color: #111111; /* Card B G */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

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

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

.page-promotions__step-icon {
  width: 150px; /* Min size 200px, but 150px for icon like usage */
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

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

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

.page-promotions__claim-button-wrapper {
  text-align: center;
  margin-top: 50px;
}

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

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

.page-promotions__feature-icon {
  width: 100%;
  max-width: 250px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}

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

.page-promotions__feature-text {
  font-size: 0.95rem;
  color: #FFF6D6;
}

.page-promotions__vip-cta {
  text-align: center;
  margin-top: 50px;
}

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

.page-promotions__terms-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-left: 5px solid #F2C14E;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1rem;
  color: #FFF6D6;
}

.page-promotions__terms-cta {
  text-align: center;
  margin-top: 40px;
}

.page-promotions__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions__faq-question {
  font-size: 1.2rem;
  color: #F2C14E;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #FFD36B;
  transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
  content: '-';
}

.page-promotions__faq-answer {
  font-size: 0.95rem;
  color: #FFF6D6;
  display: none;
  padding-top: 10px;
}

.page-promotions__faq-answer.active {
  display: block;
}

@media (max-width: 768px) {
  .page-promotions__main-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .page-promotions__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions__button {
    width: 100%;
    max-width: 300px;
  }

  .page-promotions__section-title {
    font-size: 1.8rem;
  }

  .page-promotions__promo-grid,
  .page-promotions__steps-grid,
  .page-promotions__vip-features {
    grid-template-columns: 1fr;
  }

  .page-promotions__promo-image,
  .page-promotions__feature-icon {
    max-width: 100%;
    height: auto;
  }

  .page-promotions__content-area img,
  .page-promotions__how-to-claim img,
  .page-promotions__vip-section img,
  .page-promotions__terms-section img,
  .page-promotions__faq-section img {
    max-width: 100%;
    height: auto;
  }
}