:root {
  --primary-color: #0A2463;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-light: #f8f9fa;
  --bg-dark: #0d0d0d; /* Assuming --dark-bg-1 from shared.css is dark */
}

/* Base styles for the page content, assuming a dark body background from shared.css */
.page-promotions-new-user-bonus-details {
  color: var(--text-light); /* Light text for dark body background */
  background-color: var(--bg-dark); /* Ensure consistency if specific sections need it */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-promotions-new-user-bonus-details__section {
  padding: 60px 20px;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus-details__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 🚨 Fixed navigation offset for desktop */
.page-promotions-new-user-bonus-details__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 actual fixed header height */
  background: var(--bg-dark);
}

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

/* Video click link styles */
.page-promotions-new-user-bonus-details__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-new-user-bonus-details__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus-details__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-new-user-bonus-details__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 on parent <a> */
}

/* Video click hint overlay */
.page-promotions-new-user-bonus-details__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;
}