/* Basic Reset & Typography for .page-promotions */
.page-promotions {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2C14E;
  text-align: center;
  max-width: 900px; /* Prevent overly long lines */
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 2.5rem;
}

.page-promotions__description,
.page-promotions__overview-text,
.page-promotions__card-description,
.page-promotions__step-description,
.page-promotions__faq-answer {
  font-size: 1.1rem;
  color: #E5E5E5;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 4rem 0; /* Minimal top padding, more bottom */
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit hero image height */
  overflow: hidden;
  margin-bottom: 2rem; /* Space between image and text */
}

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

.page-promotions__hero-content {
  text-align: center;
  padding: 0 1rem;
  max-width: 1000px;
}

.page-promotions__hero-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.page-promotions__btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.page-promotions__btn--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for bright button */
}

.page-promotions__btn--primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.6);
}

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

.page-promotions__btn--secondary:hover {
  background-color: #FFD36B;
  color: #111111;
}

.page-promotions__btn--small {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
}

.page-promotions__btn--small:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 10px rgba(255, 211, 107, 0.4);
}

/* Promotions Overview Section */
.page-promotions__overview-section {
  padding: 4rem 1rem;
  text-align: center;
}

.page-promotions__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__promotion-card {
  background-color: #111111;
  border-radius: 15px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(242, 193, 78, 0.3);
}

.page-promotions__card-image {
  width: 100%;
  max-width: 400px; /* Ensure images don't stretch too wide in a card */
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__card-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #F2C14E;
  margin-bottom: 0.8rem;
}

.page-promotions__card-description {
  font-size: 1rem;
  color: #E5E5E5;
  margin-bottom: 1.5rem;
  flex-grow: 1; /* Push button to bottom */
}

/* How to Claim Section */
.page-promotions__how-to-claim-section {
  padding: 4rem 1rem;
  text-align: center;
  background-color: #0A0A0A;
}

.page-promotions__steps-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.page-promotions__step-item {
  background-color: #111111;
  border-radius: 15px;
  padding: 2rem;
  flex: 1 1 calc(25% - 2rem); /* 4 items per row on desktop */
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #3A2A12;
}

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

.page-promotions__step-title {
  font-size: 1.4rem;
  color: #FFD36B;
  margin-bottom: 0.8rem;
}

.page-promotions__cta-buttons {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 4rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__faq-item {
  background-color: #111111;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  border: 1px solid #3A2A12;
}

.page-promotions__faq-question {
  font-size: 1.3rem;
  color: #F2C14E;
  cursor: pointer;
  margin-bottom: 0.5rem;
  position: relative;
  padding-right: 2rem; /* Space for arrow icon */
}

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

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

.page-promotions__faq-answer {
  display: none; /* Hidden by default, toggled by JS */
  padding-top: 1rem;
  border-top: 1px solid #3A2A12;
  margin-top: 1rem;
  text-align: left;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-image-wrapper {
    max-height: 450px;
  }
  .page-promotions__promotions-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-promotions__step-item {
    flex: 1 1 calc(50% - 2rem); /* 2 items per row */
  }
}

@media (max-width: 768px) {
  .page-promotions__main-title {
    font-size: 2.2rem;
  }
  .page-promotions__section-title {
    font-size: 2rem;
  }
  .page-promotions__description,
  .page-promotions__overview-text,
  .page-promotions__card-description,
  .page-promotions__step-description,
  .page-promotions__faq-answer {
    font-size: 1rem;
  }
  .page-promotions__hero-image-wrapper {
    max-height: 350px;
  }
  .page-promotions__hero-buttons,
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }
  .page-promotions__btn {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-promotions__promotions-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
  }
  .page-promotions__step-item {
    flex: 1 1 100%; /* Single column on mobile */
    max-width: 400px;
  }
  /* Mobile content image constraint */
  .page-promotions__overview-section img,
  .page-promotions__how-to-claim-section img,
  .page-promotions__faq-section img {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px !important; /* Ensure minimum size */
    min-height: 200px !important;
  }
  .page-promotions__card-image {
    max-width: 100%;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: 1.8rem;
  }
  .page-promotions__section-title {
    font-size: 1.8rem;
  }
  .page-promotions__btn {
    padding: 0.7rem 1.5rem;
  }
  .page-promotions__hero-image-wrapper {
    max-height: 250px;
  }
}