/* Video Section Styles */
.video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #ffffff;
  margin: 0;
  padding: 0;
  margin-bottom: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container {
  /* Initial size */
  width: 300px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: width, height;
  border-radius: 0;
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.fullscreen-video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateZ(0);
}

/* When video is expanded */
.video-container.expanded {
  border-radius: 0;
}

.video-container.expanded .fullscreen-video {
  border-radius: 0;
  box-shadow: none;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .video-container {
    width: 250px;
    height: 141px;
  }
}

@media (max-width: 768px) {
  .video-section {
    height: 100vh;
    height: 100dvh;
  }
  
  .video-container {
    width: 200px;
    height: 113px;
    border-radius: 0;
  }
  
  .fullscreen-video {
    border-radius: 0;
  }
}
