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

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD36B; /* Glow */
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-promotions__text-block {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

.page-promotions__card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #FFF6D6;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.5) 100%);
}

.page-promotions__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-promotions__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-promotions__main-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(255, 211, 107, 0.7);
}

.page-promotions__hero-description {
  font-size: 20px;
  color: #FFF6D6;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

.page-promotions__cta-button:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%); /* Primary/Secondary mix */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 216, 106, 0.6);
}

/* Intro Section */
.page-promotions__intro .page-promotions__section-title {
  color: #F2C14E;
}

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

.page-promotions__feature-item {
  padding: 25px;
}

.page-promotions__feature-title {
  font-size: 24px;
  color: #FFD36B;
  margin-bottom: 15px;
}

/* Promotion Types Section */
.page-promotions__promotion-types .page-promotions__section-title {
  color: #F2C14E;
}

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

.page-promotions__promo-card {
  padding: 20px;
  text-align: left;
}

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

.page-promotions__promo-title {
  font-size: 22px;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-promotions__promo-card p {
  font-size: 16px;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-promotions__btn-secondary {
  display: inline-block;
  padding: 10px 25px;
  background: transparent;
  color: #FFD36B;
  border: 2px solid #FFD36B;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-promotions__btn-secondary:hover {
  background: #FFD36B;
  color: #111111;
  box-shadow: 0 2px 10px rgba(255, 211, 107, 0.4);
}

/* How to Claim Section */
.page-promotions__how-to-claim .page-promotions__section-title {
  color: #F2C14E;
}

.page-promotions__claim-steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__claim-steps li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  font-size: 18px;
  color: #FFF6D6;
  background: #111111;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #3A2A12;
}

.page-promotions__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #F2C14E;
  color: #111111;
  border-radius: 50%;
  font-weight: bold;
  font-size: 20px;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-promotions__claim-steps li p {
  margin: 0;
  color: #FFF6D6;
}

.page-promotions__claim-steps li strong {
  color: #FFD36B;
}

.page-promotions__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* FAQ Section */
.page-promotions__faq .page-promotions__section-title {
  color: #F2C14E;
}

.page-promotions__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

details.page-promotions__faq-item summary.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFD36B; /* Glow */
}

details.page-promotions__faq-item summary.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}

details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
  background: #1a1a1a;
}

.page-promotions__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFD36B;
}

.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFF6D6; /* Text Main */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 20px 20px;
  background: #0A0A0A; /* Background */
  border-radius: 0 0 5px 5px;
  color: #FFF6D6;
  text-align: left;
}

.page-promotions__faq-answer p {
  margin: 0;
  color: #FFF6D6;
}

/* Final CTA Section */
.page-promotions__cta-final {
  padding: 80px 0;
  background: #0A0A0A; /* Background */
}

.page-promotions__cta-final .page-promotions__card {
  padding: 50px;
}

.page-promotions__cta-final .page-promotions__section-title {
  color: #F2C14E;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__section-title {
    font-size: 32px;
  }
  .page-promotions__text-block, .page-promotions__hero-description {
    font-size: 17px;
  }
  .page-promotions__cta-button {
    padding: 14px 35px;
    font-size: 17px;
  }
  .page-promotions__promo-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions__claim-steps li {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__hero-image img {
    border-radius: 4px;
  }
  .page-promotions__main-title {
    font-size: clamp(24px, 8vw, 40px);
  }
  .page-promotions__hero-description {
    font-size: 16px;
  }
  .page-promotions__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__button-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }
  .page-promotions__button-group .page-promotions__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 28px;
  }
  .page-promotions__text-block {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .page-promotions__features-grid,
  .page-promotions__promo-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  .page-promotions__feature-item,
  .page-promotions__promo-card {
    padding: 20px;
  }
  .page-promotions__feature-title {
    font-size: 20px;
  }
  .page-promotions__promo-title {
    font-size: 18px;
  }
  .page-promotions__promo-card p {
    font-size: 15px;
  }
  .page-promotions__claim-steps {
    padding: 0 15px;
  }
  .page-promotions__claim-steps li {
    font-size: 15px;
    padding: 15px;
  }
  .page-promotions__step-number {
    width: 30px;
    height: 30px;
    font-size: 18px;
    margin-right: 10px;
  }
  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px;
  }
  .page-promotions__faq-qtext {
    font-size: 16px;
  }
  .page-promotions__faq-toggle {
    font-size: 20px;
  }
  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 15px 15px;
  }
  .page-promotions__cta-final {
    padding: 50px 0;
  }
  .page-promotions__cta-final .page-promotions__card {
    padding: 30px;
  }
  /* Mobile responsive images */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: clamp(22px, 9vw, 36px);
  }
  .page-promotions__section-title {
    font-size: 24px;
  }
  .page-promotions__cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }
  .page-promotions__btn-secondary {
    font-size: 14px;
    padding: 8px 20px;
  }
}