.player-controls {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 10px;
  background: #f5f7fb;
  border-radius: 8px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.player-container {
  position: relative;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 80vh; /* Increased height for better visibility */
  background: white;
}

#replay-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

#replay-cursor {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(rgba(255,0,0,0.8), rgba(255,0,0,0.4));
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

#replay-cursor::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  top: 7px;
  left: 7px;
}

.click-indicator {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(67, 97, 238, 0.5);
  z-index: 1001;
  pointer-events: none;
  transition: transform 0.3s, opacity 0.3s;
}

.zoom-controls, .speed-controls {
  display: flex;
  gap: 8px;
  align-items: center;
  background: white;
  padding: 5px 15px;
  border-radius: 30px;
  border: 1px solid #ddd;
}