.page-promotions {
  color: #ffffff; /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Body background is handled by shared.css (#0a0a0a) */
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  min-height: 500px; /* Adjusted min-height for content visibility */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  overflow: hidden;
  color: #ffffff;
  background-color: #017439; /* Use brand color as a fallback/overlay */
}

.page-promotions__hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-promotions__hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken video for text readability */
  cursor: pointer;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFF00; /* Register/Login font color for highlight */
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #C30808; /* Register/Login button color */
  color: #FFFF00; /* Register/Login font color */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__cta-button:hover {
  background-color: #e02a2a;
  transform: translateY(-2px);
}

.page-promotions__cta-button--primary {
  background-color: #C30808;
  color: #FFFF00;
}

.page-promotions__cta-button--secondary {
  background-color: transparent;
  color: #017439;
  border: 2px solid #017439;
}

.page-promotions__cta-button--secondary:hover {
  background-color: #017439;
  color: #ffffff;
}

.page-promotions__cta-button--large {
  padding: 20px 40px;
  font-size: 1.2em;
}

.page-promotions__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

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

.page-promotions__section-title {
  font-size: 2.5em;
  color: #FFFF00; /* Highlight for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-promotions__section-title--large {
  font-size: 3em;
}

.page-promotions__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0; /* Light text for dark backgrounds */
  text-align: justify;
}

.page-promotions__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  display: block;
}

.page-promotions__overview-section, .page-promotions__how-to-claim-section, .page-promotions__why-choose-section {
  padding: 60px 0;
  background-color: #0a0a0a; /* Body background color */
  color: #ffffff; /* Light text for dark background */
}

.page-promotions__types-section, .page-promotions__terms-section, .page-promotions__faq-section, .page-promotions__cta-final-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  color: #ffffff;
}

.page-promotions__light-bg {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-promotions__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.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: rgba(255, 255, 255, 0.05); /* Slightly transparent white for cards */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions__card-title {
  font-size: 1.5em;
  color: #017439; /* Brand color for card titles */
  margin-bottom: 15px;
}

.page-promotions__card-text {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-promotions__step-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions__step-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions__step-title {
  font-size: 1.4em;
  color: #017439;
  margin-bottom: 10px;
}

.page-promotions__step-text {
  font-size: 1em;
  color: #e0e0e0;
}

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

.page-promotions__terms-list {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
}

.page-promotions__terms-list li {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #e0e0e0;
  border-left: 4px solid #017439;
}

.page-promotions__list-highlight {
  color: #FFFF00; /* Highlight color */
}

.page-promotions__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

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

.page-promotions__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #017439; /* Brand color for questions */
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFFF00;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #e0e0e0;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show all content */
  padding: 15px 25px;
}

.page-promotions__faq-answer p {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-promotions__advantages-list {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
}

.page-promotions__advantages-list li {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #e0e0e0;
  border-left: 4px solid #FFFF00; /* Highlight with yellow */
}

.page-promotions__cta-final-section {
  text-align: center;
  padding: 80px 0;
  background-color: #017439; /* Strong brand color for final CTA */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 3em;
  }
  .page-promotions__hero-description {
    font-size: 1.2em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__section-title--large {
    font-size: 2.5em;
  }
  .page-promotions__card-title {
    font-size: 1.3em;
  }
  .page-promotions__step-title {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    min-height: 400px;
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
  }
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-promotions__cta-button--large {
    padding: 15px 30px;
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions__section-title--large {
    font-size: 2.2em;
  }
  .page-promotions__text-block, .page-promotions__card-text, .page-promotions__step-text, .page-promotions__terms-list li, .page-promotions__advantages-list li, .page-promotions__faq-answer p {
    font-size: 0.95em;
  }
  .page-promotions__card-grid, .page-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions__faq-answer {
    padding: 0 20px;
  }
  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding: 10px 20px;
  }
  
  /* Mobile responsive image/video/button rules */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions video, .page-promotions__hero-video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__hero-video-wrapper, .page-promotions__container, .page-promotions__card, .page-promotions__step-item, .page-promotions__faq-item, .page-promotions__cta-button, .page-promotions__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* For containers */
  }
  .page-promotions__cta-button, .page-promotions a[class*="button"], .page-promotions a[class*="btn"] {
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__button-group {
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-promotions__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure video section respects header offset */
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__hero-description {
    font-size: 0.9em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__section-title--large {
    font-size: 1.8em;
  }
  .page-promotions__cta-button {
    width: 100%;
    padding: 10px 15px;
  }
  .page-promotions__button-group {
    flex-direction: column;
  }
}