.page-promotions {
  background-color: var(--color-background, #0A0A0A);
  color: var(--text-main-color, #FFF6D6);
  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__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: var(--text-main-color, #FFF6D6);
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-main-color, #FFF6D6);
}

.page-promotions__text-block a {
  color: var(--secondary-color, #FFD36B);
  text-decoration: underline;
}

/* HERO Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Aligned with shared.css body padding-top */
  background-color: var(--color-background, #0A0A0A);
  overflow: hidden;
}

.page-promotions__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure it takes full width within max-width */
}

.page-promotions__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

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

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-promotions__hero-content h1 {
  font-size: clamp(2em, 5vw, 3em);
  color: var(--text-main-color, #FFF6D6);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-promotions__hero-description {
  font-size: 1.2em;
  color: var(--text-main-color, #FFF6D6);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-promotions__cta-button:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-promotions__cta-button--large {
  padding: 18px 50px;
  font-size: 20px;
}

/* Introduction Section */
.page-promotions__introduction {
  background-color: var(--background-color, #0A0A0A);
}

.page-promotions__feature-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
}

.page-promotions__feature-item {
  background-color: var(--card-bg-color, #111111);
  padding: 30px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color, #3A2A12);
}

.page-promotions__feature-heading {
  font-size: 1.5em;
  color: var(--primary-color, #F2C14E);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__feature-description {
  font-size: 1em;
  color: var(--text-main-color, #FFF6D6);
}

/* Types of Promotions Section */
.page-promotions__types {
  background-color: var(--background-color, #0A0A0A);
  padding-bottom: 80px;
}

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

.page-promotions__card {
  background-color: var(--card-bg-color, #111111);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  text-align: left;
  border: 1px solid var(--border-color, #3A2A12);
}

.page-promotions__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border-color, #3A2A12);
}

.page-promotions__card-title {
  font-size: 1.4em;
  color: var(--primary-color, #F2C14E);
  margin: 20px 20px 10px 20px;
  font-weight: bold;
}

.page-promotions__card-description {
  font-size: 0.95em;
  color: var(--text-main-color, #FFF6D6);
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 12px 25px;
  margin: 0 20px 20px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.95em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: none;
}

.page-promotions__card-button:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* How to Claim Section */
.page-promotions__how-to-claim {
  background-color: var(--card-bg-color, #111111);
  border-top: 1px solid var(--border-color, #3A2A12);
  border-bottom: 1px solid var(--border-color, #3A2A12);
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
}

.page-promotions__step-item {
  background-color: var(--background-color, #0A0A0A);
  padding: 25px 30px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: left;
  border: 1px solid var(--border-color, #3A2A12);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-heading {
  font-size: 1.4em;
  color: var(--secondary-color, #FFD36B);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__step-description {
  font-size: 1em;
  color: var(--text-main-color, #FFF6D6);
}

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

/* Terms Reminder Section */
.page-promotions__terms-reminder {
  background-color: var(--background-color, #0A0A0A);
}

/* Security and Support Section */
.page-promotions__security-support {
  background-color: var(--card-bg-color, #111111);
  border-top: 1px solid var(--border-color, #3A2A12);
}

.page-promotions__grid--two-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__card--small {
  padding-bottom: 20px;
}

.page-promotions__card--small img {
  
}

/* FAQ Section */
.page-promotions__faq {
  background-color: var(--background-color, #0A0A0A);
  padding-bottom: 80px;
}

.page-promotions__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color, #3A2A12);
  overflow: hidden;
  background: var(--card-bg-color, #111111);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

details.page-promotions__faq-item summary.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

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

details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
  background: rgba(var(--primary-color-rgb), 0.1);
}

.page-promotions__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main-color, #FFF6D6);
}

.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color, #F2C14E);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
  transition: transform 0.3s ease;
}

details.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 20px 20px;
  background: var(--background-color, #0A0A0A);
  border-radius: 0 0 8px 8px;
  color: var(--text-main-color, #FFF6D6);
  text-align: left;
}

.page-promotions__faq-answer p {
  margin-bottom: 10px;
  color: var(--text-main-color, #FFF6D6);
}

.page-promotions__faq-answer a {
  color: var(--secondary-color, #FFD36B);
  text-decoration: underline;
}

/* Final CTA Section */
.page-promotions__final-cta {
  background-color: var(--card-bg-color, #111111);
  border-top: 1px solid var(--border-color, #3A2A12);
  padding-bottom: 60px;
}

.page-promotions__final-cta-content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__final-cta .page-promotions__section-title {
  margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__hero-content h1 {
    font-size: clamp(1.8em, 4vw, 2.5em);
  }
  .page-promotions__hero-description {
    font-size: 1.1em;
  }
  .page-promotions__feature-list {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  .page-promotions__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__hero-image img {
    border-radius: 4px;
  }
  .page-promotions__hero-content h1 {
    font-size: clamp(1.5em, 6vw, 2.2em);
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__cta-button--large {
    padding: 15px 40px;
    font-size: 18px;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions__text-block {
    font-size: 1em;
  }
  .page-promotions__feature-item, .page-promotions__step-item {
    padding: 20px;
  }
  .page-promotions__card {
    margin-left: 15px;
    margin-right: 15px;
  }
  .page-promotions__card img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__grid {
    gap: 20px;
    padding: 0 15px;
  }
  .page-promotions__grid--two-columns {
    grid-template-columns: 1fr;
  }
  .page-promotions__card-title {
    font-size: 1.2em;
  }
  .page-promotions__card-description {
    font-size: 0.9em;
  }
  .page-promotions__faq-list {
    padding: 0 15px;
  }
  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px;
  }
  .page-promotions__faq-qtext {
    font-size: 1em;
  }
  .page-promotions__faq-answer {
    padding: 0 15px 15px;
  }

  /* Image and Container Responsive Rules */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__hero-section {
    padding-top: 10px !important;
  }

  /* Button Responsive Rules */
  .page-promotions__cta-button,
  .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;
    padding-right: 15px;
  }
  .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; 
  }
}