:root {
  --primary-color: #007bff;
  --secondary-color: #ffc107;
  --text-color-dark-bg: #ffffff;
  --text-color-light-bg: #333333;
  --bg-dark: #0d1117;
  --bg-light: #f8f9fa;
  --card-bg-dark-mode: rgba(255, 255, 255, 0.1);
  --card-bg-light-mode: #ffffff;
  --border-color: #e0e0e0;
}

.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark-bg); /* Default text color for dark body background */
  background-color: var(--bg-dark); /* Ensure consistency with body background */
}

.page-promotions__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 120px; /* Desktop: Adjust for fixed header */
  background: linear-gradient(135deg, #0d1117 0%, #1a2a3a 100%);
}

.page-promotions__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__video-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.page-promotions__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  object-fit: cover;
  pointer-events: none;
}

.page-promotions__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-promotions__video-link:hover .page-promotions__video-overlay {
  opacity: 1;
}

.page-promotions__video-click-hint {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  padding: 12px 25px;
  background: rgba(0, 123, 255, 0.85);
  border-radius: 8px;
  white-space: nowrap;
}

.page-promotions__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.page-promotions__play-now-button {
  display: inline-block;
  padding: 18px 50px;
  background: var(--secondary-color, #ffc107);
  color: var(--text-color-light-bg, #333333);
  text-decoration: none;
  border-radius: 10px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-promotions__play-now-button:hover {
  background: #e0a800;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.page-promotions__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__section-title,
.page-promotions__main-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: var(--secondary-color, #ffc107);
  line-height: 1.2;
}

.page-promotions__main-title {
  font-size: 3.8em;
  color: var(--secondary-color, #ffc107);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.page-promotions__section-description,
.page-promotions__title-description {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-color-dark-bg, #ffffff);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__dark-section {
  background: #1a2a3a;
  color: var(--text-color-dark-bg);
  padding: 60px 0;
}

.page-promotions__light-bg {
  background: var(--bg-light);
  color: var(--text-color-light-bg);
  padding: 60px 0;
}

.page-promotions__light-bg .page-promotions__section-title {
  color: var(--primary-color, #007bff);
}

.page-promotions__light-bg .page-promotions__section-description {
  color: var(--text-color-light-bg);
}

.page-promotions__title-section {
  padding: 80px 0;
  background: linear-gradient(45deg, #0d1117 0%, #1a2a3a 100%);
  color: var(--text-color-dark-bg);
}

.page-promotions__title-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.page-promotions__cta-button {
  display: inline-block;
  padding: 16px 35px;
  background: var(--primary-color, #007bff);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.page-promotions__cta-button:hover {
  background: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.page-promotions__cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}

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

.page-promotions__promotion-card {
  background: var(--card-bg-light-mode);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-color-light-bg);
  padding-bottom: 30px;
}

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

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

.page-promotions__card-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
  padding: 0 20px;
}

.page-promotions__card-text {
  font-size: 1em;
  color: var(--text-color-light-bg);
  padding: 0 20px;
  margin-bottom: 25px;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color, #ffc107);
  color: var(--text-color-light-bg, #333333);
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions__card-button:hover {
  background: #e0a800;
  transform: translateY(-2px);
}

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

.page-promotions__benefit-item {
  background: var(--card-bg-dark-mode);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions__benefit-heading {
  font-size: 1.6em;
  color: var(--secondary-color, #ffc107);
  margin-bottom: 15px;
}

.page-promotions__benefit-item p {
  color: var(--text-color-dark-bg);
  font-size: 1em;
}

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

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

.page-promotions__step-item {
  background: var(--card-bg-light-mode);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  color: var(--text-color-light-bg);
}

.page-promotions__step-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  font-size: 2.2em;
  font-weight: bold;
  margin: 0 auto 25px auto;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.page-promotions__step-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions__step-item p {
  color: var(--text-color-light-bg);
}

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

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

.page-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  color: var(--text-color-dark-bg);
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0 0 8px 8px;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

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

.page-promotions__faq-question:active {
  background: rgba(255, 255, 255, 0.2);
}

.page-promotions__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--text-color-dark-bg);
}

.page-promotions__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-color, #ffc107);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
  color: var(--primary-color, #007bff);
  transform: rotate(45deg);
}

.page-promotions__brand-section {
  padding: 60px 0;
  background: var(--bg-light);
  color: var(--text-color-light-bg);
}

.page-promotions__brand-title {
  font-size: 2.8em;
  color: var(--primary-color);
}

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

.page-promotions__brand-item {
  background: var(--card-bg-light-mode);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-promotions__brand-heading {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions__brand-item p {
  color: var(--text-color-light-bg);
}

.page-promotions__brand-image-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-promotions__brand-logo-img {
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions__blog-section {
  padding: 60px 0;
  background: #1a2a3a;
  color: var(--text-color-dark-bg);
}

.page-promotions__blog-title {
  font-size: 2.8em;
  color: var(--secondary-color);
}

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

.page-promotions__blog-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__blog-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions__blog-link {
  display: block;
  text-decoration: none;
  color: var(--text-color-dark-bg);
}

.page-promotions__blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  margin-bottom: 15px;
}

.page-promotions__blog-item-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--secondary-color);
  padding: 0 20px;
}

.page-promotions__blog-item-excerpt {
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.8);
  padding: 0 20px;
  margin-bottom: 15px;
}

.page-promotions__blog-item-date {
  display: block;
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.6);
  padding: 0 20px 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: 3em;
  }
  .page-promotions__section-title {
    font-size: 2.5em;
  }
  .page-promotions__promotions-grid,
  .page-promotions__benefits-list,
  .page-promotions__steps-grid,
  .page-promotions__brand-content,
  .page-promotions__blog-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .page-promotions__video-section {
    padding-top: 100px !important; /* Mobile: Adjust for fixed header */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .page-promotions__video-container,
  .page-promotions__video-link,
  .page-promotions__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  
  .page-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    object-fit: contain;
  }

  .page-promotions__video-cta {
    margin-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .page-promotions__play-now-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 15px 30px !important;
    font-size: 18px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__video-click-hint {
    font-size: 16px !important;
    padding: 10px 20px !important;
  }

  .page-promotions__main-title {
    font-size: 2.2em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__section-description,
  .page-promotions__title-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 14px 25px;
    font-size: 1em;
    white-space: normal;
    word-wrap: break-word;
  }
  .page-promotions__container {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions__dark-section,
  .page-promotions__light-bg,
  .page-promotions__title-section,
  .page-promotions__brand-section,
  .page-promotions__blog-section {
    padding: 40px 0;
  }
  .page-promotions__promotions-grid,
  .page-promotions__benefits-list,
  .page-promotions__steps-grid,
  .page-promotions__brand-content,
  .page-promotions__blog-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__card-image {
    height: 180px;
  }
  .page-promotions__card-title {
    font-size: 1.3em;
  }
  .page-promotions__benefit-heading {
    font-size: 1.4em;
  }
  .page-promotions__step-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 1.8em;
  }
  .page-promotions__faq-question {
    padding: 15px 20px;
  }
  .page-promotions__faq-question h3 {
    font-size: 1.1em;
  }
  .page-promotions__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding: 15px !important;
  }
  .page-promotions__brand-title,
  .page-promotions__blog-title {
    font-size: 2em;
  }
  .page-promotions__blog-image {
    height: 180px;
  }
  .page-promotions__blog-item-title {
    font-size: 1.2em;
  }

  /* General image responsive */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__title-container,
  .page-promotions__brand-container,
  .page-promotions__blog-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: 1.8em;
  }
  .page-promotions__section-title {
    font-size: 1.6em;
  }
  .page-promotions__play-now-button {
    font-size: 16px !important;
    padding: 12px 25px !important;
  }
  .page-promotions__cta-button {
    font-size: 0.9em;
    padding: 12px 20px;
  }
  .page-promotions__faq-question h3 {
    font-size: 1em;
  }
  .page-promotions__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  .page-promotions__brand-title,
  .page-promotions__blog-title {
    font-size: 1.8em;
  }
  .page-promotions__card-image,
  .page-promotions__blog-image {
    height: 150px;
  }
}