/* ═══════════════════════════════════════════════════════════════
   VIDEO CONTROLS
═══════════════════════════════════════════════════════════════ */
.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.video-container:hover .video-controls {
  opacity: 1;
}

.control-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0.8;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.control-btn:hover {
  opacity: 1;
  color: var(--neon-green);
  transform: scale(1.1);
}

.control-btn span {
  font-size: 0.8rem;
  font-weight: 600;
}

.play-pause-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.play-pause-btn:hover {
  background: var(--neon-green);
  color: #000;
}

.progress-container {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  transition: height 0.2s ease;
}

.progress-container:hover {
  height: 10px;
}

.progress-track {
  width: 100%;
  height: 100%;
  border-radius: 3px;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--neon-green);
  border-radius: 3px;
  pointer-events: none;
}

.progress-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.2s ease;
}

.progress-container:hover .progress-thumb {
  transform: translate(-50%, -50%) scale(1.2);
}

.time-display {
  color: #fff;
  font-size: 0.85rem;
  font-family: monospace;
  opacity: 0.8;
  min-width: 80px;
  text-align: right;
}
