.page-promotions {
  background-color: #0D0E12; /* Custom background color */
  color: #FFF3E6; /* Main text color for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column; /* Default to column for mobile first, then row for desktop */
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, larger bottom */
  text-align: center;
  background-color: #0D0E12;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px; /* Space between image and content */
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 140, 26, 0.4); /* Glow effect */
}

.page-promotions__hero-content {
  max-width: 900px;
  margin-top: 30px; /* Space after image */
}

.page-promotions__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
  color: #FFB04D; /* Glow color for title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-promotions__cta-buttons {
  display: flex;
  flex-direction: column; /* Default column for mobile */\  gap: 15px;
  margin-top: 30px;
  justify-content: center;
  align-items: center;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
  width: 100%; /* Default to full width on mobile */
  text-align: center;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  border: 2px solid transparent;
}

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

.page-promotions__btn-secondary {
  background: #17191F; /* Card BG */
  color: #FF8C1A; /* Primary color */
  border: 2px solid #A84F0C; /* Border color */
}

.page-promotions__btn-secondary:hover {
  background: #2a2d36;
  color: #FFA53A;
  border-color: #FFB04D;
}

/* General Section Styles */
.page-promotions__section {
  padding: 60px 20px;
  background-color: #0D0E12;
}

.page-promotions__dark-section {
  background-color: #17191F; /* Card BG for dark sections */
}

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

.page-promotions__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #FFB04D;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions__text-block {
  font-size: 1.05rem;
  color: #FFF3E6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
}

/* Features Grid */
.page-promotions__features-grid {
  display: grid;
  grid-template-columns: 1fr; /* Default to single column */
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__feature-card {
  background-color: #17191F;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C;
}

.page-promotions__feature-icon {
  width: 100%; /* Ensure image fills card width */
  max-width: 200px; /* Constrain icon size */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block; /* Ensure block for proper centering */
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__feature-title {
  font-size: 1.5rem;
  color: #FFA53A;
  margin-bottom: 15px;
}

.page-promotions__feature-description {
  font-size: 1rem;
  color: #FFF3E6;
}

/* Promo Grid */
.page-promotions__promo-grid {
  display: grid;
  grid-template-columns: 1fr; /* Default to single column */
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__promo-card {
  background-color: #17191F; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions__promo-image {
  width: 100%;
  max-width: 400px; /* Constrain image size within card */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
}

.page-promotions__promo-title {
  font-size: 1.6rem;
  color: #FFB04D;
  margin-bottom: 15px;
}

.page-promotions__promo-description {
  font-size: 1rem;
  color: #FFF3E6;
  margin-bottom: 25px;
  flex-grow: 1; /* Push button to bottom */
}

/* How to Claim Section */
.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions__step-item {
  background-color: #17191F;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid #A84F0C;
}

.page-promotions__step-number {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.page-promotions__step-title {
  font-size: 1.4rem;
  color: #FFA53A;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions__step-description {
  font-size: 1rem;
  color: #FFF3E6;
  margin-bottom: 0;
}

.page-promotions__step-description a {
  color: #FFB04D;
  text-decoration: underline;
}
.page-promotions__step-description a:hover {
  color: #FFA53A;
}

.page-promotions__cta-bottom {
  text-align: center;
  margin-top: 40px;
}

/* Terms & Conditions Section */
.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions__terms-item {
  background-color: #0D0E12; /* Darker background for terms */
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid #A84F0C;
}

.page-promotions__terms-title {
  font-size: 1.3rem;
  color: #FFA53A;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions__terms-description {
  font-size: 0.95rem;
  color: #FFF3E6;
  margin-bottom: 0;
}

.page-promotions__terms-description a {
  color: #FFB04D;
  text-decoration: underline;
}
.page-promotions__terms-description a:hover {
  color: #FFA53A;
}

/* FAQ Section */
.page-promotions__faq-list {
  margin-top: 40px;
}

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

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

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

.page-promotions__faq-item summary:hover {
  background-color: #2a2d36;
}

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

.page-promotions__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #FFA53A;
}

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

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


/* Final CTA Section */
.page-promotions__final-cta-section {
  text-align: center;
  padding-bottom: 80px;
}


/* Responsive Design */
@media (min-width: 768px) {
  .page-promotions__hero-section {
    flex-direction: row; /* Desktop: image on left, content on right */
    text-align: left;
    padding-top: 60px; /* Adjust desktop padding */
  }

  .page-promotions__hero-image-wrapper {
    margin-bottom: 0;
    margin-right: 50px; /* Space between image and text */
  }

  .page-promotions__hero-content {
    margin-top: 0;
    text-align: left;
  }

  .page-promotions__cta-buttons {
    flex-direction: row; /* Desktop: buttons side-by-side */
    justify-content: flex-start;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: auto; /* Auto width on desktop */
  }

  .page-promotions__features-grid,
  .page-promotions__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .page-promotions__step-item {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  /* Mobile specific overrides for images, videos, buttons, containers */
  .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; /* Prevent content overflow */
  }

  .page-promotions__hero-section {
    padding-top: 10px !important; /* Small top padding for mobile */
    flex-direction: column; /* Ensure column layout for mobile */
  }

  .page-promotions__hero-image-wrapper {
    margin-bottom: 20px; /* Adjust spacing */
    margin-right: 0;
  }

  .page-promotions__hero-content {
    margin-top: 20px;
    text-align: center;
  }

  .page-promotions__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically on mobile */
    gap: 10px;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions a[class*="button"],
  .page-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px; /* Add padding to button text */
    padding-right: 15px;
  }

  .page-promotions__faq-item summary {
    font-size: 1rem; /* Adjust FAQ question size for mobile */
    padding: 15px 20px;
  }
  .page-promotions__faq-answer {
    padding: 0 20px 15px;
  }
}