.reels-grid {
  position: relative;
}

.reel-item {
  position: relative;
}

.reel-item video {
  width: 100%;
  display: block;
  border-radius: 8px;
  background: #000;
}

.reel-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 6px 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0));
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}

.reel-item:hover .reel-controls,
.reel-item:focus-within .reel-controls,
.reel-item.show-controls .reel-controls {
  opacity: 1;
  pointer-events: auto;
}

.reel-controls-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reel-btn {
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  line-height: 1;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(4px);
}

.reel-btn:hover {
  background: rgba(255,255,255,.25);
}

.reel-progress {
  position: relative;
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,.25);
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
}

.reel-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #ff6262;
}

.reel-time {
  font-size: 11px;
  color: #fff;
  min-width: 60px;
  text-align: right;
}

.reel-seek-hover {
  position: absolute;
  top: 0;
  height: 100%;
  width: 2px;
  background: rgba(255,255,255,.6);
  pointer-events: none;
  transform: translateX(-1px);
  opacity: 0;
}

.reel-progress:hover .reel-seek-hover {
  opacity: 1;
}

.reel-volume-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
}

.reel-volume {
  appearance: none;
  -webkit-appearance: none;
  width: 70px;
  height: 4px;
  background: rgba(255,255,255,.3);
  border-radius: 2px;
  cursor: pointer;
}

.reel-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  background: #ff6262;
  border-radius: 50%;
  cursor: pointer;
}

.reel-volume::-moz-range-thumb {
  width: 10px;
  height: 10px;
  background: #ff6262;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.reel-play-state-indicator {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 42px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
}

.reel-item.show-indicator .reel-play-state-indicator {
  opacity: .9;
}