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

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

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  box-sizing: border-box;
}

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

.page-promotions__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
  margin-top: 20px;
  background: rgba(23, 25, 31, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  border: 1px solid #A84F0C; /* Border */
  box-shadow: 0 0 20px rgba(255, 176, 77, 0.4); /* Glow */
}

.page-promotions__main-title {
  color: #FFB04D; /* Glow */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  /* clamp for responsive font size without fixed large values */
  font-size: clamp(2.5rem, 5vw, 3.8rem);
}

.page-promotions__description {
  color: #FFF3E6; /* Text Main */
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-promotions__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 176, 77, 0.4);
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  box-shadow: 0 6px 20px rgba(255, 176, 77, 0.6);
}

.page-promotions__section-title {
  color: #FFB04D; /* Glow */
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 176, 77, 0.3);
}

.page-promotions__text-block {
  color: #FFF3E6; /* Text Main */
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-promotions__introduction-section,
.page-promotions__terms-section,
.page-promotions__tips-section,
.page-promotions__cta-section {
  padding: 80px 0;
}

.page-promotions__dark-section {
  background-color: #17191F; /* Card BG */
  border-top: 1px solid #A84F0C;
  border-bottom: 1px solid #A84F0C;
}

.page-promotions__promotions-list-section,
.page-promotions__how-to-join-section,
.page-promotions__faq-section {
  padding: 80px 0;
  background-color: #0D0E12; /* Background */
}

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

.page-promotions__promo-card,
.page-promotions__step-card,
.page-promotions__card {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__promo-card:hover,
.page-promotions__step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(255, 176, 77, 0.5);
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #A84F0C;
}

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

.page-promotions__card-text {
  color: #FFF3E6; /* Text Main */
  font-size: 0.95rem;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  color: #FFA53A; /* Auxiliary */
  border: 2px solid #FFA53A;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-promotions__btn-secondary:hover {
  background: #FFA53A;
  color: #17191F; /* Card BG */
}

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

.page-promotions__list-item {
  color: #FFF3E6; /* Text Main */
  font-size: 1rem;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.page-promotions__list-item::before {
  content: '⚡'; /* Unicode lightning bolt for bullet */
  position: absolute;
  left: 0;
  color: #FFB04D; /* Glow */
  font-size: 1.2rem;
  line-height: 1;
}

.page-promotions__faq-list {
  margin-top: 40px;
}

.page-promotions__faq-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF3E6;
}

.page-promotions__faq-item summary {
  list-style: none; /* Hide default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: #FFA53A; /* Auxiliary */
  transition: background-color 0.3s ease;
}

.page-promotions__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}

.page-promotions__faq-item summary:hover {
  background-color: rgba(255, 165, 58, 0.1);
}

.page-promotions__faq-qtext {
  flex-grow: 1;
}

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: #FFB04D; /* Glow */
}

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: #FFF3E6; /* Text Main */
}

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

/* Responsive Styles */
@media (max-width: 992px) {
  .page-promotions__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

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

  .page-promotions__hero-content {
    padding: 30px 15px;
  }

  .page-promotions__promo-grid,
  .page-promotions__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .page-promotions__promo-card,
  .page-promotions__step-card {
    padding: 25px;
  }

  .page-promotions__introduction-section,
  .page-promotions__promotions-list-section,
  .page-promotions__how-to-join-section,
  .page-promotions__terms-section,
  .page-promotions__tips-section,
  .page-promotions__faq-section,
  .page-promotions__cta-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions__container {
    padding: 0 15px;
  }

  .page-promotions__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-promotions__hero-content {
    padding: 20px 10px;
    margin-top: 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-promotions__description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-promotions__btn-primary {
    padding: 12px 25px;
    font-size: 0.95rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-promotions__text-block {
    font-size: 0.95rem;
  }

  .page-promotions__promo-grid,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .page-promotions__promo-card,
  .page-promotions__step-card,
  .page-promotions__card {
    padding: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__card-image {
    height: 180px;
  }

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

  .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__list-item {
    font-size: 0.95rem;
  }

  .page-promotions__faq-item summary {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-promotions__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9rem;
  }

  /* Mobile specific image/video/button overrides */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions video,
  .page-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__video-section,
  .page-promotions__video-container,
  .page-promotions__video-wrapper,
  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-section {
    padding: 30px 10px;
    padding-top: 10px !important;
  }

  .page-promotions__hero-content {
    padding: 15px 5px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

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

  .page-promotions__btn-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .page-promotions__btn-secondary {
    padding: 8px 15px;
    font-size: 0.85rem;
  }

  .page-promotions__faq-item summary {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .page-promotions__faq-answer {
    padding: 0 15px 12px;
  }
}