.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: 10px 0 60px 0; /* body handles padding-top from header, only a small top margin for visual separation */
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height for hero image */
  overflow: hidden;
}

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

.page-promotions__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Pull content slightly over the image for design flow */
  position: relative;
  z-index: 2; /* Ensure content is above any subtle image elements if needed */
  background-color: rgba(13, 14, 18, 0.8); /* Semi-transparent background for readability */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFB04D; /* Glow */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 176, 77, 0.5);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

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

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__card-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-promotions__btn-primary,
.page-promotions__card-btn {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button */
  color: #FFF3E6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-promotions__btn-primary:hover,
.page-promotions__card-btn:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-promotions__btn-secondary {
  background-color: transparent;
  color: #FF8C1A; /* Main Color */
  border: 2px solid #FF8C1A; /* Main Color */
}

.page-promotions__btn-secondary:hover {
  background-color: #FF8C1A; /* Main Color */
  color: #FFF3E6; /* Text Main */
  transform: translateY(-2px);
}

.page-promotions__introduction-section,
.page-promotions__promotions-list-section,
.page-promotions__vip-section,
.page-promotions__guide-section,
.page-promotions__terms-section,
.page-promotions__faq-section,
.page-promotions__conclusion-section {
  padding: 60px 0;
  background-color: #0D0E12; /* Background */
}

.page-promotions__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #FFB04D; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(255, 176, 77, 0.4);
}

.page-promotions__text-block {
  font-size: 1.05rem;
  color: #FFF3E6; /* Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions__text-block a {
  color: #FFA53A; /* Auxiliary Color */
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__text-block a:hover {
  text-decoration: underline;
}

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

.page-promotions__promotion-card {
  background-color: #17191F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #A84F0C; /* Border */
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

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

.page-promotions__card-content {
  padding: 25px;
}

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

.page-promotions__card-description {
  font-size: 0.95rem;
  color: #FFF3E6; /* Text Main */
  margin-bottom: 20px;
}

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

.page-promotions__step-item {
  background-color: #17191F; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C; /* Border */
}

.page-promotions__step-image {
  width: 100%;
  max-width: 250px; /* Ensure images are not too wide */
  height: auto;
  margin: 0 auto 20px auto;
  display: block;
  border-radius: 8px;
}

.page-promotions__step-title {
  font-size: 1.3rem;
  color: #FFB04D; /* Glow */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__step-description {
  font-size: 0.95rem;
  color: #FFF3E6; /* Text Main */
}

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

.page-promotions__faq-item {
  background-color: #17191F; /* Card BG */
  border-radius: 12px;
  border: 1px solid #A84F0C; /* Border */
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-item summary {
  list-style: none; /* Remove default marker */
}

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

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #FF8C1A; /* Main Color */
  cursor: pointer;
  background-color: #17191F; /* Card BG */
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: rgba(255, 140, 26, 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 25px;
  font-size: 1rem;
  color: #FFF3E6; /* Text Main */
  line-height: 1.5;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    margin-top: -60px;
    padding: 30px 20px;
  }
  .page-promotions__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-promotions__section-title {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-promotions__hero-image-wrapper {
    max-height: 400px;
  }
  .page-promotions__hero-content {
    margin-top: -40px;
    padding: 25px 15px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-promotions__hero-description {
    font-size: 1rem;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions__card-btn {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__container {
    padding: 0 15px;
  }
  .page-promotions__introduction-section,
  .page-promotions__promotions-list-section,
  .page-promotions__vip-section,
  .page-promotions__guide-section,
  .page-promotions__terms-section,
  .page-promotions__faq-section,
  .page-promotions__conclusion-section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }
  .page-promotions__promotions-grid,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-promotions__card-image {
    height: 180px;
  }
  .page-promotions__card-title {
    font-size: 1.3rem;
  }
  .page-promotions__step-image {
    max-width: 200px;
  }
  .page-promotions__step-title {
    font-size: 1.15rem;
  }
  .page-promotions__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-promotions__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.95rem;
  }

  /* Mobile image, video, container overrides */
  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-section,
  .page-promotions__hero-image-wrapper,
  .page-promotions__hero-content,
  .page-promotions__cta-buttons,
  .page-promotions__promotions-grid,
  .page-promotions__promotion-card,
  .page-promotions__vip-section,
  .page-promotions__guide-section,
  .page-promotions__steps-grid,
  .page-promotions__step-item,
  .page-promotions__terms-section,
  .page-promotions__faq-section,
  .page-promotions__faq-list,
  .page-promotions__faq-item,
  .page-promotions__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }
  /* Padding for main sections on mobile */
  .page-promotions__introduction-section .page-promotions__container,
  .page-promotions__promotions-list-section .page-promotions__container,
  .page-promotions__vip-section .page-promotions__container,
  .page-promotions__guide-section .page-promotions__container,
  .page-promotions__terms-section .page-promotions__container,
  .page-promotions__faq-section .page-promotions__container,
  .page-promotions__conclusion-section .page-promotions__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-content {
    margin-top: -30px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .page-promotions__hero-description {
    font-size: 0.9rem;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions__card-btn {
    padding: 10px 15px;
    font-size: 0.95rem;
  }
  .page-promotions__card-title {
    font-size: 1.2rem;
  }
  .page-promotions__step-title {
    font-size: 1.1rem;
  }
  .page-promotions__faq-question {
    font-size: 0.95rem;
    padding: 12px 15px;
  }
  .page-promotions__faq-toggle {
    font-size: 1.2rem;
  }
  .page-promotions__faq-answer {
    padding: 0 15px 12px 15px;
  }
}