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

.page-promotions a {
  color: #FF8C1A;
  text-decoration: none;
}

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

.page-promotions strong {
  color: #FFA53A;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding-top: 10px; /* Small top padding for visual separation */
  margin-bottom: 40px;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-promotions__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Adjust to bring content slightly over image bottom */
  background: rgba(13, 14, 18, 0.85); /* Slightly transparent dark background */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid #A84F0C; /* Border */
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #FFF3E6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

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

.page-promotions__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-promotions__cta-button--bottom {
  margin-top: 40px;
}

.page-promotions__cta-button--final {
  margin-top: 30px;
  font-size: 1.2rem;
  padding: 18px 35px;
}

/* General Section Styling */
.page-promotions__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

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

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

.page-promotions__section-title {
  font-size: 2.5rem;
  color: #FF8C1A; /* Main Color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #FFA53A; /* Auxiliary Color */
  border-radius: 2px;
}

.page-promotions__text-block p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #FFF3E6;
}

.page-promotions__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C;
}

/* Card Grid */
.page-promotions__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__card {
  background-color: #17191F; /* Card BG */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  border: 1px solid #A84F0C;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 140, 26, 0.3);
}

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

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

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

.page-promotions__card-content p {
  font-size: 1rem;
  color: #FFF3E6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  margin-top: 15px;
}

.page-promotions__card-button:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
}

/* Terms Section */
.page-promotions__terms-section {
  background-color: #17191F;
  padding-bottom: 80px;
}

/* How To Claim Section */
.page-promotions__how-to-claim-section {
  background-color: #0D0E12;
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-promotions__steps-list li {
  counter-increment: step-counter;
  margin-bottom: 25px;
  padding-left: 50px;
  position: relative;
  font-size: 1.1rem;
  color: #FFF3E6;
}

.page-promotions__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: #FF8C1A; /* Main Color */
  color: #ffffff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 2px 10px rgba(255, 140, 26, 0.4);
}

.page-promotions__steps-list li strong {
  color: #FFA53A;
  font-size: 1.2rem;
}

/* FAQ Section */
.page-promotions__faq-section {
  background-color: #17191F; /* Card BG */
  padding-bottom: 80px;
}

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

.page-promotions__faq-item {
  background-color: #0D0E12; /* Background */
  border: 1px solid #A84F0C;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-promotions__faq-item[open] {
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.3);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #FFF3E6; /* Text Main */
  cursor: pointer;
  background-color: #17191F; /* Card BG */
  border-bottom: 1px solid #A84F0C;
  list-style: none; /* For details/summary */
}

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

.page-promotions__faq-question:hover {
  background-color: #2a2c33;
}

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

.page-promotions__faq-toggle {
  font-size: 1.8rem;
  color: #FF8C1A; /* Main Color */
  margin-left: 20px;
  line-height: 1;
}

.page-promotions__faq-answer {
  padding: 20px 25px;
  font-size: 1.1rem;
  color: #FFF3E6;
}

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

/* Conclusion Section */
.page-promotions__conclusion-section {
  background-color: #0D0E12;
  padding-bottom: 80px;
}

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

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 0;
    margin-bottom: 20px;
  }
  .page-promotions__hero-image-wrapper {
    max-height: 400px;
  }
  .page-promotions__hero-content {
    margin-top: -60px;
    padding: 25px 15px;
    width: calc(100% - 30px); /* Account for padding */
    max-width: 100%;
    box-sizing: border-box;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-promotions__hero-description {
    font-size: 1rem;
  }
  .page-promotions__cta-button {
    font-size: 1rem;
    padding: 12px 25px;
    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__container {
    padding: 0 15px;
  }
  .page-promotions__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-promotions__text-block p {
    font-size: 1rem;
  }
  .page-promotions__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__card-image {
    height: 200px;
  }
  .page-promotions__card-title {
    font-size: 1.4rem;
  }
  .page-promotions__card-content p {
    font-size: 0.95rem;
  }
  .page-promotions__card-button {
    font-size: 0.95rem;
    padding: 10px 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__steps-list li {
    font-size: 1rem;
    padding-left: 45px;
  }
  .page-promotions__steps-list li::before {
    width: 30px;
    height: 30px;
    font-size: 1.1rem;
  }
  .page-promotions__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-promotions__faq-answer {
    font-size: 0.95rem;
    padding: 15px 20px;
  }

  /* Mobile image and video responsive adaptation */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__text-block,
  .page-promotions__hero-image-wrapper,
  .page-promotions__card-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-promotions__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-promotions__overview-section,
  .page-promotions__featured-promotions,
  .page-promotions__terms-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__faq-section,
  .page-promotions__conclusion-section {
    padding-left: 0;
    padding-right: 0;
  }
  .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;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-promotions__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-content {
    margin-top: -40px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .page-promotions__section-title {
    font-size: 1.5rem;
  }
  .page-promotions__card-title {
    font-size: 1.2rem;
  }
  .page-promotions__steps-list li strong {
    font-size: 1.1rem;
  }
}