.page-promotions {
  color: #ffffff; /* Body background is dark (#000), so use light text */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #000; /* Ensure main content has dark 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: 10px; /* Desktop: Adjust based on fixed header height */
  background-color: #0A2463;
}

.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(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none; /* Prevent video controls from blocking click event */
}

.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.3);
  border-radius: 8px;
  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: 18px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  background: rgba(0, 123, 255, 0.8);
  border-radius: 5px;
  white-space: nowrap;
}

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

.page-promotions__play-now-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color, #E0B14A); /* Use secondary color for CTA */
  color: #000000; /* Dark text on light button */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
}

.page-promotions__play-now-button:hover {
  background: #cc9a3d; /* Slightly darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-promotions__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions__title-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #000; /* Dark background */
}

.page-promotions__title-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__main-title {
  font-size: 3.2em;
  color: #E0B14A; /* Gold title for prominence */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-promotions__title-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--primary-color, #0A2463);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
}

.page-promotions__cta-button:hover {
  background: #E0B14A;
  color: #000000; /* Dark text on gold hover */
  border-color: #E0B14A;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__cta-button--small {
  padding: 10px 25px;
  font-size: 1em;
  border-radius: 30px;
}

.page-promotions__overview-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #0A2463; /* Dark blue background */
  color: #ffffff;
}

.page-promotions__overview-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__overview-title {
  font-size: 2.5em;
  color: #E0B14A;
  margin-bottom: 20px;
}

.page-promotions__overview-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__overview-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-promotions__overview-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.page-promotions__overview-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions__overview-item-title {
  font-size: 1.5em;
  color: #E0B14A;
  margin-bottom: 15px;
}

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

.page-promotions__categories-section {
  padding: 80px 20px;
  background-color: #000; /* Dark background */
  color: #ffffff;
}

.page-promotions__categories-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__categories-title {
  font-size: 2.5em;
  color: #E0B14A;
  text-align: center;
  margin-bottom: 50px;
}

.page-promotions__category-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions__category-item--alt {
  flex-direction: row-reverse; /* Alternate layout */
}

.page-promotions__category-image-wrapper {
  flex: 1;
  min-width: 300px; /* Ensure image wrapper has a min-width */
}

.page-promotions__category-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-promotions__category-content {
  flex: 2;
}

.page-promotions__category-heading {
  font-size: 2em;
  color: #E0B14A;
  margin-bottom: 20px;
}

.page-promotions__category-text {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 25px;
}

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

.page-promotions__category-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #f5f5f5;
}

.page-promotions__category-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #E0B14A;
  font-weight: bold;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 80px 20px;
  background-color: #0A2463; /* Dark blue background */
  color: #ffffff;
}

.page-promotions__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__faq-title {
  font-size: 2.5em;
  color: #E0B14A;
  text-align: center;
  margin-bottom: 40px;
}

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

.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid 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.1);
  border-color: 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;
  color: #ffffff;
  pointer-events: none;
}

.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #E0B14A;
  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: 28px;
  height: 28px;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
  color: #E0B14A;
  transform: rotate(45deg); /* Change to X or rotate for minus sign */
}

.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, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #e0e0e0;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 2000px !important; /* Ensure content fits */
  padding: 20px 25px !important;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2); /* Slightly darker background for answer */
  border-radius: 0 0 8px 8px;
}

.page-promotions__faq-answer p {
  margin: 0;
  color: #e0e0e0;
}

/* Brand Section */
.page-promotions__brand-section {
  padding: 80px 20px;
  background-color: #000; /* Dark background */
  color: #ffffff;
}

.page-promotions__brand-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-promotions__brand-title {
  font-size: 2.5em;
  color: #E0B14A;
  margin-bottom: 40px;
}

.page-promotions__brand-content p {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__brand-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.page-promotions__brand-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
}

.page-promotions__brand-item h3 {
  font-size: 1.6em;
  color: #E0B14A;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-promotions__brand-item p {
  font-size: 1em;
  color: #e0e0e0;
}

.page-promotions__brand-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* News Section */
.page-promotions__news-section {
  padding: 80px 20px;
  background-color: #0A2463; /* Dark blue background */
  color: #ffffff;
}

.page-promotions__news-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__news-title {
  font-size: 2.5em;
  color: #E0B14A;
  text-align: center;
  margin-bottom: 20px;
}

.page-promotions__news-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__news-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__news-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.page-promotions__news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-promotions__news-content {
  padding: 25px;
}

.page-promotions__news-item-title {
  font-size: 1.4em;
  color: #E0B14A;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-promotions__news-item-excerpt {
  font-size: 0.95em;
  color: #e0e0e0;
  margin-bottom: 15px;
}

.page-promotions__news-item-date {
  font-size: 0.85em;
  color: #b0b0b0;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: 2.8em;
  }

  .page-promotions__overview-title,
  .page-promotions__categories-title,
  .page-promotions__faq-title,
  .page-promotions__brand-title,
  .page-promotions__news-title {
    font-size: 2.2em;
  }

  .page-promotions__category-item {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .page-promotions__category-item--alt {
    flex-direction: column;
  }

  .page-promotions__category-image-wrapper {
    margin-bottom: 30px;
    min-width: unset;
    width: 100%;
  }

  .page-promotions__category-content {
    width: 100%;
  }

  .page-promotions__category-list {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-promotions__video-section {
    padding-top: 10px !important; /* Mobile: Adjust based on mobile fixed header height */
    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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  
  .page-promotions__video-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-promotions__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 4px;
    overflow: hidden !important;
  }
  
  .page-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 4px;
    object-fit: contain; /* Use contain for mobile to ensure full video visibility */
  }
  
  .page-promotions__video-cta {
    margin-top: 20px;
    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: 12px 30px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-promotions__title-section,
  .page-promotions__overview-section,
  .page-promotions__categories-section,
  .page-promotions__faq-section,
  .page-promotions__brand-section,
  .page-promotions__news-section {
    padding: 40px 15px;
  }

  .page-promotions__main-title {
    font-size: 2em;
  }

  .page-promotions__title-description {
    font-size: 1em;
  }

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

  .page-promotions__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__overview-title,
  .page-promotions__categories-title,
  .page-promotions__faq-title,
  .page-promotions__brand-title,
  .page-promotions__news-title {
    font-size: 1.8em;
  }

  .page-promotions__overview-item {
    padding: 20px;
  }

  .page-promotions__category-item {
    padding: 20px;
  }

  .page-promotions__category-heading {
    font-size: 1.5em;
  }

  .page-promotions__faq-question {
    padding: 15px;
  }

  .page-promotions__faq-question h3 {
    font-size: 1em;
  }

  .page-promotions__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }

  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding: 15px !important;
  }

  .page-promotions__brand-item h3 {
    font-size: 1.4em;
  }

  .page-promotions__news-image {
    height: 180px;
  }

  .page-promotions__news-item-title {
    font-size: 1.2em;
  }

  .page-promotions img,
  .page-promotions video,
  .page-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions__overview-item,
  .page-promotions__category-item,
  .page-promotions__brand-item,
  .page-promotions__news-item,
  .page-promotions__overview-container,
  .page-promotions__categories-container,
  .page-promotions__faq-container,
  .page-promotions__brand-container,
  .page-promotions__news-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0px;
    padding-right: 0px;
  }
  .page-promotions__overview-grid, .page-promotions__brand-grid, .page-promotions__news-list {
    padding: 0 15px;
  }
}