.page-promotions {
  --background-color-dark: #08160F;
  --card-bg-color: #11271B;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;

  font-family: 'Arial', sans-serif;
  color: var(--text-main-color);
  background-color: var(--background-color-dark); /* Body background handled by shared.css */
}

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

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--background-color-dark);
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image for text contrast if needed */
}

.page-promotions__hero-content {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content slightly over the image for visual flow */
  background: var(--card-bg-color); /* Use a darker background for content */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
  z-index: 10;
}

.page-promotions__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--gold-color);
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-main-color);
  margin-bottom: 30px;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  background: var(--button-gradient);
  color: var(--text-main-color);
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

/* Section Titles */
.page-promotions__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: bold;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.4);
}

.page-promotions__section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary-color);
  text-align: center;
  margin-bottom: 40px;
}

.page-promotions__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-main-color);
  margin-bottom: 20px;
}

/* Intro Section */
.page-promotions__intro-section {
  padding: 80px 0;
  background-color: var(--background-color-dark);
  border-bottom: 1px solid var(--divider-color);
}

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

.page-promotions__benefit-item {
  background-color: var(--card-bg-color);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-main-color);
  font-size: 1.05rem;
  line-height: 1.6;
  transition: transform 0.3s ease;
}

.page-promotions__benefit-item:hover {
  transform: translateY(-5px);
}

.page-promotions__benefit-item strong {
  color: var(--gold-color);
  font-size: 1.15rem;
  display: block;
  margin-bottom: 10px;
}

/* Promotions Grid Section */
.page-promotions__types-section {
  padding: 80px 0;
  background-color: var(--background-color-dark);
  border-bottom: 1px solid var(--divider-color);
}

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

.page-promotions__promotion-card {
  background-color: var(--card-bg-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.page-promotions__card-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}

.page-promotions__promotion-card:hover .page-promotions__card-image {
  filter: brightness(1);
}

.page-promotions__card-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--gold-color);
  margin: 20px 20px 10px;
  line-height: 1.4;
}

.page-promotions__card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
  color: var(--glow-color);
}

.page-promotions__card-description {
  font-size: 0.95rem;
  color: var(--text-secondary-color);
  line-height: 1.6;
  margin: 0 20px 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  background: var(--button-gradient);
  color: var(--text-main-color);
  font-size: 0.95rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  margin: 0 20px 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

/* How to Claim Section */
.page-promotions__how-to-claim-section {
  padding: 80px 0;
  background-color: var(--background-color-dark);
  border-bottom: 1px solid var(--divider-color);
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-promotions__step-item {
  display: flex;
  align-items: flex-start;
  background-color: var(--card-bg-color);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--gold-color);
  color: var(--background-color-dark);
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 20px;
  flex-shrink: 0;
}

.page-promotions__step-content {
  flex-grow: 1;
}

.page-promotions__step-title {
  font-size: 1.25rem;
  color: var(--gold-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions__step-content p {
  font-size: 1rem;
  color: var(--text-secondary-color);
  line-height: 1.6;
}

/* Terms Highlights Section */
.page-promotions__terms-highlights-section {
  padding: 80px 0;
  background-color: var(--background-color-dark);
  border-bottom: 1px solid var(--divider-color);
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.page-promotions__term-item {
  background-color: var(--card-bg-color);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-secondary-color);
  font-size: 1rem;
  line-height: 1.6;
}

.page-promotions__term-item strong {
  color: var(--gold-color);
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

/* Why Choose Section */
.page-promotions__why-choose-section {
  padding: 80px 0;
  background-color: var(--background-color-dark);
  text-align: center;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 80px 0;
  background-color: var(--background-color-dark);
}

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

.page-promotions__faq-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-promotions__faq-item summary {
  list-style: none; /* Hide default marker */
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--gold-color);
  background-color: var(--card-bg-color);
  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(var(--border-color), 0.2);
}

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

.page-promotions__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow-color);
}

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--text-secondary-color);
  line-height: 1.7;
  border-top: 1px solid var(--divider-color);
  margin-top: -1px; /* Overlap border to avoid double lines */
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    margin-top: -80px;
  }

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

  .page-promotions__terms-list {
    grid-template-columns: 1fr;
  }
}

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

  .page-promotions__hero-content {
    padding: 30px 15px;
    margin-top: -60px;
    max-width: 95%;
  }

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

  .page-promotions__hero-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .page-promotions__cta-button,
  .page-promotions__card-button,
  .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__container,
  .page-promotions__section,
  .page-promotions__card,
  .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;
  }

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

  .page-promotions__section-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    padding-top: 30px;
  }

  .page-promotions__section-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-promotions__intro-section,
  .page-promotions__types-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__terms-highlights-section,
  .page-promotions__why-choose-section,
  .page-promotions__faq-section {
    padding: 50px 0;
  }

  .page-promotions__benefits-list,
  .page-promotions__promotions-grid,
  .page-promotions__steps-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-promotions__step-number {
    margin-right: 0;
    margin-bottom: 15px;
  }

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

  .page-promotions__faq-toggle {
    font-size: 1.5rem;
  }

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