:root {
  --pk345-green-main: #11A84E;
  --pk345-green-secondary: #22C768;
  --pk345-bg-card: #11271B;
  --pk345-bg-body: #08160F;
  --pk345-text-main: #F2FFF6;
  --pk345-text-secondary: #A7D9B8;
  --pk345-border: #2E7A4E;
  --pk345-glow: #57E38D;
  --pk345-gold: #F2C14E;
  --pk345-divider: #1E3A2A;
  --pk345-deep-green: #0A4B2C;
  --pk345-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-promotions {
  background-color: var(--pk345-bg-body);
  color: var(--pk345-text-main);
  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: clamp(28px, 3.5vw, 48px);
  color: var(--pk345-text-main);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions__text-block {
  font-size: 18px;
  color: var(--pk345-text-secondary);
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-promotions__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.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: -80px; /* Pull content up slightly over the image for visual flow */
  background: var(--pk345-bg-card);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--pk345-border);
}

.page-promotions__main-title {
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--pk345-gold);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-promotions__description {
  font-size: 20px;
  color: var(--pk345-text-secondary);
  margin-bottom: 30px;
  line-height: 1.5;
}

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

/* Buttons */
.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__btn-small,
.page-promotions__btn-large {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background: var(--pk345-btn-gradient);
  color: var(--pk345-text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-promotions__btn-secondary {
  background: transparent;
  color: var(--pk345-green-secondary);
  border: 2px solid var(--pk345-green-secondary);
}

.page-promotions__btn-secondary:hover {
  background: var(--pk345-green-secondary);
  color: var(--pk345-bg-body);
}

.page-promotions__btn-small {
  padding: 10px 20px;
  font-size: 16px;
}

.page-promotions__btn-large {
  padding: 18px 35px;
  font-size: 20px;
}

/* Why Choose Section */
.page-promotions__why-choose {
  background-color: var(--pk345-bg-body);
  padding-bottom: 0;
}

.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(--pk345-bg-card);
  border: 1px solid var(--pk345-border);
  border-radius: 15px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  height: 100%;
  box-sizing: border-box;
  color: var(--pk345-text-main);
}

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

.page-promotions__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
}

.page-promotions__card-title {
  font-size: 24px;
  color: var(--pk345-gold);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--pk345-text-secondary);
}

.page-promotions__list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-promotions__list li::before {
  content: '✔';
  color: var(--pk345-green-secondary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Highlight Promotions Section */
.page-promotions__highlight-promos {
  background-color: var(--pk345-deep-green);
  padding-top: 40px;
}

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

.page-promotions__promo-card {
  background-color: var(--pk345-bg-card);
  border: 1px solid var(--pk345-border);
  border-radius: 15px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
}

.page-promotions__promo-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

.page-promotions__promo-card-title {
  font-size: 22px;
  color: var(--pk345-text-main);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__promo-card-description {
  font-size: 16px;
  color: var(--pk345-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* How To Claim Section */
.page-promotions__how-to-claim {
  background-color: var(--pk345-bg-body);
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left;
}

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

.page-promotions__step-icon {
  background: var(--pk345-btn-gradient);
  color: var(--pk345-text-main);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  margin-right: 20px;
  flex-shrink: 0;
}

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

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

.page-promotions__step-content p {
  color: var(--pk345-text-secondary);
  margin: 0;
}

.page-promotions__step-content a {
  color: var(--pk345-green-secondary);
  text-decoration: underline;
}

.page-promotions__step-content a:hover {
  color: var(--pk345-gold);
}

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

/* Terms & Conditions Section */
.page-promotions__terms-conditions {
  background-color: var(--pk345-deep-green);
}

.page-promotions__list--bullet {
  list-style: disc;
  text-align: left;
  max-width: 900px;
  margin: 40px auto;
  color: var(--pk345-text-secondary);
  padding-left: 20px;
}

.page-promotions__list--bullet li {
  margin-bottom: 15px;
}

.page-promotions__read-more {
  color: var(--pk345-green-secondary);
  text-decoration: underline;
  font-weight: bold;
  margin-top: 20px;
  display: inline-block;
}

.page-promotions__read-more:hover {
  color: var(--pk345-gold);
}

/* FAQ Section */
.page-promotions__faq-section {
  background-color: var(--pk345-bg-body);
}

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

.page-promotions__faq-item {
  background-color: var(--pk345-bg-card);
  border: 1px solid var(--pk345-border);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  color: var(--pk345-text-main);
  background-color: var(--pk345-bg-card);
  list-style: none; /* For details/summary */
}

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

.page-promotions__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: var(--pk345-green-secondary);
}

.page-promotions__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 16px;
  color: var(--pk345-text-secondary);
}

.page-promotions__faq-item[open] .page-promotions__faq-question {
  background-color: var(--pk345-deep-green);
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  color: var(--pk345-gold);
}

/* Call to Action Section (Bottom) */
.page-promotions__call-to-action {
  background-color: var(--pk345-deep-green);
  padding-bottom: 80px;
}

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

@media (max-width: 768px) {
  .page-promotions__section {
    padding: 40px 0;
  }

  .page-promotions__section-title {
    font-size: 28px;
  }

  .page-promotions__text-block {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-promotions__hero-content {
    margin-top: -30px;
    padding: 30px 15px;
  }

  .page-promotions__main-title {
    font-size: 32px;
  }

  .page-promotions__description {
    font-size: 18px;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions__btn-small,
  .page-promotions__btn-large {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__grid,
  .page-promotions__promo-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__card,
  .page-promotions__promo-card {
    padding: 20px;
    margin: 0 15px;
  }

  .page-promotions__card-image,
  .page-promotions__promo-card-image {
    height: 180px;
  }

  .page-promotions__card-title,
  .page-promotions__promo-card-title {
    font-size: 20px;
  }

  .page-promotions__steps-list {
    gap: 20px;
    margin: 30px 15px 0 15px;
  }

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

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

  .page-promotions__list--bullet {
    margin: 30px 15px;
    padding-left: 30px;
  }

  .page-promotions__faq-list {
    margin: 30px 15px;
  }

  .page-promotions__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }

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

  /* Mobile image, video, container responsiveness */
  .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__hero-section,
  .page-promotions__hero-image-wrapper,
  .page-promotions__hero-content,
  .page-promotions__why-choose,
  .page-promotions__grid,
  .page-promotions__promo-card-grid,
  .page-promotions__promo-card,
  .page-promotions__promo-card-content,
  .page-promotions__how-to-claim,
  .page-promotions__steps-list,
  .page-promotions__step-item,
  .page-promotions__step-content,
  .page-promotions__terms-conditions,
  .page-promotions__list--bullet,
  .page-promotions__faq-section,
  .page-promotions__faq-list,
  .page-promotions__faq-item,
  .page-promotions__call-to-action,
  .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-x: hidden !important; /* Ensure no horizontal scroll */
  }
  
  .page-promotions__hero-section, .page-promotions__video-section {
    padding-top: 10px !important; /* body handles --header-offset, this is for visual spacing */
  }

  .page-promotions__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-promotions__cta-buttons > * {
    flex-basis: 100%;
  }
}