:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000000; /* Black */
  --accent-color: #dc3545; /* Red for emphasis */
  --text-color-light: #ffffff;
  --text-color-dark: #333333;
  --background-dark: #121212; /* From shared.css body */
  --card-background-dark: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
  --border-color-dark: rgba(255, 255, 255, 0.15);
}

.page-promotions {
  color: var(--text-color-light); /* Main text color for dark body background */
  background-color: var(--background-dark); /* Ensure consistency if body background is not fully propagated */
  padding-top: 120px; /* Desktop padding-top to avoid fixed header overlap */
}

/* --- Video Section --- */
.page-promotions__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Specific padding-top for video section */
  background-color: var(--background-dark);
}

.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;
}