.video-card {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 5px;
  background: #00000060;
  box-shadow: 0 0 40px rgba(255,255,255,0.05);
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

/* Overlay Title */
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.2);
  pointer-events: none;
}

.video-overlay h1 {
  color: #fff;
  font-size: 2.5rem;
  letter-spacing: 2px;
  text-align: center;
  font-weight: 400;
  mix-blend-mode: lighten;
}

/* Controls */
.controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 15px;
  color: #fff;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.video-card:hover .controls {
  opacity: 1;
}

.control-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
}

.control-btn:hover {
  color: #ccc;
}

/* Volume */
.volume-control {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
}

#volumeSlider {
  width: 70px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .video-overlay h1 {
    font-size: 1.6rem;
  }
  #volumeSlider {
    width: 50px;
  }
}
