.video-section {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-link {
  display: block;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

.demo-video {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.video-overlay i {
  font-size: 4rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-overlay span {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-link:hover .video-overlay {
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

.video-link:hover .demo-video {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .video-section {
    padding: 2rem 1rem;
  }
  
  .video-overlay i {
    font-size: 3rem;
  }
  
  .video-overlay span {
    font-size: 1rem;
  }
}