
/* Responsive Fluid Layout Breakpoint */
@media (min-width: 868px) {
 .interactive-legend{
    width:370px !important;
    background-color:#1e1e1e!important;
}
.hotspot-description{
    background-color:#1e1e1e!important;
}
}

/* Shared Design Tokens */
:root {
  --brand-black: #000000;
  --brand-white: #FFFFFF;
  --neon-lime: #A8F931; 
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Section Container Layout */
.product-video-section {
  background-color: var(--brand-black);
  padding: 20px 40px 0;
  font-family: var(--font-sans);
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Main Wrapper holding header and video card */
.video-section-container {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 100px; /* Forces the lime line exactly 100px below the video card */
}

/* Bottom Horizontal Lime Line (#A8F931, 1px, 100px below video) */
.video-section-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--neon-lime);
}

/* Header Text Wrapper */
.video-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  position: relative;
  padding-top: 40px;     /* Forces the white line exactly 40px above text elements */
  margin-bottom: 48px;   /* Clean spacing between header text block and the video */
}
.video-header p{
    color: var(--brand-white);
    font-size: 18px;
    line-height: 1.5;
}

/* Top Horizontal White Line (#fff, 1px, 40px above text) */
.video-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--brand-white);
}

.video-eyebrow {
  color: var(--neon-lime);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.video-main-heading {
  color: var(--brand-white);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

/* Video Card Frame */
.video-display-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; 
  border-radius: 24px;   
  overflow: hidden;
  background-color: #1c1c1e; 
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Center Play Trigger Overlay */
.center-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: var(--neon-lime);
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.2s ease;
  z-index: 3;
}

.center-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: #b5ff1a;
}

.play-arrow {
  width: 36px;
  height: 36px;
  color: var(--brand-white);
  margin-left: 6px; 
}

/* Responsive Adaptive Adjustments */
@media (max-width: 768px) {
  .product-video-section {
    padding: 60px 24px;
  }
  
  .video-section-container {
    padding-bottom: 60px; /* Slightly tighter spacing on mobile viewports */
  }

  .video-header {
    padding-top: 30px;
    margin-bottom: 32px;
  }
  
  .video-main-heading {
    font-size: 34px;
  }

  .center-play-btn {
    width: 64px;
    height: 64px;
  }
  
  .play-arrow {
    width: 28px;
    height: 28px;
    margin-left: 4px;
  }
}


