.video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
}

video {
  width: 100%;
  display: block;
  border-radius: 15px;
}

/* Cover gambar */
.video-cover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 15px;
  transition: opacity 0.3s;
  z-index: 2;
  width: 100%;
}

.video-cover .play-icon {
  font-size: 48px;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 20px;
  border-radius: 50%;
}

.controls {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.0);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  transition: 0.3s;
  z-index: 3;
}

.btn {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  color: #1db954;
}

.progress {
  flex: 1;
  height: 5px;
  margin: 0 10px;
  background: #444;
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
}

.progress-filled {
  width: 0%;
  height: 100%;
  background: #1db954;
}

.time {
  font-size: 12px;
  color: #fff;
  min-width: 60px;
  text-align: right;
}