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

.page-promotions__section-title {
  color: #F2C14E;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  padding-top: 40px;
}

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

.page-promotions__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}

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

.page-promotions__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.page-promotions__hero-title {
  color: #FFD36B;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

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

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

.page-promotions__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 150px;
  text-align: center;
}

.page-promotions__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.page-promotions__btn--secondary {
  background: #111111;
  color: #F2C14E;
  border: 1px solid #3A2A12;
}

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

.page-promotions__btn--small {
  padding: 8px 15px;
  font-size: 0.9rem;
}

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

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

.page-promotions__promotion-card {
  background-color: #111111;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #3A2A12;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

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

.page-promotions__how-to-claim {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #0A0A0A;
}

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

.page-promotions__step-card {
  background-color: #111111;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid #3A2A12;
  position: relative;
}

.page-promotions__step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F2C14E;
  color: #111111;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  border: 3px solid #0A0A0A;
}

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

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

.page-promotions__step-description a {
  color: #F2C14E;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__step-description a:hover {
  text-decoration: underline;
}

.page-promotions__download-app {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background-color: #111111;
  border-radius: 12px;
  margin-top: 40px;
  border: 1px solid #3A2A12;
}

.page-promotions__app-content {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-promotions__app-content .page-promotions__section-title {
  padding-top: 0;
  margin-bottom: 15px;
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  text-align: center;
}

.page-promotions__app-content .page-promotions__section-description {
  margin-bottom: 30px;
  text-align: center;
  max-width: 600px;
}

.page-promotions__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.page-promotions__app-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

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

.page-promotions__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-promotions__faq-item {
  background-color: #111111;
  border-radius: 12px;
  padding: 25px;
  border: 1px solid #3A2A12;
}

.page-promotions__faq-question {
  color: #F2C14E;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.page-promotions__faq-answer {
  font-size: 0.95rem;
  color: #e5e5e5;
}

.page-promotions__why-choose {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

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

.page-promotions__feature-card {
  background-color: #111111;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #3A2A12;
  text-align: center;
}

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

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

@media (max-width: 768px) {
  .page-promotions__section-title {
    font-size: 2rem;
  }

  .page-promotions__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-promotions__hero-description {
    font-size: 1.1rem;
  }

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

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

  .page-promotions__promotion-grid,
  .page-promotions__claim-steps,
  .page-promotions__why-choose-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions__download-app {
    flex-direction: column;
  }

  .page-promotions__app-content,
  .page-promotions__app-image-wrapper {
    min-width: unset;
    width: 100%;
  }

  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promotions__section-title {
    font-size: 1.8rem;
  }

  .page-promotions__hero-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .page-promotions__hero-description {
    font-size: 1rem;
  }

  .page-promotions__promotion-card {
    border-radius: 8px;
  }

  .page-promotions__card-title {
    font-size: 1.3rem;
  }

  .page-promotions__card-text {
    font-size: 0.9rem;
  }

  .page-promotions__step-title,
  .page-promotions__faq-question,
  .page-promotions__feature-title {
    font-size: 1.1rem;
  }

  .page-promotions__step-description,
  .page-promotions__faq-answer,
  .page-promotions__feature-text {
    font-size: 0.85rem;
  }
}