body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #111;
  color: #fff;
  text-align: center;
}

.container {
  padding: 20px;
}

video, canvas {
  border-radius: 16px;
  max-width: 100%;
  height: auto;
}

.filters {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.filters img {
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: grab;
  transition: transform 0.3s;
}

.filters img:active {
  cursor: grabbing;
}

.buttons {
  margin-top: 20px;
}

button {
  background: #ff4081;
  border: none;
  color: white;
  padding: 10px 18px;
  font-size: 16px;
  margin: 5px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #e73370;
}
